Text Generation
Adapters
GGUF
German
English
efficient
llama
llama3
ollama
instruction-finetuning
nomi
lazyloopstudio
unsloth
nomi1.1
llama-cpp
gguf-my-repo
conversational
JohnRoger commited on
Commit
c934658
·
verified ·
1 Parent(s): 9a14c92

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - Magpie-Align/Magpie-Pro-MT-300K-v0.1
5
+ - Magpie-Align/Magpie-Qwen2.5-Coder-Pro-300K-v0.1
6
+ - Magpie-Align/Magpie-Llama-3.3-Pro-500K-Filtered
7
+ language:
8
+ - de
9
+ - en
10
+ base_model: JallyAI/Nomi-1.1
11
+ pipeline_tag: text-generation
12
+ library_name: adapter-transformers
13
+ tags:
14
+ - efficient
15
+ - llama
16
+ - llama3
17
+ - gguf
18
+ - ollama
19
+ - instruction-finetuning
20
+ - nomi
21
+ - lazyloopstudio
22
+ - unsloth
23
+ - nomi1.1
24
+ - llama-cpp
25
+ - gguf-my-repo
26
+ ---
27
+
28
+ # JohnRoger/Nomi-1.1-Q8_0-GGUF
29
+ This model was converted to GGUF format from [`JallyAI/Nomi-1.1`](https://huggingface.co/JallyAI/Nomi-1.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
30
+ Refer to the [original model card](https://huggingface.co/JallyAI/Nomi-1.1) for more details on the model.
31
+
32
+ ## Use with llama.cpp
33
+ Install llama.cpp through brew (works on Mac and Linux)
34
+
35
+ ```bash
36
+ brew install llama.cpp
37
+
38
+ ```
39
+ Invoke the llama.cpp server or the CLI.
40
+
41
+ ### CLI:
42
+ ```bash
43
+ llama-cli --hf-repo JohnRoger/Nomi-1.1-Q8_0-GGUF --hf-file nomi-1.1-q8_0.gguf -p "The meaning to life and the universe is"
44
+ ```
45
+
46
+ ### Server:
47
+ ```bash
48
+ llama-server --hf-repo JohnRoger/Nomi-1.1-Q8_0-GGUF --hf-file nomi-1.1-q8_0.gguf -c 2048
49
+ ```
50
+
51
+ 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.
52
+
53
+ Step 1: Clone llama.cpp from GitHub.
54
+ ```
55
+ git clone https://github.com/ggerganov/llama.cpp
56
+ ```
57
+
58
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
59
+ ```
60
+ cd llama.cpp && LLAMA_CURL=1 make
61
+ ```
62
+
63
+ Step 3: Run inference through the main binary.
64
+ ```
65
+ ./llama-cli --hf-repo JohnRoger/Nomi-1.1-Q8_0-GGUF --hf-file nomi-1.1-q8_0.gguf -p "The meaning to life and the universe is"
66
+ ```
67
+ or
68
+ ```
69
+ ./llama-server --hf-repo JohnRoger/Nomi-1.1-Q8_0-GGUF --hf-file nomi-1.1-q8_0.gguf -c 2048
70
+ ```