Update README.md
Browse files
README.md
CHANGED
@@ -1,54 +1,10 @@
|
|
1 |
---
|
2 |
license: other
|
3 |
license_name: nvidia-open-model-license
|
4 |
-
license_link:
|
|
|
5 |
library_name: transformers
|
6 |
base_model: nvidia/Mistral-NeMo-Minitron-8B-Instruct
|
7 |
tags:
|
8 |
- llama-cpp
|
9 |
-
- gguf-my-repo
|
10 |
---
|
11 |
-
|
12 |
-
# Manel/Mistral-NeMo-Minitron-8B-Instruct-Q2_K-GGUF
|
13 |
-
This model was converted to GGUF format from [`nvidia/Mistral-NeMo-Minitron-8B-Instruct`](https://huggingface.co/nvidia/Mistral-NeMo-Minitron-8B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
14 |
-
Refer to the [original model card](https://huggingface.co/nvidia/Mistral-NeMo-Minitron-8B-Instruct) for more details on the model.
|
15 |
-
|
16 |
-
## Use with llama.cpp
|
17 |
-
Install llama.cpp through brew (works on Mac and Linux)
|
18 |
-
|
19 |
-
```bash
|
20 |
-
brew install llama.cpp
|
21 |
-
|
22 |
-
```
|
23 |
-
Invoke the llama.cpp server or the CLI.
|
24 |
-
|
25 |
-
### CLI:
|
26 |
-
```bash
|
27 |
-
llama-cli --hf-repo Manel/Mistral-NeMo-Minitron-8B-Instruct-Q2_K-GGUF --hf-file mistral-nemo-minitron-8b-instruct-q2_k.gguf -p "The meaning to life and the universe is"
|
28 |
-
```
|
29 |
-
|
30 |
-
### Server:
|
31 |
-
```bash
|
32 |
-
llama-server --hf-repo Manel/Mistral-NeMo-Minitron-8B-Instruct-Q2_K-GGUF --hf-file mistral-nemo-minitron-8b-instruct-q2_k.gguf -c 2048
|
33 |
-
```
|
34 |
-
|
35 |
-
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.
|
36 |
-
|
37 |
-
Step 1: Clone llama.cpp from GitHub.
|
38 |
-
```
|
39 |
-
git clone https://github.com/ggerganov/llama.cpp
|
40 |
-
```
|
41 |
-
|
42 |
-
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).
|
43 |
-
```
|
44 |
-
cd llama.cpp && LLAMA_CURL=1 make
|
45 |
-
```
|
46 |
-
|
47 |
-
Step 3: Run inference through the main binary.
|
48 |
-
```
|
49 |
-
./llama-cli --hf-repo Manel/Mistral-NeMo-Minitron-8B-Instruct-Q2_K-GGUF --hf-file mistral-nemo-minitron-8b-instruct-q2_k.gguf -p "The meaning to life and the universe is"
|
50 |
-
```
|
51 |
-
or
|
52 |
-
```
|
53 |
-
./llama-server --hf-repo Manel/Mistral-NeMo-Minitron-8B-Instruct-Q2_K-GGUF --hf-file mistral-nemo-minitron-8b-instruct-q2_k.gguf -c 2048
|
54 |
-
```
|
|
|
1 |
---
|
2 |
license: other
|
3 |
license_name: nvidia-open-model-license
|
4 |
+
license_link: >-
|
5 |
+
https://developer.download.nvidia.com/licenses/nvidia-open-model-license-agreement-june-2024.pdf
|
6 |
library_name: transformers
|
7 |
base_model: nvidia/Mistral-NeMo-Minitron-8B-Instruct
|
8 |
tags:
|
9 |
- llama-cpp
|
|
|
10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|