m0javad commited on
Commit
c01dad1
1 Parent(s): 6b2ad6b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - multilingual
4
+ - fa
5
+ - en
6
+ license: cc-by-nc-sa-4.0
7
+ library_name: transformers
8
+ tags:
9
+ - text-generation-inference
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ metrics:
13
+ - bleu
14
+ - comet
15
+ - accuracy
16
+ - perplexity
17
+ - spearmanr
18
+ inference: false
19
+ pipeline_tag: text-generation
20
+ co2_eq_emissions:
21
+ emissions: 232380
22
+ ---
23
+
24
+ # m0javad/PersianMind-v1.0-Q8_0-GGUF
25
+ This model was converted to GGUF format from [`universitytehran/PersianMind-v1.0`](https://huggingface.co/universitytehran/PersianMind-v1.0) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
26
+ Refer to the [original model card](https://huggingface.co/universitytehran/PersianMind-v1.0) for more details on the model.
27
+ ## Use with llama.cpp
28
+
29
+ Install llama.cpp through brew.
30
+
31
+ ```bash
32
+ brew install ggerganov/ggerganov/llama.cpp
33
+ ```
34
+ Invoke the llama.cpp server or the CLI.
35
+
36
+ CLI:
37
+
38
+ ```bash
39
+ llama-cli --hf-repo m0javad/PersianMind-v1.0-Q8_0-GGUF --model persianmind-v1.0.Q8_0.gguf -p "The meaning to life and the universe is"
40
+ ```
41
+
42
+ Server:
43
+
44
+ ```bash
45
+ llama-server --hf-repo m0javad/PersianMind-v1.0-Q8_0-GGUF --model persianmind-v1.0.Q8_0.gguf -c 2048
46
+ ```
47
+
48
+ 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.
49
+
50
+ ```
51
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m persianmind-v1.0.Q8_0.gguf -n 128
52
+ ```