gradboard 1.0.2__tar.gz → 2.0.0__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.
- {gradboard-1.0.2 → gradboard-2.0.0}/PKG-INFO +1 -1
- {gradboard-1.0.2 → gradboard-2.0.0}/gradboard/scheduler.py +2 -4
- {gradboard-1.0.2 → gradboard-2.0.0}/pyproject.toml +1 -1
- {gradboard-1.0.2 → gradboard-2.0.0}/LICENSE +0 -0
- {gradboard-1.0.2 → gradboard-2.0.0}/README.md +0 -0
- {gradboard-1.0.2 → gradboard-2.0.0}/gradboard/__init__.py +0 -0
- {gradboard-1.0.2 → gradboard-2.0.0}/gradboard/cycles.py +0 -0
- {gradboard-1.0.2 → gradboard-2.0.0}/gradboard/optimiser.py +0 -0
|
@@ -159,10 +159,8 @@ class PASS:
|
|
|
159
159
|
"""
|
|
160
160
|
range_test_results = self._smoothed_range_test(self.range_test_results)
|
|
161
161
|
minimum = min(range_test_results, key=lambda x: x[1])
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
self.max_lr = r[0] / 2
|
|
165
|
-
self.cool_point = self.max_lr * 0.1
|
|
162
|
+
self.max_lr = minimum[0] / 2
|
|
163
|
+
self.cool_point = self.max_lr * 0.1
|
|
166
164
|
print("High LR", self.max_lr)
|
|
167
165
|
print("Cool point", self.cool_point)
|
|
168
166
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|