gradboard 2.4.0__tar.gz → 2.5.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.
Potentially problematic release.
This version of gradboard might be problematic. Click here for more details.
- {gradboard-2.4.0 → gradboard-2.5.0}/PKG-INFO +1 -1
- {gradboard-2.4.0 → gradboard-2.5.0}/gradboard/scheduler.py +2 -4
- {gradboard-2.4.0 → gradboard-2.5.0}/pyproject.toml +1 -1
- {gradboard-2.4.0 → gradboard-2.5.0}/LICENSE +0 -0
- {gradboard-2.4.0 → gradboard-2.5.0}/README.md +0 -0
- {gradboard-2.4.0 → gradboard-2.5.0}/gradboard/__init__.py +0 -0
- {gradboard-2.4.0 → gradboard-2.5.0}/gradboard/cycles.py +0 -0
- {gradboard-2.4.0 → gradboard-2.5.0}/gradboard/optimiser.py +0 -0
|
@@ -165,13 +165,11 @@ class PASS:
|
|
|
165
165
|
self.max_lr = None
|
|
166
166
|
self.cool_point = None
|
|
167
167
|
for p in sorted(points_left_of_min, key=lambda x: x[0]):
|
|
168
|
-
if (self.
|
|
169
|
-
self.cool_point = p[0]
|
|
170
|
-
elif (self.max_lr is None) and (p[1] < minimum[1] + 0.33 * difference):
|
|
168
|
+
if (self.max_lr is None) and (p[1] < minimum[1] + 0.2 * difference):
|
|
171
169
|
self.max_lr = p[0]
|
|
172
170
|
else:
|
|
173
171
|
continue
|
|
174
|
-
self.cool_point =
|
|
172
|
+
self.cool_point = self.max_lr / 60
|
|
175
173
|
print("High LR", self.max_lr)
|
|
176
174
|
print("Cool point", self.cool_point)
|
|
177
175
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|