Spaces:
Running
Running
feat: don't log model by default
Browse files
seq2seq/run_seq2seq_flax.py
CHANGED
|
@@ -226,7 +226,7 @@ class DataTrainingArguments:
|
|
| 226 |
},
|
| 227 |
)
|
| 228 |
log_model: bool = field(
|
| 229 |
-
default=
|
| 230 |
)
|
| 231 |
|
| 232 |
def __post_init__(self):
|
|
|
|
| 226 |
},
|
| 227 |
)
|
| 228 |
log_model: bool = field(
|
| 229 |
+
default=False, metadata={"help": "Overwrite the cached training and evaluation sets"}
|
| 230 |
)
|
| 231 |
|
| 232 |
def __post_init__(self):
|