appvoid commited on
Commit
4f96d43
·
verified ·
1 Parent(s): 6ae790a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -15
README.md CHANGED
@@ -23,25 +23,39 @@ tags:
23
  base_model: appvoid/arco-3
24
  ---
25
 
 
26
  # arco-3
27
- **Model creator:** [appvoid](https://huggingface.co/appvoid)<br/>
28
- **Original model**: [appvoid/arco-3](https://huggingface.co/appvoid/arco-3)<br/>
29
- **GGUF quantization:** provided by [appvoid](https:/huggingface.co/appvoid) using `llama.cpp`<br/>
30
- ## Special thanks
31
- 🙏 Special thanks to [Georgi Gerganov](https://github.com/ggerganov) and the whole team working on [llama.cpp](https://github.com/ggerganov/llama.cpp/) for making all of this possible.
32
- ## Use with Ollama
33
- ```bash
34
- ollama run "hf.co/appvoid/arco-3-unquantized-output-GGUF:Q8_0"
35
- ```
36
- ## Use with LM Studio
37
- ```bash
38
- lms load "appvoid/arco-3-unquantized-output-GGUF"
39
- ```
40
- ## Use with llama.cpp CLI
41
  ```bash
42
  llama-cli --hf "appvoid/arco-3-unquantized-output-GGUF:Q8_0" -p "The meaning to life and the universe is"
43
  ```
44
- ## Use with llama.cpp Server:
 
 
45
  ```bash
46
  llama-server --hf "appvoid/arco-3-unquantized-output-GGUF:Q8_0" -c 4096
47
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  base_model: appvoid/arco-3
24
  ---
25
 
26
+
27
  # arco-3
28
+
29
+ - **Author:** [appvoid](https://huggingface.co/appvoid)
30
+ - **Model:** [arco 3](https://huggingface.co/appvoid/arco-3)
31
+ - **Quant:** [`llama.cpp`](https://github.com/ggerganov/llama.cpp)
32
+
33
+ ---
34
+
35
+ ## Usage
36
+
37
+ **llama.cpp CLI**
38
+
 
 
 
39
  ```bash
40
  llama-cli --hf "appvoid/arco-3-unquantized-output-GGUF:Q8_0" -p "The meaning to life and the universe is"
41
  ```
42
+
43
+ **llama.cpp Server**
44
+
45
  ```bash
46
  llama-server --hf "appvoid/arco-3-unquantized-output-GGUF:Q8_0" -c 4096
47
  ```
48
+
49
+ **LM Studio**
50
+
51
+ ```bash
52
+ lms load "appvoid/arco-3-unquantized-output-GGUF"
53
+ ```
54
+
55
+ ---
56
+
57
+ ## Thanks
58
+
59
+ Thanks to [Georgi](https://github.com/ggerganov) and the `llama.cpp` team for making this model available to everyone.
60
+
61
+ ---