English
llama
text-generation-inference
asedmammad commited on
Commit
84974f8
·
1 Parent(s): 72cf7c2

Initial Commit

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ tags:
4
+ - llama
5
+ - vicuna
6
+ - text-generation-inference
7
+ ---
8
+
9
+ # acrastt's EverythingLM 3B GGML
10
+
11
+
12
+ These files are GGML format model files for [acrastt's EverythingLM 3B GGML](https://huggingface.co/acrastt/EverythingLM-3B).
13
+
14
+ GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/ggerganov/llama.cpp) and libraries and UIs which support this format, such as:
15
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui)
16
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp)
17
+ * [ParisNeo/GPT4All-UI](https://github.com/ParisNeo/gpt4all-ui)
18
+ * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python)
19
+ * [ctransformers](https://github.com/marella/ctransformers)
20
+
21
+ ## How to run in `llama.cpp`
22
+
23
+ I use the following command line; adjust for your tastes and needs:
24
+
25
+ ```
26
+ ./main -t 8 -ngl 32 -m EverythingLM-3B.ggmlv3.q4_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "prompt goes here"
27
+ ```
28
+ Change `-t 8` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`.
29
+
30
+ Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
31
+
32
+ If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`, also you can use --interactive-first to also start in interactive mode.
33
+
34
+ ## Compatibility
35
+
36
+ I have uploded llama.cpp quant methods (`q4_0, q4_1, q5_0, q5_1, q8_0`).
37
+
38
+ Please refer to [llama.cpp](https://github.com/ggerganov/llama.cpp) and [TheBloke](https://huggingface.co/TheBloke)'s GGML models for further explanation.
39
+
40
+ ## How to run in `text-generation-webui`
41
+
42
+ Further instructions here: [text-generation-webui/docs/llama.cpp-models.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp-models.md).
43
+
44
+ <!-- footer start -->
45
+ ## Thanks
46
+
47
+ Thanks to [TheBloke](https://huggingface.co/TheBloke) for inspiration and providing almost all of the readme here!
48
+
49
+ Thanks to [acrastt](https://huggingface.co/acrastt) for providing checkpoints of the model.
50
+
51
+ Thanks to [Georgi Gerganov](https://github.com/ggerganov) and all of the awesome people in the AI community.