Instructions to use tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF", filename="KoSOLAR-10.7B-merge-v3.2-Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/KoSOLAR-10.7B-merge-v3.2-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 tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_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 tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_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 tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF with Ollama:
ollama run hf.co/tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/KoSOLAR-10.7B-merge-v3.2-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 tensorblock/KoSOLAR-10.7B-merge-v3.2-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 tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K
- Lemonade
How to use tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/KoSOLAR-10.7B-merge-v3.2-GGUF:Q2_K
Run and chat with the model
lemonade run user.KoSOLAR-10.7B-merge-v3.2-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- KoSOLAR-10.7B-merge-v3.2-Q3_K_L.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q3_K_M.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q3_K_S.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q4_0.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q4_K_M.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q4_K_S.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q5_0.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q5_K_M.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q5_K_S.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q6_K.gguf +0 -3
- KoSOLAR-10.7B-merge-v3.2-Q8_0.gguf +0 -3
KoSOLAR-10.7B-merge-v3.2-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:735b1832fa3ca1e7849f1883251654324aa742b7e149cf66570b3b8dfa37c212
|
| 3 |
-
size 5696858816
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:42d84ed900c8ce1e66873648b62c995252fcb1bf6018b82e503704ce59561a89
|
| 3 |
-
size 5241776832
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d751b6f29b96f30670ded4d80212a5281cfa4572bd6e1a1bc28e772bddb5c004
|
| 3 |
-
size 4710673088
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5fcc8ab7d0f610cb30e30f9130dc9add407bf77709419caa7f120cf1c52275e4
|
| 3 |
-
size 6123367104
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d4132e9c9bac4a5e54a7a7098d2e542f473d21770f68bc3c3c34f5507d07550a
|
| 3 |
-
size 6512650944
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f34cef2344c405ce16dfb3f20827fc23f30f2e33fb40c264fd0489a77748da9d
|
| 3 |
-
size 6169504448
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4b4179eafc9978aa38f69573a8fa402b57ee4723554257af7c61163d4fe47c00
|
| 3 |
-
size 7452961472
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:67969c40c013b49af10b13ee066886fe9c9cf1d9c512f98f3184799f776f9528
|
| 3 |
-
size 7653501632
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b09736ffedfca225c67c24a96f52c7e4426974b9dc432047ec62c93d52754741
|
| 3 |
-
size 7452961472
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:63d9f4516fee6620ada05dc79aa6204128977166011f1adcc4e88307064a3b91
|
| 3 |
-
size 8865655488
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-10.7B-merge-v3.2-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9b568539d3282b0a4806b88c125db28ec3becdf588b156c0c55837d5cab0cd70
|
| 3 |
-
size 11482376896
|
|
|
|
|
|
|
|
|
|
|
|