gradboard 0.1.20__tar.gz → 0.1.21__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.
Potentially problematic release.
This version of gradboard might be problematic. Click here for more details.
- {gradboard-0.1.20 → gradboard-0.1.21}/PKG-INFO +1 -1
- {gradboard-0.1.20 → gradboard-0.1.21}/gradboard/scheduler.py +2 -2
- {gradboard-0.1.20 → gradboard-0.1.21}/pyproject.toml +1 -1
- {gradboard-0.1.20 → gradboard-0.1.21}/LICENSE +0 -0
- {gradboard-0.1.20 → gradboard-0.1.21}/README.md +0 -0
- {gradboard-0.1.20 → gradboard-0.1.21}/gradboard/__init__.py +0 -0
- {gradboard-0.1.20 → gradboard-0.1.21}/gradboard/cycles.py +0 -0
- {gradboard-0.1.20 → gradboard-0.1.21}/gradboard/optimiser.py +0 -0
|
@@ -168,11 +168,11 @@ class PASS:
|
|
|
168
168
|
max_lr_loss = min_loss + 0.25 * loss_difference
|
|
169
169
|
for r in range_test_results:
|
|
170
170
|
if r[1] < cool_point_loss:
|
|
171
|
-
self.cool_point = r[0]
|
|
171
|
+
self.cool_point = r[0] * sc.golden
|
|
172
172
|
break
|
|
173
173
|
for r in range_test_results:
|
|
174
174
|
if r[1] <= max_lr_loss:
|
|
175
|
-
self.max_lr = r[0]
|
|
175
|
+
self.max_lr = r[0] / sc.golden
|
|
176
176
|
break
|
|
177
177
|
print("High LR", self.max_lr)
|
|
178
178
|
print("Cool point", self.cool_point)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|