newsletter
commited on
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
---
|
|
|
2 |
language:
|
3 |
- en
|
4 |
license: mit
|
|
|
|
|
5 |
tags:
|
6 |
- nlp
|
7 |
- code
|
8 |
- llama-cpp
|
9 |
- gguf-my-repo
|
10 |
-
base_model: microsoft/Phi-3-mini-128k-instruct
|
11 |
-
license_link: https://huggingface.co/microsoft/Phi-3-mini-128k-instruct/resolve/main/LICENSE
|
12 |
-
pipeline_tag: text-generation
|
13 |
widget:
|
14 |
- messages:
|
15 |
- role: user
|
@@ -31,7 +31,7 @@ Invoke the llama.cpp server or the CLI.
|
|
31 |
|
32 |
### CLI:
|
33 |
```bash
|
34 |
-
llama --hf-repo newsletter/Phi-3-mini-128k-instruct-Q6_K-GGUF --hf-file phi-3-mini-128k-instruct-q6_k.gguf -p "The meaning to life and the universe is"
|
35 |
```
|
36 |
|
37 |
### Server:
|
@@ -53,9 +53,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
53 |
|
54 |
Step 3: Run inference through the main binary.
|
55 |
```
|
56 |
-
./
|
57 |
```
|
58 |
or
|
59 |
```
|
60 |
-
./server --hf-repo newsletter/Phi-3-mini-128k-instruct-Q6_K-GGUF --hf-file phi-3-mini-128k-instruct-q6_k.gguf -c 2048
|
61 |
```
|
|
|
1 |
---
|
2 |
+
base_model: microsoft/Phi-3-mini-128k-instruct
|
3 |
language:
|
4 |
- en
|
5 |
license: mit
|
6 |
+
license_link: https://huggingface.co/microsoft/Phi-3-mini-128k-instruct/resolve/main/LICENSE
|
7 |
+
pipeline_tag: text-generation
|
8 |
tags:
|
9 |
- nlp
|
10 |
- code
|
11 |
- llama-cpp
|
12 |
- gguf-my-repo
|
|
|
|
|
|
|
13 |
widget:
|
14 |
- messages:
|
15 |
- role: user
|
|
|
31 |
|
32 |
### CLI:
|
33 |
```bash
|
34 |
+
llama-cli --hf-repo newsletter/Phi-3-mini-128k-instruct-Q6_K-GGUF --hf-file phi-3-mini-128k-instruct-q6_k.gguf -p "The meaning to life and the universe is"
|
35 |
```
|
36 |
|
37 |
### Server:
|
|
|
53 |
|
54 |
Step 3: Run inference through the main binary.
|
55 |
```
|
56 |
+
./llama-cli --hf-repo newsletter/Phi-3-mini-128k-instruct-Q6_K-GGUF --hf-file phi-3-mini-128k-instruct-q6_k.gguf -p "The meaning to life and the universe is"
|
57 |
```
|
58 |
or
|
59 |
```
|
60 |
+
./llama-server --hf-repo newsletter/Phi-3-mini-128k-instruct-Q6_K-GGUF --hf-file phi-3-mini-128k-instruct-q6_k.gguf -c 2048
|
61 |
```
|