Instructions to use tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF", filename="KoSOLAR-v0.2-gugutypus-10.7B-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-v0.2-gugutypus-10.7B-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-v0.2-gugutypus-10.7B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-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-v0.2-gugutypus-10.7B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-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-v0.2-gugutypus-10.7B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-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-v0.2-gugutypus-10.7B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF:Q2_K
- Ollama
How to use tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF with Ollama:
ollama run hf.co/tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-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-v0.2-gugutypus-10.7B-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-v0.2-gugutypus-10.7B-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-v0.2-gugutypus-10.7B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF:Q2_K
- Lemonade
How to use tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/KoSOLAR-v0.2-gugutypus-10.7B-GGUF:Q2_K
Run and chat with the model
lemonade run user.KoSOLAR-v0.2-gugutypus-10.7B-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- KoSOLAR-v0.2-gugutypus-10.7B-Q3_K_L.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q3_K_M.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q3_K_S.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q4_0.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q4_K_M.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q4_K_S.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q5_0.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q5_K_M.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q5_K_S.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q6_K.gguf +0 -3
- KoSOLAR-v0.2-gugutypus-10.7B-Q8_0.gguf +0 -3
KoSOLAR-v0.2-gugutypus-10.7B-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7f0afb1076ca895c0d18e09025243ce198bd26118159ebe5a7784feca7a3ce71
|
| 3 |
-
size 5696843584
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2b230c3f9c6978dd2b3184f1b9f50ff38bd6769f612fa5c07b3bb6925104151e
|
| 3 |
-
size 5241761600
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4cc8b0b251f6fbb9adac652e36e16c29fdc9574a439a415e926a8fb095708fc5
|
| 3 |
-
size 4710657856
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4c394177fe2561cf4ee0b34de31b5d0ac66e201083eca42e253c8f7a38f1f8ba
|
| 3 |
-
size 6123351872
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a02bc3ce99d2a211ba1458e234715bb3096471678ec24aebade3aac51a74148e
|
| 3 |
-
size 6512635712
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a139ec055cbf14c4adbf591f34175cca127c13adde3842c6cb520136bd39042e
|
| 3 |
-
size 6169489216
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:fefb05cf8d0653ab50a126f0822b4fd51db918a0687044d8a418619f000c8512
|
| 3 |
-
size 7452946240
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:fdb9c09b16fa5ef21faa58fadfd708a5590455baba3618f8f366506fac829336
|
| 3 |
-
size 7653486400
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4b2cb16258f32ecf8b5fa0f4a9244aba4b23ce292f9937f048a7b882a360ecbb
|
| 3 |
-
size 7452946240
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5bb75d822f872ca50d2fb036271bb42f7e634ad7dfc22e2348dfac46e4631a1f
|
| 3 |
-
size 8865640256
|
|
|
|
|
|
|
|
|
|
|
|
KoSOLAR-v0.2-gugutypus-10.7B-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:399a0dc16ec61ca2f35ce7bf8a03a80f9f18ec744ea798d995045f7f0a3c2978
|
| 3 |
-
size 11482361664
|
|
|
|
|
|
|
|
|
|
|
|