Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
bugfix (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsosio authored Apr 19, 2024
1 parent d563af2 commit 1432afd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions prem_utils/connectors/anyscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ def create_job(
validation_dataset: list[Datapoint] | None = None,
num_epochs: int = 3,
) -> str:
if "anyscale" in model:
model = model.replace("anyscale/", "", 1)

training_file_id = self._upload_data(training_dataset, size=20)

validation_file_id = None
Expand Down

0 comments on commit 1432afd

Please sign in to comment.