Transformers
PyTorch
GGUF
English
llama
text-generation-inference
unsloth
DeepSeek-R1-Distill-Llama-8B-unsloth-bnb-4bit
trl
sft
conversational
Instructions to use bufanlin/DeepSeek_R1_Main with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bufanlin/DeepSeek_R1_Main with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bufanlin/DeepSeek_R1_Main", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use bufanlin/DeepSeek_R1_Main 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 bufanlin/DeepSeek_R1_Main:F16 # Run inference directly in the terminal: llama cli -hf bufanlin/DeepSeek_R1_Main:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf bufanlin/DeepSeek_R1_Main:F16 # Run inference directly in the terminal: llama cli -hf bufanlin/DeepSeek_R1_Main:F16
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 bufanlin/DeepSeek_R1_Main:F16 # Run inference directly in the terminal: ./llama-cli -hf bufanlin/DeepSeek_R1_Main:F16
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 bufanlin/DeepSeek_R1_Main:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf bufanlin/DeepSeek_R1_Main:F16
Use Docker
docker model run hf.co/bufanlin/DeepSeek_R1_Main:F16
- LM Studio
- Jan
- Ollama
How to use bufanlin/DeepSeek_R1_Main with Ollama:
ollama run hf.co/bufanlin/DeepSeek_R1_Main:F16
- Unsloth Desktop
- Docker Model Runner
How to use bufanlin/DeepSeek_R1_Main with Docker Model Runner:
docker model run hf.co/bufanlin/DeepSeek_R1_Main:F16
- Lemonade
How to use bufanlin/DeepSeek_R1_Main with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bufanlin/DeepSeek_R1_Main:F16
Run and chat with the model
lemonade run user.DeepSeek_R1_Main-F16
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ tags:
|
|
| 4 |
- text-generation-inference
|
| 5 |
- transformers
|
| 6 |
- unsloth
|
| 7 |
-
-
|
| 8 |
- trl
|
| 9 |
- sft
|
| 10 |
license: apache-2.0
|
|
|
|
| 4 |
- text-generation-inference
|
| 5 |
- transformers
|
| 6 |
- unsloth
|
| 7 |
+
- DeepSeek-R1-Distill-Llama-8B-unsloth-bnb-4bit
|
| 8 |
- trl
|
| 9 |
- sft
|
| 10 |
license: apache-2.0
|