Pedro Cuenca commited on
Commit
290e443
1 Parent(s): bb3f53e

Update help string for `model_name_or_path`.

Browse files
Files changed (1) hide show
  1. tools/train/train.py +3 -2
tools/train/train.py CHANGED
@@ -58,8 +58,9 @@ class ModelArguments:
58
  model_name_or_path: Optional[str] = field(
59
  default=None,
60
  metadata={
61
- "help": "The model checkpoint for weights initialization."
62
- "Don't set if you want to train a model from scratch."
 
63
  },
64
  )
65
  config_name: Optional[str] = field(
 
58
  model_name_or_path: Optional[str] = field(
59
  default=None,
60
  metadata={
61
+ "help": "The model checkpoint for weights initialization. "
62
+ "Don't set if you want to train a model from scratch. "
63
+ "W&B artifact references are supported in addition to the sources supported by `PreTrainedModel`."
64
  },
65
  )
66
  config_name: Optional[str] = field(