Image-Text-to-Text
Transformers
Safetensors
qwen3_5_moe
Merge
evolutionary-merge
darwin
darwin-v5
model-mri
reasoning
advanced-reasoning
chain-of-thought
thinking
qwen3.5
qwen
Mixture of Experts
mixture-of-experts
claude-opus
distillation
multimodal
vision-language
gpqa
benchmark
open-source
apache-2.0
layer-wise-merge
moe-merge
dead-expert-revival
coding-agent
tool-calling
long-context
262k-context
conversational
Eval Results (legacy)
Instructions to use FINAL-Bench/Darwin-35B-A3B-Opus with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FINAL-Bench/Darwin-35B-A3B-Opus with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="FINAL-Bench/Darwin-35B-A3B-Opus") 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, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("FINAL-Bench/Darwin-35B-A3B-Opus") model = AutoModelForImageTextToText.from_pretrained("FINAL-Bench/Darwin-35B-A3B-Opus") 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
- vLLM
How to use FINAL-Bench/Darwin-35B-A3B-Opus with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FINAL-Bench/Darwin-35B-A3B-Opus" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-35B-A3B-Opus", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/FINAL-Bench/Darwin-35B-A3B-Opus
- SGLang
How to use FINAL-Bench/Darwin-35B-A3B-Opus 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 "FINAL-Bench/Darwin-35B-A3B-Opus" \ --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": "FINAL-Bench/Darwin-35B-A3B-Opus", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "FINAL-Bench/Darwin-35B-A3B-Opus" \ --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": "FINAL-Bench/Darwin-35B-A3B-Opus", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use FINAL-Bench/Darwin-35B-A3B-Opus with Docker Model Runner:
docker model run hf.co/FINAL-Bench/Darwin-35B-A3B-Opus
Update pipeline_tag in README.md
#3
by TahirC - opened
README.md
CHANGED
|
@@ -1,78 +1,78 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
base_model:
|
| 4 |
-
|
| 5 |
-
|
| 6 |
tags:
|
| 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 |
language:
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
pipeline_tag: text-
|
| 48 |
library_name: transformers
|
| 49 |
model-index:
|
| 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 |
# Darwin-35B-A3B-Opus
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
base_model:
|
| 4 |
+
- Qwen/Qwen3.5-35B-A3B
|
| 5 |
+
- Jackrong/Qwen3.5-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled
|
| 6 |
tags:
|
| 7 |
+
- merge
|
| 8 |
+
- evolutionary-merge
|
| 9 |
+
- darwin
|
| 10 |
+
- darwin-v5
|
| 11 |
+
- model-mri
|
| 12 |
+
- reasoning
|
| 13 |
+
- advanced-reasoning
|
| 14 |
+
- chain-of-thought
|
| 15 |
+
- thinking
|
| 16 |
+
- qwen3.5
|
| 17 |
+
- qwen
|
| 18 |
+
- moe
|
| 19 |
+
- mixture-of-experts
|
| 20 |
+
- claude-opus
|
| 21 |
+
- distillation
|
| 22 |
+
- multimodal
|
| 23 |
+
- vision-language
|
| 24 |
+
- multilingual
|
| 25 |
+
- gpqa
|
| 26 |
+
- benchmark
|
| 27 |
+
- open-source
|
| 28 |
+
- apache-2.0
|
| 29 |
+
- layer-wise-merge
|
| 30 |
+
- moe-merge
|
| 31 |
+
- dead-expert-revival
|
| 32 |
+
- coding-agent
|
| 33 |
+
- tool-calling
|
| 34 |
+
- long-context
|
| 35 |
+
- 262k-context
|
| 36 |
language:
|
| 37 |
+
- en
|
| 38 |
+
- zh
|
| 39 |
+
- ko
|
| 40 |
+
- ja
|
| 41 |
+
- de
|
| 42 |
+
- fr
|
| 43 |
+
- es
|
| 44 |
+
- ru
|
| 45 |
+
- ar
|
| 46 |
+
- multilingual
|
| 47 |
+
pipeline_tag: image-text-to-text
|
| 48 |
library_name: transformers
|
| 49 |
model-index:
|
| 50 |
+
- name: Darwin-35B-A3B-Opus
|
| 51 |
+
results:
|
| 52 |
+
- task:
|
| 53 |
+
type: text-generation
|
| 54 |
+
name: Graduate-Level Reasoning
|
| 55 |
+
dataset:
|
| 56 |
+
type: Idavidrein/gpqa
|
| 57 |
+
name: GPQA Diamond
|
| 58 |
+
config: gpqa_diamond
|
| 59 |
+
split: train
|
| 60 |
+
metrics:
|
| 61 |
+
- type: accuracy
|
| 62 |
+
value: 90
|
| 63 |
+
name: Accuracy
|
| 64 |
+
verified: false
|
| 65 |
+
- task:
|
| 66 |
+
type: text-generation
|
| 67 |
+
name: Multilingual Knowledge
|
| 68 |
+
dataset:
|
| 69 |
+
type: openai/MMMLU
|
| 70 |
+
name: MMMLU
|
| 71 |
+
metrics:
|
| 72 |
+
- type: accuracy
|
| 73 |
+
value: 85
|
| 74 |
+
name: Accuracy
|
| 75 |
+
verified: false
|
| 76 |
---
|
| 77 |
|
| 78 |
# Darwin-35B-A3B-Opus
|