Commit
·
e37911b
1
Parent(s):
e34329b
Gemma3 test
Browse files- .gitignore +2 -1
- start.sh +2 -2
.gitignore
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
/myenv
|
2 |
-
/__pycache__
|
|
|
|
1 |
/myenv
|
2 |
+
/__pycache__
|
3 |
+
explore.ipynb
|
start.sh
CHANGED
@@ -9,8 +9,8 @@ export CUDA_VISIBLE_DEVICES=0
|
|
9 |
ollama serve &
|
10 |
|
11 |
# Pull the model if not already present
|
12 |
-
if ! ollama list | grep -q "
|
13 |
-
ollama pull
|
14 |
fi
|
15 |
|
16 |
# Wait for Ollama to start up
|
|
|
9 |
ollama serve &
|
10 |
|
11 |
# Pull the model if not already present
|
12 |
+
if ! ollama list | grep -q "gemma3:12b"; then
|
13 |
+
ollama pull gemma3:12b
|
14 |
fi
|
15 |
|
16 |
# Wait for Ollama to start up
|