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.
- {rraestorch-0.1.3 → rraestorch-0.1.5}/PKG-INFO +1 -1
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/AE_classes/AE_classes.py +0 -1
- {rraestorch-0.1.3 → rraestorch-0.1.5}/main-CNN.py +1 -1
- {rraestorch-0.1.3 → rraestorch-0.1.5}/main-MLP.py +1 -1
- {rraestorch-0.1.3 → rraestorch-0.1.5}/pyproject.toml +1 -1
- {rraestorch-0.1.3 → rraestorch-0.1.5}/.github/workflows/python-app.yml +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/.gitignore +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/.gitignore copy +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/LICENSE +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/LICENSE copy +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/README copy.md +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/README.md +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/AE_base/AE_base.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/AE_base/__init__.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/AE_classes/__init__.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/__init__.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/config.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_AE_classes_CNN.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_AE_classes_MLP.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_fitting_CNN.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_fitting_MLP.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_mains.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_save.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_stable_SVD.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/tests/test_wrappers.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/trackers/__init__.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/trackers/trackers.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/training_classes/__init__.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/training_classes/training_classes.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/utilities/__init__.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/utilities/utilities.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/wrappers/__init__.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/RRAEsTorch/wrappers/wrappers.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/general-MLP.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/main-CNN1D.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/main-CNN3D.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/main-adap-CNN.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/main-adap-MLP.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/main-var-CNN.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/main-var-CNN1D.py +0 -0
- {rraestorch-0.1.3 → rraestorch-0.1.5}/setup.cfg +0 -0
|
@@ -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": [
|
|
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": [
|
|
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,
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|