Update README.md
Browse files
README.md
CHANGED
@@ -12,49 +12,47 @@ tags:
|
|
12 |
- french
|
13 |
- chocolatine
|
14 |
- llama-cpp
|
15 |
-
- gguf-my-repo
|
16 |
---
|
17 |
|
18 |
-
#
|
19 |
-
This model was converted to GGUF format from [`jpacifico/Chocolatine-3B-Instruct-DPO-v1.2`](https://huggingface.co/jpacifico/Chocolatine-3B-Instruct-DPO-v1.2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
20 |
-
Refer to the [original model card](https://huggingface.co/jpacifico/Chocolatine-3B-Instruct-DPO-v1.2) for more details on the model.
|
21 |
|
22 |
-
|
23 |
-
|
|
|
|
|
24 |
|
25 |
-
|
26 |
-
brew install llama.cpp
|
27 |
|
28 |
-
|
29 |
-
|
|
|
30 |
|
31 |
-
### CLI:
|
32 |
```bash
|
33 |
-
|
34 |
```
|
35 |
|
36 |
-
|
|
|
37 |
```bash
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
```
|
40 |
|
41 |
-
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.
|
42 |
|
43 |
-
|
44 |
-
```
|
45 |
-
git clone https://github.com/ggerganov/llama.cpp
|
46 |
-
```
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
cd llama.cpp && LLAMA_CURL=1 make
|
51 |
-
```
|
52 |
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
or
|
58 |
-
```
|
59 |
-
./llama-server --hf-repo jpacifico/Chocolatine-3B-Instruct-DPO-v1.2-Q4_K_M-GGUF --hf-file chocolatine-3b-instruct-dpo-v1.2-q4_k_m.gguf -c 2048
|
60 |
-
```
|
|
|
12 |
- french
|
13 |
- chocolatine
|
14 |
- llama-cpp
|
|
|
15 |
---
|
16 |
|
17 |
+
# Chocolatine-3B-Instruct-DPO-v1.2-Q4_K_M-GGUF
|
|
|
|
|
18 |
|
19 |
+
Quantized q4_k_m GGUF version of the original model [`jpacifico/Chocolatine-3B-Instruct-DPO-v1.2`](https://huggingface.co/jpacifico/Chocolatine-3B-Instruct-DPO-v1.2)
|
20 |
+
can be used on a CPU device, compatible [llama.cpp](https://github.com/ggerganov/llama.cpp)
|
21 |
+
now supported architecture by [LM Studio](https://lmstudio.ai/).
|
22 |
+
Also ready for Raspberry Pi 5 8Gb.
|
23 |
|
24 |
+
### Ollama
|
|
|
25 |
|
26 |
+
[jpacifico/chocolatine-3b](https://ollama.com/jpacifico/chocolatine-3b)
|
27 |
+
|
28 |
+
Usage:
|
29 |
|
|
|
30 |
```bash
|
31 |
+
ollama run jpacifico/chocolatine-3b
|
32 |
```
|
33 |
|
34 |
+
Ollama *Modelfile* example :
|
35 |
+
|
36 |
```bash
|
37 |
+
FROM ./chocolatine-3b-instruct-dpo-v1.2-q4_k_m.gguf
|
38 |
+
TEMPLATE """{{ if .System }}<|system|>
|
39 |
+
{{ .System }}<|end|>
|
40 |
+
{{ end }}{{ if .Prompt }}<|user|>
|
41 |
+
{{ .Prompt }}<|end|>
|
42 |
+
{{ end }}<|assistant|>
|
43 |
+
{{ .Response }}<|end|>
|
44 |
+
"""
|
45 |
+
PARAMETER stop """{"stop": ["<|end|>","<|user|>","<|assistant|>"]}"""
|
46 |
+
SYSTEM """You are a friendly assistant called Chocolatine."""
|
47 |
```
|
48 |
|
|
|
49 |
|
50 |
+
### Limitations
|
|
|
|
|
|
|
51 |
|
52 |
+
The Chocolatine model is a quick demonstration that a base model can be easily fine-tuned to achieve compelling performance.
|
53 |
+
It does not have any moderation mechanism.
|
|
|
|
|
54 |
|
55 |
+
- **Developed by:** Jonathan Pacifico, 2024
|
56 |
+
- **Model type:** LLM
|
57 |
+
- **Language(s) (NLP):** French, English
|
58 |
+
- **License:** MIT
|
|
|
|
|
|
|
|