SixOpen commited on
Commit
8cfe854
1 Parent(s): 2423e98

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ tags:
6
+ - nlp
7
+ - code
8
+ - llama-cpp
9
+ - gguf-my-repo
10
+ license_link: https://huggingface.co/microsoft/Phi-3-mini-4k-instruct/resolve/main/LICENSE
11
+ pipeline_tag: text-generation
12
+ inference:
13
+ parameters:
14
+ temperature: 0.0
15
+ widget:
16
+ - messages:
17
+ - role: user
18
+ content: Can you provide ways to eat combinations of bananas and dragonfruits?
19
+ ---
20
+
21
+ # SixOpen/Phi-3-mini-4k-instruct-IQ4_NL-imat.gguf
22
+ This model was converted to GGUF format from [`microsoft/Phi-3-mini-4k-instruct`](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
23
+ Refer to the [original model card](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct) for more details on the model.
24
+ ## Use with llama.cpp
25
+ Install llama.cpp through brew.
26
+ ```bash
27
+ brew install ggerganov/ggerganov/llama.cpp
28
+ ```
29
+ Invoke the llama.cpp server or the CLI.
30
+ CLI:
31
+ ```bash
32
+ llama-cli --hf-repo SixOpen/Phi-3-mini-4k-instruct-IQ4_NL-imat.gguf --model phi-3-mini-4k-instruct-iq4_nl-imat.gguf -p "The meaning to life and the universe is"
33
+ ```
34
+ Server:
35
+ ```bash
36
+ llama-server --hf-repo SixOpen/Phi-3-mini-4k-instruct-IQ4_NL-imat.gguf --model phi-3-mini-4k-instruct-iq4_nl-imat.gguf -c 2048
37
+ ```
38
+ 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.
39
+ ```
40
+ git clone https://github.com/ggerganov/llama.cpp && \
41
+ cd llama.cpp && \
42
+ make && \
43
+ ./main -m phi-3-mini-4k-instruct-iq4_nl-imat.gguf -n 128
44
+ ```