Commit cf3c9198 authored by Sylvain Gugger's avatar Sylvain Gugger
Browse files

Fix default to logging_dir lost in merge conflict

parent 07ae6103
......@@ -434,7 +434,7 @@ class TrainingArguments:
"help": "When doing a multinode distributed training, whether to log once per node or just once on the main node."
},
)
logging_dir: Optional[str] = field(default_factory=default_logdir, metadata={"help": "Tensorboard log dir."})
logging_dir: Optional[str] = field(default=None, metadata={"help": "Tensorboard log dir."})
logging_strategy: IntervalStrategy = field(
default="steps",
metadata={"help": "The logging strategy to use."},
......
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