Skip to content

Commit

Permalink
Remove model_load_path from experiment (#3707)
Browse files Browse the repository at this point in the history
  • Loading branch information
Infernaught authored Oct 9, 2023
1 parent f84ee5c commit 9a95a78
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ludwig/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,6 @@ def experiment(
data_format: Optional[str] = None,
experiment_name: str = "experiment",
model_name: str = "run",
model_load_path: Optional[str] = None,
model_resume_path: Optional[str] = None,
eval_split: str = TEST,
skip_save_training_description: bool = False,
Expand Down Expand Up @@ -1264,9 +1263,6 @@ def experiment(
the experiment.
:param model_name: (str, default: `'run'`) name of the model that is
being used.
:param model_load_path: (str, default: `None`) if this is specified the
loaded model will be used as initialization
(useful for transfer learning).
:param model_resume_path: (str, default: `None`) resumes training of
the model from the path specified. The config is restored.
In addition to config, training statistics and loss for
Expand Down Expand Up @@ -1347,7 +1343,6 @@ def experiment(
data_format=data_format,
experiment_name=experiment_name,
model_name=model_name,
model_load_path=model_load_path,
model_resume_path=model_resume_path,
skip_save_training_description=skip_save_training_description,
skip_save_training_statistics=skip_save_training_statistics,
Expand Down

0 comments on commit 9a95a78

Please sign in to comment.