Enable model snapshot downloads to be saved in a specified local directory.

This commit is contained in:
andreramosfdc
2024-10-30 18:08:17 -03:00
committed by andre_ramos
parent e3d45d6568
commit c1e2094a10
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -130,6 +130,7 @@ class TimesFmCheckpoint:
huggingface_repo_id: str | None = None
type: Any = None
step: int | None = None
local_dir: str | None = None
class TimesFmBase:
+3 -2
View File
@@ -55,8 +55,9 @@ class TimesFmTorch(timesfm_base.TimesFmBase):
checkpoint_path = checkpoint.path
repo_id = checkpoint.huggingface_repo_id
if checkpoint_path is None:
checkpoint_path = path.join(snapshot_download(repo_id),
"torch_model.ckpt")
checkpoint_path = path.join(
snapshot_download(repo_id, local_dir=checkpoint.local_dir),
"torch_model.ckpt")
self._model = ppd.PatchedTimeSeriesDecoder(self._model_config)
loaded_checkpoint = torch.load(checkpoint_path, weights_only=True)
logging.info("Loading checkpoint from %s", checkpoint_path)