Text Generation
Transformers
GGUF
Merge
mergekit
lazymergekit
BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated
BoltMonkey/DreadMix
TensorBlock
GGUF
conversational
Instructions to use tensorblock/SuperNeuralDreadDevil-8b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/SuperNeuralDreadDevil-8b-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/SuperNeuralDreadDevil-8b-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/SuperNeuralDreadDevil-8b-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/SuperNeuralDreadDevil-8b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/SuperNeuralDreadDevil-8b-GGUF", filename="SuperNeuralDreadDevil-8b-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use tensorblock/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/SuperNeuralDreadDevil-8b-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/SuperNeuralDreadDevil-8b-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/SuperNeuralDreadDevil-8b-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/SuperNeuralDreadDevil-8b-GGUF:Q2_K
- SGLang
How to use tensorblock/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/SuperNeuralDreadDevil-8b-GGUF with Ollama:
ollama run hf.co/tensorblock/SuperNeuralDreadDevil-8b-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-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/SuperNeuralDreadDevil-8b-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/SuperNeuralDreadDevil-8b-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/SuperNeuralDreadDevil-8b-GGUF:Q2_K
- Lemonade
How to use tensorblock/SuperNeuralDreadDevil-8b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/SuperNeuralDreadDevil-8b-GGUF:Q2_K
Run and chat with the model
lemonade run user.SuperNeuralDreadDevil-8b-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- SuperNeuralDreadDevil-8b-Q3_K_L.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q3_K_M.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q3_K_S.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q4_0.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q4_K_M.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q4_K_S.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q5_0.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q5_K_M.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q5_K_S.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q6_K.gguf +0 -3
- SuperNeuralDreadDevil-8b-Q8_0.gguf +0 -3
SuperNeuralDreadDevil-8b-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:026c8216fc2c1d7d47cd71f8b22557c316a6ef6f45983c3a927d4e5dc06a296f
|
| 3 |
-
size 4321957536
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:305bab91a581faf43fade8a85172351cba43605d793be65a2914f86f15eb2e96
|
| 3 |
-
size 4018919072
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e9a7ccb2caa1b978ba12caa223c3357c4cbf8e7fdd539341181218ebc5902beb
|
| 3 |
-
size 3664500384
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f4771af268cb13f9339ca3a687c5abb473601ac79c48af513d91bbba84d664f8
|
| 3 |
-
size 4661212832
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:bdfda300ea4ef886b536ea28002d4474d387dd3432f112142cb94b9a322549ff
|
| 3 |
-
size 4920735392
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b745421c130b6a9e6e14556f8f9633d0d23254ca6ca4cce8e1bad95649ef2c5f
|
| 3 |
-
size 4692670112
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f1f3956305c7ebec852c0560f86a0f022d48baa038a0a6f2f1b49d1a7b1104cf
|
| 3 |
-
size 5599295136
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c1c305358d1381de8a26541ba9b52013534ffd017b9f4e5734809f883ce43831
|
| 3 |
-
size 5732988576
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a18609a19f5f08dc99d42797b717d9ca37507989fef864887c4fe914dd38c563
|
| 3 |
-
size 5599295136
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a908ec9e722f34019ebea2afe812d6f4520a0b88d0417d8f115a1299e1bd1105
|
| 3 |
-
size 6596007584
|
|
|
|
|
|
|
|
|
|
|
|
SuperNeuralDreadDevil-8b-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:75d42ac329916cd913e9911a6277b65864958de457fcb238293f9457afa490d6
|
| 3 |
-
size 8540772000
|
|
|
|
|
|
|
|
|
|
|
|