Text Generation
Transformers
GGUF
llama-cpp
gguf-my-repo
Inference Endpoints
mudler commited on
Commit
b3b63ed
1 Parent(s): 34aa494

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
+ tags:
5
+ - llama-cpp
6
+ - gguf-my-repo
7
+ datasets:
8
+ - cerebras/SlimPajama-627B
9
+ - HuggingFaceH4/ultrachat_200k
10
+ - hkust-nlp/deita-10k-v0
11
+ - Open-Orca/SlimOrca-Dedup
12
+ - cognitivecomputations/WizardLM_evol_instruct_V2_196k_unfiltered_merged_split
13
+ - HuggingFaceH4/capybara
14
+ - meta-math/MetaMathQA
15
+ - argilla/ultrafeedback-binarized-preferences-cleaned
16
+ - Intel/orca_dpo_pairs
17
+ - alexredna/oasst2_dpo_pairs
18
+ pipeline_tag: text-generation
19
+ ---
20
+
21
+ # mudler/prem-1B-chat-Q8_0-GGUF
22
+ This model was converted to GGUF format from [`premai-io/prem-1B-chat`](https://huggingface.co/premai-io/prem-1B-chat) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
23
+ Refer to the [original model card](https://huggingface.co/premai-io/prem-1B-chat) for more details on the model.
24
+ ## Use with llama.cpp
25
+
26
+ Install llama.cpp through brew.
27
+
28
+ ```bash
29
+ brew install ggerganov/ggerganov/llama.cpp
30
+ ```
31
+ Invoke the llama.cpp server or the CLI.
32
+
33
+ CLI:
34
+
35
+ ```bash
36
+ llama-cli --hf-repo mudler/prem-1B-chat-Q8_0-GGUF --model prem-1b-chat.Q8_0.gguf -p "The meaning to life and the universe is"
37
+ ```
38
+
39
+ Server:
40
+
41
+ ```bash
42
+ llama-server --hf-repo mudler/prem-1B-chat-Q8_0-GGUF --model prem-1b-chat.Q8_0.gguf -c 2048
43
+ ```
44
+
45
+ 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.
46
+
47
+ ```
48
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m prem-1b-chat.Q8_0.gguf -n 128
49
+ ```