LeMoussel commited on
Commit
d12afbe
1 Parent(s): 48ad7b3

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
+ language:
3
+ - fr
4
+ license: cc-by-nc-sa-4.0
5
+ tags:
6
+ - pretrained
7
+ - conversational
8
+ - llama-cpp
9
+ - gguf-my-repo
10
+ base_model: mistralai/Mistral-7B-v0.1
11
+ pipeline_tag: text-generation
12
+ widget:
13
+ - text: '- Bonjour Dominique, qu''allez-vous nous cuisiner aujourd''hui ?
14
+
15
+ - Bonjour Camille,'
16
+ example_title: Request for a recipe
17
+ group: Dash
18
+ - text: '[Intervenant 1:] Bonjour Dominique, qu''allez-vous nous cuisiner aujourd''hui
19
+ ?
20
+
21
+ [Intervenant 2:] Bonjour Camille,'
22
+ example_title: Request for a recipe
23
+ group: Intervenant
24
+ - text: '[Camille:] Bonjour Dominique, qu''allez-vous nous cuisiner aujourd''hui ?
25
+
26
+ [Dominique:] Bonjour Camille,'
27
+ example_title: Request for a recipe
28
+ group: FirstName
29
+ - text: '[Camille Durand:] Bonjour Dominique, qu''allez-vous nous cuisiner aujourd''hui
30
+ ?
31
+
32
+ [Dominique Petit:] Bonjour Camille,'
33
+ example_title: Request for a recipe
34
+ group: Named
35
+ inference:
36
+ parameters:
37
+ temperature: 1.0
38
+ max_new_tokens: 200
39
+ top_k: 10
40
+ ---
41
+
42
+ # LeMoussel/Claire-Mistral-7B-0.1-Q4_K_M-GGUF
43
+ This model was converted to GGUF format from [`OpenLLM-France/Claire-Mistral-7B-0.1`](https://huggingface.co/OpenLLM-France/Claire-Mistral-7B-0.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
44
+ Refer to the [original model card](https://huggingface.co/OpenLLM-France/Claire-Mistral-7B-0.1) for more details on the model.
45
+ ## Use with llama.cpp
46
+
47
+ Install llama.cpp through brew.
48
+
49
+ ```bash
50
+ brew install ggerganov/ggerganov/llama.cpp
51
+ ```
52
+ Invoke the llama.cpp server or the CLI.
53
+
54
+ CLI:
55
+
56
+ ```bash
57
+ llama-cli --hf-repo LeMoussel/Claire-Mistral-7B-0.1-Q4_K_M-GGUF --model claire-mistral-7b-0.1.Q4_K_M.gguf -p "The meaning to life and the universe is"
58
+ ```
59
+
60
+ Server:
61
+
62
+ ```bash
63
+ llama-server --hf-repo LeMoussel/Claire-Mistral-7B-0.1-Q4_K_M-GGUF --model claire-mistral-7b-0.1.Q4_K_M.gguf -c 2048
64
+ ```
65
+
66
+ 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.
67
+
68
+ ```
69
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m claire-mistral-7b-0.1.Q4_K_M.gguf -n 128
70
+ ```