Instructions to use DMindAI/DMind-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DMindAI/DMind-1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DMindAI/DMind-1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("DMindAI/DMind-1", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use DMindAI/DMind-1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DMindAI/DMind-1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DMindAI/DMind-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DMindAI/DMind-1
- SGLang
How to use DMindAI/DMind-1 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 "DMindAI/DMind-1" \ --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": "DMindAI/DMind-1", "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 "DMindAI/DMind-1" \ --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": "DMindAI/DMind-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use DMindAI/DMind-1 with Docker Model Runner:
docker model run hf.co/DMindAI/DMind-1
Update handler.py
Browse files- handler.py +16 -4
handler.py
CHANGED
|
@@ -11,7 +11,19 @@ class EndpointHandler:
|
|
| 11 |
model, checkpoint=model_dir, device_map="auto"
|
| 12 |
) # 自动跨 GPU 切层
|
| 13 |
def __call__(self, data):
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
model, checkpoint=model_dir, device_map="auto"
|
| 12 |
) # 自动跨 GPU 切层
|
| 13 |
def __call__(self, data):
|
| 14 |
+
prompt = data["inputs"]
|
| 15 |
+
|
| 16 |
+
inputs = self.tokenizer(
|
| 17 |
+
prompt, return_tensors="pt"
|
| 18 |
+
).to("cuda:0") # 👈 把 input_ids/attention_mask 都放到 0 号卡
|
| 19 |
+
|
| 20 |
+
out_ids = self.model.generate(
|
| 21 |
+
**inputs,
|
| 22 |
+
max_new_tokens=256,
|
| 23 |
+
)
|
| 24 |
+
return {
|
| 25 |
+
"generated_text": self.tokenizer.decode(
|
| 26 |
+
out_ids[0], skip_special_tokens=True
|
| 27 |
+
)
|
| 28 |
+
}
|
| 29 |
+
|