Transformers
GGUF
Swahili
English
text-generation-inference
unsloth
mistral
trl
llama-cpp
gguf-my-repo
Inference Endpoints
NikolayKozloff commited on
Commit
6d213b7
1 Parent(s): d8012ff

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
+ language:
3
+ - sw
4
+ - en
5
+ license: apache-2.0
6
+ library_name: transformers
7
+ tags:
8
+ - text-generation-inference
9
+ - transformers
10
+ - unsloth
11
+ - mistral
12
+ - trl
13
+ - llama-cpp
14
+ - gguf-my-repo
15
+ base_model: LeroyDyer/Mixtral_AI_CyberTron_Swahili_SFT
16
+ datasets:
17
+ - iamshnoo/alpaca-cleaned-swahili
18
+ - Rogendo/English-Swahili-Sentence-Pairs
19
+ - mwitiderrick/SwahiliPlatypus
20
+ - uonlp/CulturaX
21
+ - lmsys/mt_bench_human_judgments
22
+ ---
23
+
24
+ # NikolayKozloff/Mixtral_AI_CyberTron_Swahili_7b-Q8_0-GGUF
25
+ This model was converted to GGUF format from [`LeroyDyer/Mixtral_AI_CyberTron_Swahili_7b`](https://huggingface.co/LeroyDyer/Mixtral_AI_CyberTron_Swahili_7b) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
26
+ Refer to the [original model card](https://huggingface.co/LeroyDyer/Mixtral_AI_CyberTron_Swahili_7b) for more details on the model.
27
+ ## Use with llama.cpp
28
+
29
+ Install llama.cpp through brew.
30
+
31
+ ```bash
32
+ brew install ggerganov/ggerganov/llama.cpp
33
+ ```
34
+ Invoke the llama.cpp server or the CLI.
35
+
36
+ CLI:
37
+
38
+ ```bash
39
+ llama-cli --hf-repo NikolayKozloff/Mixtral_AI_CyberTron_Swahili_7b-Q8_0-GGUF --model mixtral_ai_cybertron_swahili_7b.Q8_0.gguf -p "The meaning to life and the universe is"
40
+ ```
41
+
42
+ Server:
43
+
44
+ ```bash
45
+ llama-server --hf-repo NikolayKozloff/Mixtral_AI_CyberTron_Swahili_7b-Q8_0-GGUF --model mixtral_ai_cybertron_swahili_7b.Q8_0.gguf -c 2048
46
+ ```
47
+
48
+ 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.
49
+
50
+ ```
51
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m mixtral_ai_cybertron_swahili_7b.Q8_0.gguf -n 128
52
+ ```