lucaburatti7 tidealwari commited on
Commit
4b97330
1 Parent(s): 94d889c

parameters and template for GGUF model (#1)

Browse files

- parameters and template for GGUF model (ab5176beb4943f12e596dcba90d47c4d04ce9ff0)


Co-authored-by: Adarsh <tidealwari@users.noreply.huggingface.co>

Files changed (2) hide show
  1. params +10 -0
  2. template +9 -0
params ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stop": [
3
+ "Question:",
4
+ "Answer:",
5
+ "System:",
6
+ "```"
7
+ ],
8
+ "temperature": 0.0,
9
+ "top_k": 1
10
+ }
template ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {{ if .System }}
2
+ System:
3
+ {{ .System }}
4
+
5
+ {{ end }}{{ if .Prompt }}Question:
6
+ {{ .Prompt }}
7
+
8
+ {{ end }}Answer:
9
+ ```python{{ .Response }}