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>
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 }}
|