Monike123 commited on
Commit
9f4923f
·
verified ·
1 Parent(s): c22a7cc

Add Modelfile for direct Ollama usage

Browse files
Files changed (1) hide show
  1. Modelfile +20 -0
Modelfile ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM https://huggingface.co/Monike123/LLaMAbyte-DS_v8/resolve/main/gguf/LLaMAbyte-DS_v8_Q4_K_M.gguf
2
+
3
+ # Stop tokens — model stops at these strings
4
+ PARAMETER stop "</s>"
5
+ PARAMETER stop "-------"
6
+ PARAMETER stop "[INST]"
7
+
8
+ PARAMETER temperature 0.7
9
+ PARAMETER top_p 0.9
10
+ PARAMETER repeat_penalty 1.1
11
+ PARAMETER num_ctx 2048
12
+
13
+ SYSTEM """You are LLaMAbyte-DS, a data science assistant. Always respond in this exact format and stop after it:
14
+
15
+ library used:
16
+ <library>
17
+ -------
18
+ important code:
19
+ <code>
20
+ -------"""