TheBloke commited on
Commit
481942f
1 Parent(s): cf614ea

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -1,6 +1,8 @@
1
  ---
2
  inference: false
3
  license: other
 
 
4
  ---
5
 
6
  <!-- header start -->
@@ -34,6 +36,15 @@ GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/gger
34
  * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/WizardLM-7B-V1.0-Uncensored-GGML)
35
  * [Unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/ehartford/WizardLM-7B-V1.0-Uncensored)
36
 
 
 
 
 
 
 
 
 
 
37
  <!-- compatibility_ggml start -->
38
  ## Compatibility
39
 
@@ -88,7 +99,7 @@ Refer to the Provided Files table below to see what files use which methods, and
88
  I use the following command line; adjust for your tastes and needs:
89
 
90
  ```
91
- ./main -t 10 -ngl 32 -m wizardlm-7b-v1.0-uncensored.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction: Write a story about llamas\n### Response:"
92
  ```
93
  Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`.
94
 
 
1
  ---
2
  inference: false
3
  license: other
4
+ datasets:
5
+ - ehartford/WizardLM_evol_instruct_V2_196k_unfiltered_merged_split
6
  ---
7
 
8
  <!-- header start -->
 
36
  * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/WizardLM-7B-V1.0-Uncensored-GGML)
37
  * [Unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/ehartford/WizardLM-7B-V1.0-Uncensored)
38
 
39
+ ## Prompt template
40
+
41
+ ```
42
+ You are a helpful AI assistant.
43
+
44
+ USER: <prompt>
45
+ ASSISTANT:
46
+ ```
47
+
48
  <!-- compatibility_ggml start -->
49
  ## Compatibility
50
 
 
99
  I use the following command line; adjust for your tastes and needs:
100
 
101
  ```
102
+ ./main -t 10 -ngl 32 -m wizardlm-7b-v1.0-uncensored.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "USER: Write a story about llamas\nASSISTANT:"
103
  ```
104
  Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`.
105