You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -157,7 +157,9 @@ class SequentialLR : public LRScheduler {
157
157
voidLoadState(const StateDict &state) override;
158
158
159
159
protected:
160
-
floatGetClosedFormLR() constoverride { return base_lr_; } // FIXME: SequentialLR should not have a closed-form LR, but we need to implement this pure virtual function.
160
+
floatGetClosedFormLR() constoverride {
161
+
return base_lr_;
162
+
} // FIXME: SequentialLR should not have a closed-form LR, but we need to implement this pure virtual function.
161
163
voidUndoChildInitialSteps();
162
164
163
165
private:
@@ -178,7 +180,9 @@ class ChainedScheduler : public LRScheduler {
178
180
voidLoadState(const StateDict &state) override;
179
181
180
182
protected:
181
-
floatGetClosedFormLR() constoverride { return base_lr_; } // FIXME: ChainedScheduler should not have a closed-form LR, but we need to implement this pure virtual function.
183
+
floatGetClosedFormLR() constoverride {
184
+
return base_lr_;
185
+
} // FIXME: ChainedScheduler should not have a closed-form LR, but we need to implement this pure virtual function.
0 commit comments