Text Generation
Transformers
GGUF
PEFT
Trained with AutoTrain
text-generation-inference
TensorBlock
GGUF
conversational
Instructions to use tensorblock/neural-coder_gorilla-finetuned-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/neural-coder_gorilla-finetuned-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/neural-coder_gorilla-finetuned-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/neural-coder_gorilla-finetuned-GGUF", device_map="auto") - PEFT
How to use tensorblock/neural-coder_gorilla-finetuned-GGUF with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/neural-coder_gorilla-finetuned-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/neural-coder_gorilla-finetuned-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/neural-coder_gorilla-finetuned-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/neural-coder_gorilla-finetuned-GGUF:Q2_K
- SGLang
How to use tensorblock/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/neural-coder_gorilla-finetuned-GGUF with Ollama:
ollama run hf.co/tensorblock/neural-coder_gorilla-finetuned-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-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/neural-coder_gorilla-finetuned-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/neural-coder_gorilla-finetuned-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/neural-coder_gorilla-finetuned-GGUF:Q2_K
- Lemonade
How to use tensorblock/neural-coder_gorilla-finetuned-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/neural-coder_gorilla-finetuned-GGUF:Q2_K
Run and chat with the model
lemonade run user.neural-coder_gorilla-finetuned-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Remove .gguf files (keep Q2_K.gguf)
Browse files- gorilla-finetuned-Q3_K_L.gguf +0 -3
- gorilla-finetuned-Q3_K_M.gguf +0 -3
- gorilla-finetuned-Q3_K_S.gguf +0 -3
- gorilla-finetuned-Q4_0.gguf +0 -3
- gorilla-finetuned-Q4_K_M.gguf +0 -3
- gorilla-finetuned-Q4_K_S.gguf +0 -3
- gorilla-finetuned-Q5_0.gguf +0 -3
- gorilla-finetuned-Q5_K_M.gguf +0 -3
- gorilla-finetuned-Q5_K_S.gguf +0 -3
- gorilla-finetuned-Q6_K.gguf +0 -3
- gorilla-finetuned-Q8_0.gguf +0 -3
gorilla-finetuned-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5c10ad09515c8b34f6165ea2b8a10e4e82f3f372b1d00646661a5c816cb1d9f1
|
| 3 |
-
size 3734013312
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:407ccbfb2bd5edb6e0c6303aaa1ec7c116a7ea1137cb5f3114623904a36d58c7
|
| 3 |
-
size 3448931712
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b42549e7d06049c9a0b0d758fbe459bdbadd70bf677d856bf3a978b9daf4b865
|
| 3 |
-
size 3125757312
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d18b5d06f736915d55c1a2e7e9c13c7362d4c5faec3a26ddc11fd91e2245c2e8
|
| 3 |
-
size 3986504576
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:be0bc469d1ec9f29f0bfe6edaf8716e591ceb48c81a9904d6ab3e1e0f22501fd
|
| 3 |
-
size 4209802112
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:36c5265c38ce2edb4d4834c88f5d5763468cd43e287a760a9db0d81ed71fe5f8
|
| 3 |
-
size 4011801472
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4624fb02e9f412160435caddee242ed38b3223f70a8ac6131b70694c84213316
|
| 3 |
-
size 4796619648
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c28217ed5d43155a010ad9ca019dee6d0da8d92e14a1cf9f40786b3653564449
|
| 3 |
-
size 4911651712
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:47ed57247f739949ddb1393f203c4bad6c285eb2e8cbff42f2aaf766f6048dbb
|
| 3 |
-
size 4796619648
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:dcafd2099ed29d60af156ee4776df0717efbbaa3b5c4244d233592b35b6f5459
|
| 3 |
-
size 5657366912
|
|
|
|
|
|
|
|
|
|
|
|
gorilla-finetuned-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e9b0481843d3befcfe480e0d8bfa635eebbaa2afe0189a0cc00ff7f16d133ed0
|
| 3 |
-
size 7326180736
|
|
|
|
|
|
|
|
|
|
|
|