Instructions to use TheDrummer/Skyfall-36B-v2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use TheDrummer/Skyfall-36B-v2-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="TheDrummer/Skyfall-36B-v2-GGUF", filename="Skyfall-36B-v2b-Q2_K.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use TheDrummer/Skyfall-36B-v2-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 TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M
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 TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M
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 TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use TheDrummer/Skyfall-36B-v2-GGUF with Ollama:
ollama run hf.co/TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M
- Unsloth Studio
How to use TheDrummer/Skyfall-36B-v2-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 TheDrummer/Skyfall-36B-v2-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 TheDrummer/Skyfall-36B-v2-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for TheDrummer/Skyfall-36B-v2-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use TheDrummer/Skyfall-36B-v2-GGUF with Docker Model Runner:
docker model run hf.co/TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M
- Lemonade
How to use TheDrummer/Skyfall-36B-v2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull TheDrummer/Skyfall-36B-v2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Skyfall-36B-v2-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +5 -0
- Skyfall-36B-v2b-Q2_K.gguf +3 -0
- Skyfall-36B-v2b-Q3_K_M.gguf +3 -0
- Skyfall-36B-v2b-Q4_K_M.gguf +3 -0
- Skyfall-36B-v2b-Q5_K_M.gguf +3 -0
- Skyfall-36B-v2b-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
Skyfall-36B-v2b-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
Skyfall-36B-v2b-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Skyfall-36B-v2b-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Skyfall-36B-v2b-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Skyfall-36B-v2b-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Skyfall-36B-v2b-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Skyfall-36B-v2b-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
Skyfall-36B-v2b-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ac7b771ef8eff1285889d21ff01858e657c2604994cd86ae2f66d1158f03236
|
| 3 |
+
size 13757369024
|
Skyfall-36B-v2b-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:754ad756c7941e5ddea56b12dfcb13d8cb029d8227a315b2a52ec429e0a02d10
|
| 3 |
+
size 17866476224
|
Skyfall-36B-v2b-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c7dc2069f190ddc18fc5596db874b28c0ec2de5a5a896daa24a8e5a7b514c5d
|
| 3 |
+
size 22372731584
|
Skyfall-36B-v2b-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cea327f08cf58f6c21441dd750ea71b71f472be615f3947ad0889558d2e9f579
|
| 3 |
+
size 26210519744
|
Skyfall-36B-v2b-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c837eaf7c655b0f7435e8bd180e8f3290a3e1c5c45d1d7d363e557a012edc4e
|
| 3 |
+
size 30288169664
|