gate369 commited on
Commit
97029cf
1 Parent(s): cb31662

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - text-generation-inference
7
+ - transformers
8
+ - unsloth
9
+ - mistral
10
+ - trl
11
+ - sft
12
+ - llama-cpp
13
+ - gguf-my-repo
14
+ base_model: liminerity/bitmap-M7-alpaca-70m
15
+ ---
16
+
17
+ # gate369/teslav0-Q8_0-GGUF
18
+ This model was converted to GGUF format from [`gate369/teslav0`](https://huggingface.co/gate369/teslav0) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
19
+ Refer to the [original model card](https://huggingface.co/gate369/teslav0) for more details on the model.
20
+ ## Use with llama.cpp
21
+ Install llama.cpp through brew.
22
+ ```bash
23
+ brew install ggerganov/ggerganov/llama.cpp
24
+ ```
25
+ Invoke the llama.cpp server or the CLI.
26
+ CLI:
27
+ ```bash
28
+ llama-cli --hf-repo gate369/teslav0-Q8_0-GGUF --model teslav0-q8_0.gguf -p "The meaning to life and the universe is"
29
+ ```
30
+ Server:
31
+ ```bash
32
+ llama-server --hf-repo gate369/teslav0-Q8_0-GGUF --model teslav0-q8_0.gguf -c 2048
33
+ ```
34
+ 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.
35
+ ```
36
+ git clone https://github.com/ggerganov/llama.cpp && \
37
+ cd llama.cpp && \
38
+ make && \
39
+ ./main -m teslav0-q8_0.gguf -n 128
40
+ ```