duyntnet commited on
Commit
9bf3e46
1 Parent(s): 44c8bc9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ pipeline_tag: text-generation
6
+ inference: false
7
+ tags:
8
+ - transformers
9
+ - gguf
10
+ - imatrix
11
+ - Nous-Hermes-Llama2-13b
12
+ ---
13
+ Quantizations of https://huggingface.co/NousResearch/Nous-Hermes-Llama2-13b
14
+
15
+
16
+ ### Inference Clients/UIs
17
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp)
18
+ * [JanAI](https://github.com/janhq/jan)
19
+ * [KoboldCPP](https://github.com/LostRuins/koboldcpp)
20
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui)
21
+ * [ollama](https://github.com/ollama/ollama)
22
+ * [GPT4All](https://github.com/nomic-ai/gpt4all)
23
+
24
+ ---
25
+
26
+ # From original readme
27
+
28
+ ## Prompt Format
29
+
30
+ The model follows the Alpaca prompt format:
31
+ ```
32
+ ### Instruction:
33
+ <prompt>
34
+
35
+ ### Response:
36
+ <leave a newline blank for model to respond>
37
+
38
+ ```
39
+
40
+ or
41
+
42
+ ```
43
+ ### Instruction:
44
+ <prompt>
45
+
46
+ ### Input:
47
+ <additional context>
48
+
49
+ ### Response:
50
+ <leave a newline blank for model to respond>
51
+
52
+ ```