Instructions to use mradermacher/SolaraV2-coder-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/SolaraV2-coder-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/SolaraV2-coder-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/SolaraV2-coder-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 mradermacher/SolaraV2-coder-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/SolaraV2-coder-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/SolaraV2-coder-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/SolaraV2-coder-GGUF:Q4_K_M
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 mradermacher/SolaraV2-coder-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/SolaraV2-coder-GGUF:Q4_K_M
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 mradermacher/SolaraV2-coder-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/SolaraV2-coder-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/SolaraV2-coder-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/SolaraV2-coder-GGUF with Ollama:
ollama run hf.co/mradermacher/SolaraV2-coder-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/SolaraV2-coder-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 mradermacher/SolaraV2-coder-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 mradermacher/SolaraV2-coder-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/SolaraV2-coder-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/SolaraV2-coder-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/SolaraV2-coder-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/SolaraV2-coder-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/SolaraV2-coder-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.SolaraV2-coder-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +12 -0
- SolaraV2-coder.IQ4_XS.gguf +3 -0
- SolaraV2-coder.Q2_K.gguf +3 -0
- SolaraV2-coder.Q3_K_L.gguf +3 -0
- SolaraV2-coder.Q3_K_M.gguf +3 -0
- SolaraV2-coder.Q3_K_S.gguf +3 -0
- SolaraV2-coder.Q4_K_M.gguf +3 -0
- SolaraV2-coder.Q4_K_S.gguf +3 -0
- SolaraV2-coder.Q5_K_M.gguf +3 -0
- SolaraV2-coder.Q5_K_S.gguf +3 -0
- SolaraV2-coder.Q6_K.gguf +3 -0
- SolaraV2-coder.Q8_0.gguf +3 -0
- SolaraV2-coder.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
SolaraV2-coder.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
SolaraV2-coder.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
SolaraV2-coder.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
SolaraV2-coder.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
SolaraV2-coder.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
SolaraV2-coder.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
SolaraV2-coder.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
SolaraV2-coder.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
SolaraV2-coder.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
SolaraV2-coder.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
SolaraV2-coder.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
SolaraV2-coder.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
SolaraV2-coder.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56f153d81836bff4961bea9c778e13e24d9db9e977ec09bdff447e30dded7385
|
| 3 |
+
size 228200896
|
SolaraV2-coder.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7653d18de49c7c573e86bb7b128afda20a91660b05cb26612b0d124dd955eaa0
|
| 3 |
+
size 218677696
|
SolaraV2-coder.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f564b7bb37112ab1f73e11e21967ae03367d6894cdc6c5272d6ef27b34a1f7f1
|
| 3 |
+
size 246325696
|
SolaraV2-coder.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b72017fb4bdef98983fd2d4a46b1d2f314f3522ac2f5d2885c4ad5dad478609
|
| 3 |
+
size 234690496
|
SolaraV2-coder.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5c870515d0907db1afd5aaab48512d795b2c21562775c01b3e922e39882e720
|
| 3 |
+
size 218677696
|
SolaraV2-coder.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca806d6ac37ab311f49c415d94188e0cb72e202c5f9efd242e9e55d73407519e
|
| 3 |
+
size 270594496
|
SolaraV2-coder.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd9b25070733e968466257cc8b02661b23bffb8c29e8d02d733c4b05158de680
|
| 3 |
+
size 259919296
|
SolaraV2-coder.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:57af18d198422fdf47bef85dc862be459efedfc706d34da54893af3a7ad22653
|
| 3 |
+
size 289948096
|
SolaraV2-coder.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa8b048398f0bec8a4033a202f56bcefb43c7d010529e3ac56483fdf7eaaa89c
|
| 3 |
+
size 283189696
|
SolaraV2-coder.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f9b34e2f86ba24f1f9d9f4ea82f494f34f48de5d7564276bdaa5a5b09bc5f3b
|
| 3 |
+
size 367362496
|
SolaraV2-coder.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e621c187d5af59c8d9c189c1899746d81b5dae22b96b7406471c5d60dc61d27
|
| 3 |
+
size 386408896
|
SolaraV2-coder.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4848687df17fa58c435026c12e85e5514a2983a5e736fd96746501b0c91a1b25
|
| 3 |
+
size 725560384
|