RRAEsTorch 0.1.2__tar.gz → 0.1.4__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.2 → rraestorch-0.1.4}/PKG-INFO +1 -1
  2. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/AE_classes/AE_classes.py +0 -1
  3. {rraestorch-0.1.2 → rraestorch-0.1.4}/pyproject.toml +1 -1
  4. {rraestorch-0.1.2 → rraestorch-0.1.4}/.github/workflows/python-app.yml +0 -0
  5. {rraestorch-0.1.2 → rraestorch-0.1.4}/.gitignore +0 -0
  6. {rraestorch-0.1.2 → rraestorch-0.1.4}/.gitignore copy +0 -0
  7. {rraestorch-0.1.2 → rraestorch-0.1.4}/LICENSE +0 -0
  8. {rraestorch-0.1.2 → rraestorch-0.1.4}/LICENSE copy +0 -0
  9. {rraestorch-0.1.2 → rraestorch-0.1.4}/README copy.md +0 -0
  10. {rraestorch-0.1.2 → rraestorch-0.1.4}/README.md +0 -0
  11. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/AE_base/AE_base.py +0 -0
  12. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/AE_base/__init__.py +0 -0
  13. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/AE_classes/__init__.py +0 -0
  14. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/__init__.py +0 -0
  15. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/config.py +0 -0
  16. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/tests/test_AE_classes_CNN.py +0 -0
  17. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/tests/test_AE_classes_MLP.py +0 -0
  18. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/tests/test_fitting_CNN.py +0 -0
  19. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/tests/test_fitting_MLP.py +0 -0
  20. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/tests/test_mains.py +0 -0
  21. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/tests/test_save.py +0 -0
  22. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/tests/test_stable_SVD.py +0 -0
  23. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/tests/test_wrappers.py +0 -0
  24. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/trackers/__init__.py +0 -0
  25. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/trackers/trackers.py +0 -0
  26. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/training_classes/__init__.py +0 -0
  27. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/training_classes/training_classes.py +0 -0
  28. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/utilities/__init__.py +0 -0
  29. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/utilities/utilities.py +0 -0
  30. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/wrappers/__init__.py +0 -0
  31. {rraestorch-0.1.2 → rraestorch-0.1.4}/RRAEsTorch/wrappers/wrappers.py +0 -0
  32. {rraestorch-0.1.2 → rraestorch-0.1.4}/general-MLP.py +0 -0
  33. {rraestorch-0.1.2 → rraestorch-0.1.4}/main-CNN.py +0 -0
  34. {rraestorch-0.1.2 → rraestorch-0.1.4}/main-CNN1D.py +0 -0
  35. {rraestorch-0.1.2 → rraestorch-0.1.4}/main-CNN3D.py +0 -0
  36. {rraestorch-0.1.2 → rraestorch-0.1.4}/main-MLP.py +0 -0
  37. {rraestorch-0.1.2 → rraestorch-0.1.4}/main-adap-CNN.py +0 -0
  38. {rraestorch-0.1.2 → rraestorch-0.1.4}/main-adap-MLP.py +0 -0
  39. {rraestorch-0.1.2 → rraestorch-0.1.4}/main-var-CNN.py +0 -0
  40. {rraestorch-0.1.2 → rraestorch-0.1.4}/main-var-CNN1D.py +0 -0
  41. {rraestorch-0.1.2 → rraestorch-0.1.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: RRAEsTorch
3
- Version: 0.1.2
3
+ Version: 0.1.4
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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "RRAEsTorch"
7
- version = "0.1.2"
7
+ version = "0.1.4"
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
File without changes
File without changes