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 566a113 commit 419cbb4Copy full SHA for 419cbb4
swift/ui/llm_train/llm_train.py
@@ -360,8 +360,10 @@ def train_studio(cls, *args):
360
lines.append(line)
361
yield ['\n'.join(lines)] + Runtime.plot(run_command) + [run_command]
362
else:
363
- yield ['Current is dryrun mode, you can only view the training cmd, please '
364
- 'duplicate this space to do training.'] + [None] * len(Runtime.sft_plot) + [run_command]
+ yield [
+ 'Current is dryrun mode so you can only view the training cmd, please duplicate this space to '
365
+ 'do training or use with inference.'
366
+ ] + [None] * len(Runtime.sft_plot) + [run_command]
367
368
@classmethod
369
def train_local(cls, *args):
0 commit comments