TroyDoesAI commited on
Commit
d7e7528
1 Parent(s): 34c7542

Test Depth Up

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ BlackSheep-Llama3.2-5B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
BlackSheep-Llama3.2-5B-Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:257ea97528270058c5614d18232d67f7b0aea9860ce7f9a2c267036ba50d75e9
3
+ size 3085172384
Modelfile ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ./BlackSheep-Llama3.2-5B-Q4_K_M.gguf
2
+
3
+ # set the temperature to 1 [higher is more creative, lower is more coherent]
4
+ PARAMETER temperature 7.0
5
+ PARAMETER num_ctx 4096
6
+ # PARAMETER num_gpu 42
7
+ # PARAMETER num_thread 2
8
+ PARAMETER stop "</s>"
9
+ PARAMETER stop "<s>"
10
+ PARAMETER stop "<br/>"
11
+ PARAMETER stop "<br>"
12
+ PARAMETER stop "<|im_start|>"
13
+ PARAMETER stop "<|user|>"
14
+ PARAMETER stop "<|end|>"
15
+ PARAMETER stop "<|im_end|>"
16
+ PARAMETER stop "<|`end `|>"
17
+ PARAMETER stop "<|` end `|>"
18
+ PARAMETER stop "<|` end`|>"
19
+ PARAMETER stop "<|endoftext|>"
20
+ PARAMETER stop "<|`EndBlackSheepText `|>"
21
+ PARAMETER stop "<|End|>"
22
+ PARAMETER stop "<|End>"
23
+ PARAMETER stop "<|End"
24
+ PARAMETER stop "<|"
25
+ PARAMETER stop "\n\n\n"
26
+ PARAMETER stop "BEGININPUT"
27
+ PARAMETER stop "ENDINPUT"
28
+ PARAMETER stop "BEGINCONTEXT"
29
+ PARAMETER stop "ENDCONTEXT"
30
+ PARAMETER stop "BEGININSTRUCTION"
31
+ PARAMETER stop "ENDINSTRUCTION"
32
+ PARAMETER stop "Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request."
33
+ PARAMETER stop "### Input:"
34
+ PARAMETER stop "### Instruction"
35
+ PARAMETER num_predict -2
36
+
37
+ PARAMETER stop "<|start_header_id|>"
38
+ PARAMETER stop "<|end_header_id|>"
39
+ PARAMETER stop "<|eot_id|>"
40
+ PARAMETER stop "<|reserved_special_token"
41
+ PARAMETER stop "<|system|>"
42
+ PARAMETER stop " \`\`\` "
43
+
44
+ PARAMETER stop "**Context:**"
45
+ PARAMETER stop "**Request:**"
46
+
47
+ PARAMETER seed 666
48
+ PARAMETER tfs_z 2
49
+ PARAMETER top_k 42
50
+ PARAMETER top_p 24
51
+ PARAMETER min_p 0.6
52
+
53
+ TEMPLATE """
54
+ {{ if .Prompt }}
55
+ {{ .Prompt }}{{ end }}
56
+ **Response:**
57
+ {{ .Response }}
58
+ """