diff --git a/services/finetuning/Makefile b/services/finetuning/Makefile index 6c15f0c9..e93ebe6f 100644 --- a/services/finetuning/Makefile +++ b/services/finetuning/Makefile @@ -10,13 +10,14 @@ boilerplate: cat $$f>>tsfmfinetuning/$$(basename $$f); \ echo $$(basename $$f) >> tsfmfinetuning/.gitignore; \ done - + image: $(CONTAINER_BUILDER) build -t tsfmfinetuning -f Dockerfile . clone_models: git lfs install || true git clone https://huggingface.co/ibm-research/test-tsfm mytest-tsfm || true + cd mytest-tsfm && git checkout fc98672d6d1f58305ce50038b63a6936c646f581 && cd .. || true fetchdata: diff --git a/services/inference/Makefile b/services/inference/Makefile index e2ea5793..5b48c65a 100644 --- a/services/inference/Makefile +++ b/services/inference/Makefile @@ -65,6 +65,7 @@ install_dev: boilerplate clone_models: git lfs install || true git clone https://huggingface.co/ibm-research/test-tsfm mytest-tsfm || true + cd mytest-tsfm && git checkout fc98672d6d1f58305ce50038b63a6936c646f581 && cd .. || true delete_models: rm -rf mytest-tsfm || true