We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test_run_squad_no_trainer
1 parent 6a6225b commit d51296dCopy full SHA for d51296d
examples/pytorch/test_accelerate_examples.py
@@ -21,6 +21,7 @@
21
import shutil
22
import sys
23
import tempfile
24
+import unittest
25
from unittest import mock
26
27
import torch
@@ -176,6 +177,7 @@ def test_run_ner_no_trainer(self):
176
177
self.assertTrue(os.path.exists(os.path.join(tmp_dir, "epoch_0")))
178
self.assertTrue(os.path.exists(os.path.join(tmp_dir, "ner_no_trainer")))
179
180
+ @unittest.skip(reason="Fix me @zack")
181
@mock.patch.dict(os.environ, {"WANDB_MODE": "offline"})
182
def test_run_squad_no_trainer(self):
183
tmp_dir = self.get_auto_remove_tmp_dir()
0 commit comments