Skip to content

Commit

Permalink
Removes overwrites for output_dir (#10521)
Browse files Browse the repository at this point in the history
* removed overwrites

* remove default value for output_dir

* adjusted typing
  • Loading branch information
philschmid committed Mar 4, 2021
1 parent a5bd40b commit 805c520
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
5 changes: 0 additions & 5 deletions src/transformers/trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1507,11 +1507,6 @@ def save_model(self, output_dir: Optional[str] = None):
elif self.is_world_process_zero():
self._save(output_dir)

# If on sagemaker and we are saving the main model (not a checkpoint so output_dir=None), save a copy to
# SM_MODEL_DIR for easy deployment.
if output_dir is None and os.getenv("SM_MODEL_DIR") is not None:
self.save_model(output_dir=os.getenv("SM_MODEL_DIR"))

def _save_tpu(self, output_dir: Optional[str] = None):
output_dir = output_dir if output_dir is not None else self.args.output_dir
logger.info("Saving model checkpoint to %s", output_dir)
Expand Down
15 changes: 1 addition & 14 deletions src/transformers/training_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,7 @@ class TrainingArguments:
"""

output_dir: Optional[str] = field(
default=None,
output_dir: str = field(
metadata={"help": "The output directory where the model predictions and checkpoints will be written."},
)
overwrite_output_dir: bool = field(
Expand Down Expand Up @@ -508,18 +507,6 @@ class TrainingArguments:
_n_gpu: int = field(init=False, repr=False, default=-1)

def __post_init__(self):
if self.output_dir is None and os.getenv("SM_OUTPUT_DATA_DIR") is None:
raise ValueError(
"`output_dir` is only optional if it can get inferred from the environment. Please set a value for "
"`output_dir`."
)
elif os.getenv("SM_OUTPUT_DATA_DIR") is not None:
if self.output_dir is not None:
logger.warn(
"`output_dir` is overwritten by the env variable 'SM_OUTPUT_DATA_DIR' "
f"({os.getenv('SM_OUTPUT_DATA_DIR')})."
)
self.output_dir = os.getenv("SM_OUTPUT_DATA_DIR")
if self.disable_tqdm is None:
self.disable_tqdm = logger.getEffectiveLevel() > logging.WARN

Expand Down

0 comments on commit 805c520

Please sign in to comment.