Fsdp grad accum monkeypatch (#2064)

This commit is contained in:
Wing Lian
2024-11-15 19:11:04 -05:00
committed by GitHub
parent 0dabde1962
commit d42f202046
4 changed files with 107 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
"""Test module for checking whether the integration of Unsloth with Hugging Face Transformers is working as expected."""
import unittest
from axolotl.monkeypatch.trainer_fsdp_grad_accum import check_training_loop_is_patchable
class TestTrainerFSDPIntegration(unittest.TestCase):
"""Unsloth monkeypatch integration tests."""
def test_train_loop_patchable(self):
# ensures the current version of transformers has loss code that matches our patching code
self.assertTrue(
check_training_loop_is_patchable(),
"HF transformers _inner_training_loop has changed and isn't patchable",
)