RRAEsTorch 0.1.3__tar.gz → 0.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. {rraestorch-0.1.3 → rraestorch-0.1.5}/PKG-INFO +1 -1
  2. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/AE_classes/AE_classes.py +0 -1
  3. {rraestorch-0.1.3 → rraestorch-0.1.5}/main-CNN.py +1 -1
  4. {rraestorch-0.1.3 → rraestorch-0.1.5}/main-MLP.py +1 -1
  5. {rraestorch-0.1.3 → rraestorch-0.1.5}/pyproject.toml +1 -1
  6. {rraestorch-0.1.3 → rraestorch-0.1.5}/.github/workflows/python-app.yml +0 -0
  7. {rraestorch-0.1.3 → rraestorch-0.1.5}/.gitignore +0 -0
  8. {rraestorch-0.1.3 → rraestorch-0.1.5}/.gitignore copy +0 -0
  9. {rraestorch-0.1.3 → rraestorch-0.1.5}/LICENSE +0 -0
  10. {rraestorch-0.1.3 → rraestorch-0.1.5}/LICENSE copy +0 -0
  11. {rraestorch-0.1.3 → rraestorch-0.1.5}/README copy.md +0 -0
  12. {rraestorch-0.1.3 → rraestorch-0.1.5}/README.md +0 -0
  13. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/AE_base/AE_base.py +0 -0
  14. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/AE_base/__init__.py +0 -0
  15. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/AE_classes/__init__.py +0 -0
  16. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/__init__.py +0 -0
  17. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/config.py +0 -0
  18. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_AE_classes_CNN.py +0 -0
  19. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_AE_classes_MLP.py +0 -0
  20. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_fitting_CNN.py +0 -0
  21. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_fitting_MLP.py +0 -0
  22. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_mains.py +0 -0
  23. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_save.py +0 -0
  24. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_stable_SVD.py +0 -0
  25. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_wrappers.py +0 -0
  26. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/trackers/__init__.py +0 -0
  27. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/trackers/trackers.py +0 -0
  28. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/training_classes/__init__.py +0 -0
  29. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/training_classes/training_classes.py +0 -0
  30. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/utilities/__init__.py +0 -0
  31. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/utilities/utilities.py +0 -0
  32. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/wrappers/__init__.py +0 -0
  33. {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/wrappers/wrappers.py +0 -0
  34. {rraestorch-0.1.3 → rraestorch-0.1.5}/general-MLP.py +0 -0
  35. {rraestorch-0.1.3 → rraestorch-0.1.5}/main-CNN1D.py +0 -0
  36. {rraestorch-0.1.3 → rraestorch-0.1.5}/main-CNN3D.py +0 -0
  37. {rraestorch-0.1.3 → rraestorch-0.1.5}/main-adap-CNN.py +0 -0
  38. {rraestorch-0.1.3 → rraestorch-0.1.5}/main-adap-MLP.py +0 -0
  39. {rraestorch-0.1.3 → rraestorch-0.1.5}/main-var-CNN.py +0 -0
  40. {rraestorch-0.1.3 → rraestorch-0.1.5}/main-var-CNN1D.py +0 -0
  41. {rraestorch-0.1.3 → rraestorch-0.1.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: RRAEsTorch
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: A repo for RRAEs in PyTorch.
5
5
  Author-email: Jad Mounayer <jad.mounayer@outlook.com>
6
6
  License: MIT
@@ -7,7 +7,6 @@ from RRAEsTorch.utilities import (
7
7
  stable_SVD,
8
8
  )
9
9
  from RRAEsTorch.wrappers import vmap_wrap
10
- import jax.random as jrandom
11
10
  import warnings
12
11
  from torch.nn import Linear
13
12
  from RRAEsTorch.AE_base import get_autoencoder_base
@@ -69,7 +69,7 @@ if __name__ == "__main__":
69
69
  # find the basis), and fine-tuning kw arguments (second stage of training with the
70
70
  # basis found in the first stage).
71
71
  training_kwargs = {
72
- "step_st": [2000,], # Increase those to train well
72
+ "step_st": [2,], # Increase those to train well
73
73
  "batch_size_st": [20, 64],
74
74
  "lr_st": [1e-3, 1e-4, 1e-5, 1e-6, 1e-7, 1e-8],
75
75
  "print_every": 1,
@@ -62,7 +62,7 @@ if __name__ == "__main__":
62
62
  # find the basis), and fine-tuning kw arguments (second stage of training with the
63
63
  # basis found in the first stage).
64
64
  training_kwargs = {
65
- "step_st": [20000], # Increase this to train well (e.g. 2000)
65
+ "step_st": [2], # Increase this to train well (e.g. 2000)
66
66
  "batch_size_st": [64, 64, 64, 64, 64],
67
67
  "lr_st": [1e-3, 1e-4, 1e-5, 1e-6, 1e-7, 1e-8],
68
68
  "print_every": 1,
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "RRAEsTorch"
7
- version = "0.1.3"
7
+ version = "0.1.5"
8
8
  description= " A repo for RRAEs in PyTorch."
9
9
  readme="README.md"
10
10
  requires-python= ">=3.10"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes