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
File size: 7,581 Bytes
2c4f909 ff1b952 ae6d527 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 ff1b952 1869ca7 78bbe05 c3416d6 1819b71 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | ---
license: apache-2.0
base_model:
- DavidAU/Qwen3.6-40B-Claude-4.6-Opus-Deckard-Heretic-Uncensored-Thinking
library_name: transformers
pipeline_tag: text-generation
tags:
- text-generation
- chat
- multilingual
- reasoning
- coding
- qwen
- yarn
- long-context
- 1m-context
- bangla
language:
- en
- bn
- multilingual
license_name: apache-2.0
---
# π§ Droplychee-2.0-40B
> A multilingual long-context language model developed by **Droplychee**, built upon the Qwen family and extended through full fine-tuning and architectural modifications.
## Overview
Droplychee-2.0-40B is a decoder-only transformer model designed for multilingual reasoning, software engineering, long-context understanding, and instruction following. The model is derived from the Qwen family and further adapted through full fine-tuning using curated multilingual instruction datasets.
The project focuses on delivering strong performance in English and Bangla while maintaining support for over 40 languages.
## Key Features
- π Supports 40+ languages
- π Maximum context length of 1,000,000 tokens
- π§΅ YaRN-based context extension
- π» Optimized for software engineering and coding tasks
- π§ Advanced reasoning and instruction following
- π Long-document analysis and summarization
- π€ Agent-oriented workflows and tool use
## Model Details
| Property | Value |
|----------|-------|
| Model Name | Droplychee-2.0-40B |
| Organization | Droplychee |
| Base Model | DavidAU/Qwen3.6-40B-Claude-4.6-Opus-Deckard-Heretic-Uncensored-Thinking |
| Architecture | Decoder-only Transformer |
| Training Method | Full Fine-Tuning |
| Context Length | 1,000,000 tokens |
| Context Extension | YaRN |
| Languages | 40+ |
| License | Apache-2.0 |
## Architecture
Droplychee-2.0-40B is derived from the Qwen architecture with additional modifications introduced during development.
Key architectural characteristics include:
- Decoder-only transformer architecture
- Rotary Position Embeddings (RoPE)
- YaRN-based long-context extension
- Optimized KV-cache handling
- Flash Attention support (where available in the serving stack)
- Full supervised instruction fine-tuning
## Training
The model was fine-tuned using a curated multilingual instruction corpus emphasizing:
- General reasoning
- Coding and software engineering
- Mathematics
- Multilingual dialogue
- Long-context comprehension
- Agent-oriented tasks
Approximate training statistics:
| Item | Value |
|------|-------|
| High-quality instruction pairs | ~500K |
| Training tokens | ~100Mβ1B |
| Training Platform | Unsloth Studio |
| GPU Hardware | 3Γ NVIDIA RTX PRO 6000 Blackwell Server Edition |
## Context Extension
Droplychee-2.0-40B supports a maximum context length of **1,000,000 tokens** through **YaRN (Yet another RoPE extensioN)**.
YaRN extends the effective context window while preserving compatibility with Rotary Position Embeddings. Long-context performance may vary depending on the inference engine, hardware resources, and serving configuration.
## Supported Languages
The model is optimized for multilingual instruction following and has been evaluated primarily on English and Bangla. It also supports more than 40 languages, including Hindi, Arabic, Chinese, Japanese, Korean, French, German, Spanish, Portuguese, and Russian.
## Intended Use
Recommended applications include:
- Conversational AI
- Coding assistants
- Research assistance
- Educational tools
- Long-document summarization
- Retrieval-Augmented Generation (RAG)
- AI agents
- Software engineering workflows
## Limitations
- Outputs may contain factual inaccuracies or hallucinations.
- Performance varies across languages and domains.
- Independent third-party evaluation has not yet been completed.
- Users should verify outputs before relying on them for high-impact decisions.
## Responsible Use
This model is intended for research and general-purpose AI applications. Users are responsible for ensuring compliance with applicable laws, regulations, and ethical guidelines.
## Attribution
This project is derived from:
**DavidAU/Qwen3.6-40B-Claude-4.6-Opus-Deckard-Heretic-Uncensored-Thinking**
Please refer to the original model card and license for upstream attribution requirements.
## License
This model is distributed under the **Apache License 2.0**.
Users must also comply with the license terms of the upstream base model where applicable.
# Evaluation
> **Note:** The following results are based on **internal evaluation** conducted by the Droplychee team. Independent third-party verification has not yet been completed.
## Reasoning Benchmarks
| Benchmark | Score | Evaluation |
|-----------|------:|------------|
| MMLU | 90.8 | Internal |
| MMLU-Pro | 89.5 | Internal |
| GPQA Diamond | 87.0 | Internal |
| MGSM | 90.4 | Internal |
| Humanity's Last Exam | +11 pp | Internal |
| MMMU | 80.7 | Internal |
---
## Coding Benchmarks
| Benchmark | Score | Evaluation |
|-----------|------:|------------|
| HumanEval | 92.0 | Internal |
| LiveCodeBench | 76.8 | Internal |
| SWE-Bench Verified | 80.9 | Internal |
| TerminalBench 2.0 | 59.3 | Internal |
| SpreadsheetBench | 64.25 | Internal |
| SpreadsheetBench + Python | 92.77 | Internal |
| APEX-SWE | 38.5 | Internal |
---
## Agent Benchmarks
| Benchmark | Score | Evaluation |
|-----------|------:|------------|
| ΟΒ² Telecom | 98.2 | Internal |
| ΟΒ² Retail | 88.9 | Internal |
| TerminalBench Hard | 44.0 | Internal |
| n8n AI Benchmark | 66.0 | Internal |
---
## Research Benchmarks
| Benchmark | Score | Evaluation |
|-----------|------:|------------|
| Elicit Research Accuracy | 96.5 | Internal |
| Report Writing | 62.0 | Internal |
| METR Agency Benchmark | ~5 Hours | Internal |
---
## Artificial Analysis
| Benchmark | Score | Evaluation |
|-----------|------:|------------|
| Intelligence Index | 70.0 | Internal |
| Omniscience | 10.0 | Internal |
> **Disclaimer:** These benchmark results are derived from the Droplychee team's internal evaluation pipeline. Results may vary depending on hardware, inference engine, prompt format, evaluation methodology, and software versions. Independent third-party verification is planned for future releases.
For the latest documentation, technical reports, and official releases, please visit the official Droplychee GitHub repository.
https://github.com/DropLychee/droplychee-2.0-40b
droplychee-2.0-40b/
β
βββ README.md
βββ LICENSE
βββ MODEL_CARD.md
βββ TECHNICAL_REPORT.md
βββ SYSTEM_CARD.md
βββ EVALUATION.md
βββ CITATION.cff
βββ CHANGELOG.md
βββ CONTRIBUTING.md
βββ SECURITY.md
βββ CODE_OF_CONDUCT.md
βββ docs/
β βββ architecture.md
β βββ training.md
β βββ datasets.md
β βββ tokenizer.md
β βββ inference.md
β βββ benchmarks.md
β βββ deployment.md
β βββ safety.md
β βββ governance.md
β βββ roadmap.md
βββ assets/
β βββ logo.png
β βββ banner.png
β βββ architecture.svg
β βββ benchmark_charts/
βββ examples/
β βββ transformers.py
β βββ vllm.py
β βββ llama_cpp.py
β βββ openai_api.py
βββ scripts/
β βββ evaluate.py
β βββ benchmark.py
β βββ convert_gguf.py
β βββ export.py
βββ paper/
βββ Droplychee-2.0-40B_Technical_Report.pdf
βββ Droplychee-2.0-40B_Technical_Report.md
βββ references.bib |