Instructions to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF", filename="HyperCLOVAX-SEED-Text-Instruct-0.5B-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-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/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-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/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K
- SGLang
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with Ollama:
ollama run hf.co/tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-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/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-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/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-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/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K
- Lemonade
How to use tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF:Q2_K
Run and chat with the model
lemonade run user.naver-hyperclovax_HyperCLOVAX-SEED-Text-Instruct-0.5B-GGUF-Q2_K
List all available models
lemonade list
Keep Q2_K/Q3_K_M gguf only
Browse files- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q3_K_L.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q3_K_S.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q4_0.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q4_K_M.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q4_K_S.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q5_0.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q5_K_M.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q5_K_S.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q6_K.gguf +0 -3
- HyperCLOVAX-SEED-Text-Instruct-0.5B-Q8_0.gguf +0 -3
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2433d160aaf3679a78d1153005ebb7e3dd4f425379217d0ab3d0d6bf57f8e89a
|
| 3 |
-
size 337216384
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a7e8cb5d534e577d5fd7b6f11938f6e8c9de149310ddbfc931173953c2ccdc22
|
| 3 |
-
size 291799936
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:041c93157ea3765a411dab02f34376425ee352ababa9511fc6121589e138e497
|
| 3 |
-
size 351961984
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e5e444f6f25de086dd2eab7f9d872d1f8e1cd8691bbd3e13eccce1f2dd47a717
|
| 3 |
-
size 368182144
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:59a470604ea22572b4159d56ed868f79e8367e01f35cef8d83097e57762ebfe3
|
| 3 |
-
size 354059136
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4e90194577ac852fd25b7f16064f17d1ad0c7de996b0a69b6e7487ba884eb7f2
|
| 3 |
-
size 408585088
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4395dc5359c67c24e084c9f3cd58ff83b219a78c224d715c0151f1d1616ed4a2
|
| 3 |
-
size 416940928
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d1b9188d91da675c3da88b3e967f7d1aa1915db14739082b084ce1a8849d047e
|
| 3 |
-
size 408585088
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:534d109f153b40b9c6878dadd63a39427eadfa838b10caf657ff08e3d229ec25
|
| 3 |
-
size 468747136
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:36160e7451991371d1386198e05bac0b1fe2aa050524edfb861c9b57dbac31bb
|
| 3 |
-
size 605881216
|
|
|
|
|
|
|
|
|
|
|
|