We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552fe2d commit 3ddf51cCopy full SHA for 3ddf51c
tests/cli/launcher_test.py
@@ -30,6 +30,8 @@
30
31
class TestLauncherMain(unittest.TestCase):
32
def setUp(self):
33
+ if multiprocessing.get_start_method(allow_none=True) != "spawn":
34
+ multiprocessing.set_start_method("spawn", force=True)
35
self._orig_argv = sys.argv.copy()
36
self.config = get_template_config()
37
self.config.checkpoint_root_dir = get_checkpoint_path()
trinity/common/config.py
@@ -16,7 +16,6 @@
16
LOG_DIR_ENV_VAR,
17
LOG_LEVEL_ENV_VAR,
18
LOG_NODE_IP_ENV_VAR,
19
- MAX_MODEL_LEN,
20
PLUGIN_DIRS_ENV_VAR,
21
TRAINER_NAME,
22
PromptType,
0 commit comments