Text Generation
Transformers
GGUF
English
Korean
lg-ai
exaone
exaone-3.5
TensorBlock
GGUF
conversational
Instructions to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K
- SGLang
How to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF with Ollama:
ollama run hf.co/tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-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/EXAONE-3.5-32B-Instruct-Llamafied-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K
- Lemonade
How to use tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/EXAONE-3.5-32B-Instruct-Llamafied-GGUF:Q2_K
Run and chat with the model
lemonade run user.EXAONE-3.5-32B-Instruct-Llamafied-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Remove .gguf files (keep Q2_K.gguf)
Browse files- EXAONE-3.5-32B-Instruct-Llamafied-Q3_K_L.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q3_K_M.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q3_K_S.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q4_0.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q4_K_M.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q4_K_S.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q5_0.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q5_K_M.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q5_K_S.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q6_K.gguf +0 -3
- EXAONE-3.5-32B-Instruct-Llamafied-Q8_0.gguf +0 -3
EXAONE-3.5-32B-Instruct-Llamafied-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9a8e7c6a04eba26013328d5f879d669b860b5e109f1feee356d3bd3634a85022
|
| 3 |
-
size 16795872224
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:56697a47c270fe96b559d5e44a3727fd98e305cf97dad14bae2979c78353c65d
|
| 3 |
-
size 15493671904
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:86656ff27ba51361ce56399834360b20c862a2384fe61e7cc3ea0ea1e911fe8c
|
| 3 |
-
size 13962750944
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4e0eb634cf66b10c290249700221627f8b2b069337bc99ded193838997befbd4
|
| 3 |
-
size 18143456224
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:879057b6ee59248b4d5684cb86642e0910ac79c6327bd5711aea93720bb79ab2
|
| 3 |
-
size 19343748064
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a649db13ed59ec209802e136457c3219accd70b8bf5f409b9c48277838773930
|
| 3 |
-
size 18286324704
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:122181b6f55d859264b3d5d66eed52c547168a45df850759a2c560d1f74625d5
|
| 3 |
-
size 22078237664
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7332ee2e4f0c53a417e772d34a59f91b8cf046e17f50df7d3a7f539c0d314f48
|
| 3 |
-
size 22696569824
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3ec06e36e579e5f0b7c89803ff6385cbf7e9701eae1c67a23b786d7d3afafcf9
|
| 3 |
-
size 22078237664
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:70ca97556d20f8f11df7e5f4ee77b838ed7a74d27497f8c66dfcfb221a6e94c2
|
| 3 |
-
size 26258942944
|
|
|
|
|
|
|
|
|
|
|
|
EXAONE-3.5-32B-Instruct-Llamafied-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:435d87723ba37f7b444e103b88f6d938ce42d33c178dbb692ee65be6df041ddc
|
| 3 |
-
size 34009557984
|
|
|
|
|
|
|
|
|
|
|
|