Unverified Commit 3eceaa36 authored by jheitmann's avatar jheitmann Committed by GitHub
Browse files

Fix source_prefix default value (#26654)

parent 975003ea
......@@ -264,7 +264,7 @@ class DataTrainingArguments:
},
)
source_prefix: Optional[str] = field(
default="", metadata={"help": "A prefix to add before every source text (useful for T5 models)."}
default=None, metadata={"help": "A prefix to add before every source text (useful for T5 models)."}
)
forced_bos_token: Optional[str] = field(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment