fsdp2 w evals fixed upstream

This commit is contained in:
Wing Lian
2025-08-11 16:26:42 -04:00
parent 8efdc59796
commit 9c0fa60220

View File

@@ -3,7 +3,6 @@
import unittest import unittest
from axolotl.monkeypatch.transformers.trainer_loss_calc import ( from axolotl.monkeypatch.transformers.trainer_loss_calc import (
check_evaluation_loop_is_fsdp2_patchable,
check_evaluation_loop_is_patchable, check_evaluation_loop_is_patchable,
check_maybe_log_save_evaluate_is_patchable, check_maybe_log_save_evaluate_is_patchable,
) )
@@ -20,7 +19,6 @@ class TestTrainerLossCalc(unittest.TestCase):
the patched code changes upstream. the patched code changes upstream.
""" """
assert check_evaluation_loop_is_patchable() assert check_evaluation_loop_is_patchable()
assert check_evaluation_loop_is_fsdp2_patchable()
assert check_maybe_log_save_evaluate_is_patchable() assert check_maybe_log_save_evaluate_is_patchable()