Skip to content

Commit

Permalink
update repo url
Browse files Browse the repository at this point in the history
  • Loading branch information
wgifford committed Aug 30, 2024
1 parent 4a7439f commit 5bb0000
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ The current Python versions supported are 3.9, 3.10, 3.11.
## Initial Setup
First clone the repository:
```bash
git clone git@github.com:ibm-granite/granite-tsfm.git
cd tsfm
git clone "https://github.com/ibm-granite/granite-tsfm.git"
cd granite-tsfm
```

## 📕 Notebooks Installation
Expand Down
2 changes: 1 addition & 1 deletion notebooks/hfdemo/tinytimemixer/ttm_pretrain_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# the `etth1` dataset. For pre-training TTM on a much large set of datasets, please
# have a look at our paper: https://arxiv.org/pdf/2401.03955.pdf
# If you want to directly utilize the pre-trained models. Please use them from the
# Hugging Face Hub: https://huggingface.co/ibm/TTM
# Hugging Face Hub: https://huggingface.co/ibm-granite/granite-timeseries-ttm-v1
# Have a look at the fine-tune scripts for example usecases of the pre-trained
# TTM models.

Expand Down
6 changes: 3 additions & 3 deletions notebooks/tutorial/install_tsfm.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"outputs": [],
"source": [
"# Install ibm/tsfm\n",
"! pip install \"tsfm_public[notebooks] @ git+ssh://git@github.com/ibm-granite/granite-tsfm.git\""
"! pip install \"tsfm_public[notebooks] @ git+https://github.com/ibm-granite/granite-tsfm.git@v0.2.8\""
]
},
{
Expand All @@ -29,7 +29,7 @@
"from tsfm_public.models.tinytimemixer import TinyTimeMixerForPrediction\n",
"\n",
"\n",
"model_512 = TinyTimeMixerForPrediction.from_pretrained(\"ibm/TTM\", revision=\"main\")\n",
"model_512 = TinyTimeMixerForPrediction.from_pretrained(\"ibm-granite/granite-timeseries-ttm-v1\", revision=\"main\")\n",
"model_512.config.context_length"
]
},
Expand All @@ -40,7 +40,7 @@
"outputs": [],
"source": [
"# Check for another tsfm model\n",
"model_1024 = TinyTimeMixerForPrediction.from_pretrained(\"ibm/TTM\", revision=\"1024_96_v1\")\n",
"model_1024 = TinyTimeMixerForPrediction.from_pretrained(\"ibm-granite/granite-timeseries-ttm-v1\", revision=\"1024_96_v1\")\n",
"model_1024.config.num_patches"
]
}
Expand Down
2 changes: 1 addition & 1 deletion notebooks/tutorial/ttm_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"outputs": [],
"source": [
"# Install the tsfm library\n",
"! pip install \"tsfm_public[notebooks] @ git+ssh://git@github.com/ibm-granite/granite-tsfm.git\""
"! pip install \"tsfm_public[notebooks] @ git+https://github.com/ibm-granite/granite-tsfm.git@v0.2.8\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion notebooks/tutorial/ttm_tutorial_with_ans.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"outputs": [],
"source": [
"# Install the tsfm library\n",
"# ! pip install \"tsfm_public[notebooks] @ git+ssh://git@github.com/ibm-granite/granite-tsfm.git\""
"! pip install \"tsfm_public[notebooks] @ git+https://github.com/ibm-granite/granite-tsfm.git@v0.2.8\""
]
},
{
Expand Down

0 comments on commit 5bb0000

Please sign in to comment.