DavidAU commited on
Commit
409f00e
1 Parent(s): 38065a8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +50 -0
README.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc-by-nc-4.0
5
+ tags:
6
+ - text-generation-inference
7
+ - transformers
8
+ - unsloth
9
+ - mistral
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ base_model: alpindale/Mistral-7B-v0.2-hf
13
+ datasets:
14
+ - maldv/cyberpunk
15
+ - microsoft/orca-math-word-problems-200k
16
+ - Weyaxi/sci-datasets
17
+ - grimulkan/theory-of-mind
18
+ - ResplendentAI/Synthetic_Soul_1k
19
+ - GraphWiz/GraphInstruct-RFT-72K
20
+ ---
21
+
22
+ # DavidAU/electric-mist-7b-Q8_0-GGUF
23
+ This model was converted to GGUF format from [`maldv/electric-mist-7b`](https://huggingface.co/maldv/electric-mist-7b) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
24
+ Refer to the [original model card](https://huggingface.co/maldv/electric-mist-7b) for more details on the model.
25
+ ## Use with llama.cpp
26
+
27
+ Install llama.cpp through brew.
28
+
29
+ ```bash
30
+ brew install ggerganov/ggerganov/llama.cpp
31
+ ```
32
+ Invoke the llama.cpp server or the CLI.
33
+
34
+ CLI:
35
+
36
+ ```bash
37
+ llama-cli --hf-repo DavidAU/electric-mist-7b-Q8_0-GGUF --model electric-mist-7b.Q8_0.gguf -p "The meaning to life and the universe is"
38
+ ```
39
+
40
+ Server:
41
+
42
+ ```bash
43
+ llama-server --hf-repo DavidAU/electric-mist-7b-Q8_0-GGUF --model electric-mist-7b.Q8_0.gguf -c 2048
44
+ ```
45
+
46
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
47
+
48
+ ```
49
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m electric-mist-7b.Q8_0.gguf -n 128
50
+ ```