Instructions to use newsletter/neural-chat-7b-v3-3-Q6_K-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use newsletter/neural-chat-7b-v3-3-Q6_K-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K # Run inference directly in the terminal: llama cli -hf newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K # Run inference directly in the terminal: llama cli -hf newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K # Run inference directly in the terminal: ./llama-cli -hf newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K
Use Docker
docker model run hf.co/newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K
- LM Studio
- Jan
- Ollama
How to use newsletter/neural-chat-7b-v3-3-Q6_K-GGUF with Ollama:
ollama run hf.co/newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K
- Unsloth Studio
How to use newsletter/neural-chat-7b-v3-3-Q6_K-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for newsletter/neural-chat-7b-v3-3-Q6_K-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for newsletter/neural-chat-7b-v3-3-Q6_K-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for newsletter/neural-chat-7b-v3-3-Q6_K-GGUF to start chatting
- Docker Model Runner
How to use newsletter/neural-chat-7b-v3-3-Q6_K-GGUF with Docker Model Runner:
docker model run hf.co/newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K
- Lemonade
How to use newsletter/neural-chat-7b-v3-3-Q6_K-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull newsletter/neural-chat-7b-v3-3-Q6_K-GGUF:Q6_K
Run and chat with the model
lemonade run user.neural-chat-7b-v3-3-Q6_K-GGUF-Q6_K
List all available models
lemonade list
- Atomic Chat
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
tags:
|
| 4 |
- LLMs
|
|
@@ -7,7 +8,6 @@ tags:
|
|
| 7 |
- Intel
|
| 8 |
- llama-cpp
|
| 9 |
- gguf-my-repo
|
| 10 |
-
base_model: Intel/neural-chat-7b-v3-1
|
| 11 |
model-index:
|
| 12 |
- name: neural-chat-7b-v3-3
|
| 13 |
results:
|
|
@@ -147,29 +147,43 @@ model-index:
|
|
| 147 |
# newsletter/neural-chat-7b-v3-3-Q6_K-GGUF
|
| 148 |
This model was converted to GGUF format from [`Intel/neural-chat-7b-v3-3`](https://huggingface.co/Intel/neural-chat-7b-v3-3) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
| 149 |
Refer to the [original model card](https://huggingface.co/Intel/neural-chat-7b-v3-3) for more details on the model.
|
| 150 |
-
## Use with llama.cpp
|
| 151 |
|
| 152 |
-
|
|
|
|
| 153 |
|
| 154 |
```bash
|
| 155 |
-
brew install
|
|
|
|
| 156 |
```
|
| 157 |
Invoke the llama.cpp server or the CLI.
|
| 158 |
|
| 159 |
-
CLI:
|
| 160 |
-
|
| 161 |
```bash
|
| 162 |
-
llama-cli --hf-repo newsletter/neural-chat-7b-v3-3-Q6_K-GGUF --
|
| 163 |
```
|
| 164 |
|
| 165 |
-
Server:
|
| 166 |
-
|
| 167 |
```bash
|
| 168 |
-
llama-server --hf-repo newsletter/neural-chat-7b-v3-3-Q6_K-GGUF --
|
| 169 |
```
|
| 170 |
|
| 171 |
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.
|
| 172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
```
|
| 174 |
-
|
| 175 |
```
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: Intel/neural-chat-7b-v3-3
|
| 3 |
license: apache-2.0
|
| 4 |
tags:
|
| 5 |
- LLMs
|
|
|
|
| 8 |
- Intel
|
| 9 |
- llama-cpp
|
| 10 |
- gguf-my-repo
|
|
|
|
| 11 |
model-index:
|
| 12 |
- name: neural-chat-7b-v3-3
|
| 13 |
results:
|
|
|
|
| 147 |
# newsletter/neural-chat-7b-v3-3-Q6_K-GGUF
|
| 148 |
This model was converted to GGUF format from [`Intel/neural-chat-7b-v3-3`](https://huggingface.co/Intel/neural-chat-7b-v3-3) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
| 149 |
Refer to the [original model card](https://huggingface.co/Intel/neural-chat-7b-v3-3) for more details on the model.
|
|
|
|
| 150 |
|
| 151 |
+
## Use with llama.cpp
|
| 152 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
| 153 |
|
| 154 |
```bash
|
| 155 |
+
brew install llama.cpp
|
| 156 |
+
|
| 157 |
```
|
| 158 |
Invoke the llama.cpp server or the CLI.
|
| 159 |
|
| 160 |
+
### CLI:
|
|
|
|
| 161 |
```bash
|
| 162 |
+
llama-cli --hf-repo newsletter/neural-chat-7b-v3-3-Q6_K-GGUF --hf-file neural-chat-7b-v3-3-q6_k.gguf -p "The meaning to life and the universe is"
|
| 163 |
```
|
| 164 |
|
| 165 |
+
### Server:
|
|
|
|
| 166 |
```bash
|
| 167 |
+
llama-server --hf-repo newsletter/neural-chat-7b-v3-3-Q6_K-GGUF --hf-file neural-chat-7b-v3-3-q6_k.gguf -c 2048
|
| 168 |
```
|
| 169 |
|
| 170 |
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.
|
| 171 |
|
| 172 |
+
Step 1: Clone llama.cpp from GitHub.
|
| 173 |
+
```
|
| 174 |
+
git clone https://github.com/ggerganov/llama.cpp
|
| 175 |
+
```
|
| 176 |
+
|
| 177 |
+
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
| 178 |
+
```
|
| 179 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
| 180 |
+
```
|
| 181 |
+
|
| 182 |
+
Step 3: Run inference through the main binary.
|
| 183 |
+
```
|
| 184 |
+
./llama-cli --hf-repo newsletter/neural-chat-7b-v3-3-Q6_K-GGUF --hf-file neural-chat-7b-v3-3-q6_k.gguf -p "The meaning to life and the universe is"
|
| 185 |
+
```
|
| 186 |
+
or
|
| 187 |
```
|
| 188 |
+
./llama-server --hf-repo newsletter/neural-chat-7b-v3-3-Q6_K-GGUF --hf-file neural-chat-7b-v3-3-q6_k.gguf -c 2048
|
| 189 |
```
|