From f63e5db99665a7ff5ea7f46671a122d05184ad12 Mon Sep 17 00:00:00 2001 From: Geens Date: Thu, 1 May 2025 17:28:59 +0200 Subject: [PATCH] Move models directory --- .gitignore | 2 +- scripts/local.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6b80573..4b4227e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,5 @@ __pycache__/ collect.txt data/ -model/ +models/ unsloth_compiled_cache/ \ No newline at end of file diff --git a/scripts/local.sh b/scripts/local.sh index 9efdc3b..b29c419 100755 --- a/scripts/local.sh +++ b/scripts/local.sh @@ -28,7 +28,7 @@ docker run \ --gpus=all \ -p 8080:8080 \ --env-file .env \ - -v /$(pwd)/model/:/root/models/current/ \ + -v /$(pwd)/models/:/root/models/ \ -v /$(pwd)/iterations/:/root/data/iterations/ \ -v /$(pwd)/tasks/:/root/data/tasks/ \ -v /$(pwd)/user/:/root/data/user/ \