Text Generation
GGUF
English
Prototype
8X3B MOE
mixture of experts
reasoning
thinking
thoughts
deepseek
Mixture of Experts
context 128k
Llama 3.2 MOE
creative
creative writing
general usage
problem solving
brainstorming
solve riddles
fiction writing
plot generation
sub-plot generation
story generation
scene continue
storytelling
fiction story
story
writing
fiction
roleplaying
llama 3.2
mergekit
Merge
llama-3
llama-3.2
conversational
Instructions to use DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf", filename="DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-IQ4_XS.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 DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S # Run inference directly in the terminal: llama-cli -hf DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S # Run inference directly in the terminal: llama-cli -hf DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
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 DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S # Run inference directly in the terminal: ./llama-cli -hf DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
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 DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
Use Docker
docker model run hf.co/DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
- LM Studio
- Jan
- vLLM
How to use DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-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": "DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
- Ollama
How to use DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf with Ollama:
ollama run hf.co/DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
- Unsloth Studio
How to use DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-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 DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-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 DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf to start chatting
- Atomic Chat new
- Docker Model Runner
How to use DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf with Docker Model Runner:
docker model run hf.co/DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
- Lemonade
How to use DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DavidAU/DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf:Q4_K_S
Run and chat with the model
lemonade run user.DeepThought-MOE-8X3B-R1-Llama-3.2-Reasoning-18B-gguf-Q4_K_S
List all available models
lemonade list
Upload DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q5_k_s.gguf with huggingface_hub
Browse files
.gitattributes
CHANGED
|
@@ -38,3 +38,4 @@ bubbles.jpg filter=lfs diff=lfs merge=lfs -text
|
|
| 38 |
DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q4_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 38 |
DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q4_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q5_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
DeepThought-MOE-8X3B-R1-Llama-3.2-18B-D_AU-Q5_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8389e5eeb6ea30fcf402a01cefc569296ab84061ed2c4ae7416b32bc3410684d
|
| 3 |
+
size 12782485440
|