VaiTon commited on
Commit
5157e97
1 Parent(s): efe5618

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - it
4
+ - en
5
+ license: apache-2.0
6
+ tags:
7
+ - pretrained
8
+ - llama-cpp
9
+ - gguf-my-repo
10
+ datasets:
11
+ - uonlp/CulturaX
12
+ pipeline_tag: text-generation
13
+ inference:
14
+ parameters:
15
+ temperature: 0.5
16
+ do_sample: true
17
+ widget:
18
+ - text: 'La capitale dell''Italia è '
19
+ example_title: Example 1
20
+ - text: 'Nel mezzo del cammin di nostra vita '
21
+ example_title: Example 2
22
+ - text: 'Una cena senza vino è come '
23
+ example_title: Example 3
24
+ ---
25
+
26
+ # VaiTon/Minerva-3B-base-v1.0-Q8_0-GGUF
27
+ This model was converted to GGUF format from [`sapienzanlp/Minerva-3B-base-v1.0`](https://huggingface.co/sapienzanlp/Minerva-3B-base-v1.0) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
28
+ Refer to the [original model card](https://huggingface.co/sapienzanlp/Minerva-3B-base-v1.0) for more details on the model.
29
+ ## Use with llama.cpp
30
+
31
+ Install llama.cpp through brew.
32
+
33
+ ```bash
34
+ brew install ggerganov/ggerganov/llama.cpp
35
+ ```
36
+ Invoke the llama.cpp server or the CLI.
37
+
38
+ CLI:
39
+
40
+ ```bash
41
+ llama-cli --hf-repo VaiTon/Minerva-3B-base-v1.0-Q8_0-GGUF --model minerva-3b-base-v1.0.Q8_0.gguf -p "The meaning to life and the universe is"
42
+ ```
43
+
44
+ Server:
45
+
46
+ ```bash
47
+ llama-server --hf-repo VaiTon/Minerva-3B-base-v1.0-Q8_0-GGUF --model minerva-3b-base-v1.0.Q8_0.gguf -c 2048
48
+ ```
49
+
50
+ 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.
51
+
52
+ ```
53
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m minerva-3b-base-v1.0.Q8_0.gguf -n 128
54
+ ```