Skip to content

Commit f9ab2b7

Browse files
fix: change the default model_name_or_path from "facebook/opt-125m" to None
This is especially relevant when using the offline dataset processing script where it's easy to forget to specify the model_name_or_path Signed-off-by: Harikrishnan Balagopal <harikrishmenon@gmail.com>
1 parent 2b56853 commit f9ab2b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tuning/config/configs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
@dataclass
3737
class ModelArguments:
38-
model_name_or_path: Optional[str] = field(default="facebook/opt-125m")
38+
model_name_or_path: Optional[str] = field(default=None)
3939
use_flash_attn: bool = field(
4040
default=True,
4141
metadata={"help": "Use Flash attention v2 from transformers, default is True"},

0 commit comments

Comments
 (0)