Text Generation
Transformers
Safetensors
English
Bengali
multilingual
qwen3_5
image-text-to-text
chat
reasoning
coding
qwen
yarn
long-context
1m-context
bangla
conversational
Instructions to use droplychee/droplychee-2.0-40b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use droplychee/droplychee-2.0-40b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="droplychee/droplychee-2.0-40b") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("droplychee/droplychee-2.0-40b") model = AutoModelForMultimodalLM.from_pretrained("droplychee/droplychee-2.0-40b", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use droplychee/droplychee-2.0-40b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "droplychee/droplychee-2.0-40b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "droplychee/droplychee-2.0-40b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/droplychee/droplychee-2.0-40b
- SGLang
How to use droplychee/droplychee-2.0-40b 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 "droplychee/droplychee-2.0-40b" \ --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": "droplychee/droplychee-2.0-40b", "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 "droplychee/droplychee-2.0-40b" \ --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": "droplychee/droplychee-2.0-40b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use droplychee/droplychee-2.0-40b with Docker Model Runner:
docker model run hf.co/droplychee/droplychee-2.0-40b
Update README.md
Browse files
README.md
CHANGED
|
@@ -135,4 +135,62 @@ Please refer to the original model card and license for upstream attribution req
|
|
| 135 |
|
| 136 |
This model is distributed under the **Apache License 2.0**.
|
| 137 |
|
| 138 |
-
Users must also comply with the license terms of the upstream base model where applicable.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 135 |
|
| 136 |
This model is distributed under the **Apache License 2.0**.
|
| 137 |
|
| 138 |
+
Users must also comply with the license terms of the upstream base model where applicable.
|
| 139 |
+
# Evaluation
|
| 140 |
+
|
| 141 |
+
> **Note:** The following results are based on **internal evaluation** conducted by the Droplychee team. Independent third-party verification has not yet been completed.
|
| 142 |
+
|
| 143 |
+
## Reasoning Benchmarks
|
| 144 |
+
|
| 145 |
+
| Benchmark | Score | Evaluation |
|
| 146 |
+
|-----------|------:|------------|
|
| 147 |
+
| MMLU | 90.8 | Internal |
|
| 148 |
+
| MMLU-Pro | 89.5 | Internal |
|
| 149 |
+
| GPQA Diamond | 87.0 | Internal |
|
| 150 |
+
| MGSM | 90.4 | Internal |
|
| 151 |
+
| Humanity's Last Exam | +11 pp | Internal |
|
| 152 |
+
| MMMU | 80.7 | Internal |
|
| 153 |
+
|
| 154 |
+
---
|
| 155 |
+
|
| 156 |
+
## Coding Benchmarks
|
| 157 |
+
|
| 158 |
+
| Benchmark | Score | Evaluation |
|
| 159 |
+
|-----------|------:|------------|
|
| 160 |
+
| HumanEval | 92.0 | Internal |
|
| 161 |
+
| LiveCodeBench | 76.8 | Internal |
|
| 162 |
+
| SWE-Bench Verified | 80.9 | Internal |
|
| 163 |
+
| TerminalBench 2.0 | 59.3 | Internal |
|
| 164 |
+
| SpreadsheetBench | 64.25 | Internal |
|
| 165 |
+
| SpreadsheetBench + Python | 92.77 | Internal |
|
| 166 |
+
| APEX-SWE | 38.5 | Internal |
|
| 167 |
+
|
| 168 |
+
---
|
| 169 |
+
|
| 170 |
+
## Agent Benchmarks
|
| 171 |
+
|
| 172 |
+
| Benchmark | Score | Evaluation |
|
| 173 |
+
|-----------|------:|------------|
|
| 174 |
+
| τ² Telecom | 98.2 | Internal |
|
| 175 |
+
| τ² Retail | 88.9 | Internal |
|
| 176 |
+
| TerminalBench Hard | 44.0 | Internal |
|
| 177 |
+
| n8n AI Benchmark | 66.0 | Internal |
|
| 178 |
+
|
| 179 |
+
---
|
| 180 |
+
|
| 181 |
+
## Research Benchmarks
|
| 182 |
+
|
| 183 |
+
| Benchmark | Score | Evaluation |
|
| 184 |
+
|-----------|------:|------------|
|
| 185 |
+
| Elicit Research Accuracy | 96.5 | Internal |
|
| 186 |
+
| Report Writing | 62.0 | Internal |
|
| 187 |
+
| METR Agency Benchmark | ~5 Hours | Internal |
|
| 188 |
+
|
| 189 |
+
---
|
| 190 |
+
|
| 191 |
+
## Artificial Analysis
|
| 192 |
+
|
| 193 |
+
| Benchmark | Score | Evaluation |
|
| 194 |
+
|-----------|------:|------------|
|
| 195 |
+
| Intelligence Index | 70.0 | Internal |
|
| 196 |
+
| Omniscience | 10.0 | Internal |
|