Validation always happens on first step (#1300)
Browse files
src/axolotl/utils/callbacks.py
CHANGED
|
@@ -62,7 +62,6 @@ class EvalFirstStepCallback(
|
|
| 62 |
):
|
| 63 |
if (
|
| 64 |
args.evaluation_strategy == IntervalStrategy.STEPS
|
| 65 |
-
and args.eval_steps < 1.0
|
| 66 |
and state.global_step == 1
|
| 67 |
):
|
| 68 |
control.should_evaluate = True
|
|
|
|
| 62 |
):
|
| 63 |
if (
|
| 64 |
args.evaluation_strategy == IntervalStrategy.STEPS
|
|
|
|
| 65 |
and state.global_step == 1
|
| 66 |
):
|
| 67 |
control.should_evaluate = True
|