Image-Text-to-Text
Transformers
Safetensors
qwen3_5
text-generation-inference
unsloth
qwen3.5
heretic
uncensored
decensored
abliterated
conversational
Instructions to use darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic") 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("darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic") model = AutoModelForMultimodalLM.from_pretrained("darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic", 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 darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic", "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/darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic
- SGLang
How to use darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic 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 "darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic" \ --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": "darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic", "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 "darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic" \ --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": "darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic", "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" } } ] } ] }' - Unsloth Studio
How to use darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic", max_seq_length=2048, ) - Docker Model Runner
How to use darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic with Docker Model Runner:
docker model run hf.co/darkc0de/XORTRON.CriminalComputing.Qwen3.5-27B-Claude-Opus-4.6-Distill-darkc0de-heretic
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,199 +1,265 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
|
|
|
| 5 |
|
| 6 |
-
#
|
| 7 |
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
|
|
|
| 10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
-
|
| 13 |
|
| 14 |
-
### Model Description
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
|
| 20 |
-
-
|
| 21 |
-
-
|
| 22 |
-
-
|
| 23 |
-
- **Model type:** [More Information Needed]
|
| 24 |
-
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
-
- **License:** [More Information Needed]
|
| 26 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
-
|
| 31 |
|
| 32 |
-
-
|
| 33 |
-
-
|
| 34 |
-
-
|
|
|
|
| 35 |
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
-
|
| 40 |
-
### Direct Use
|
| 41 |
-
|
| 42 |
-
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
-
|
| 44 |
-
[More Information Needed]
|
| 45 |
-
|
| 46 |
-
### Downstream Use [optional]
|
| 47 |
-
|
| 48 |
-
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
-
|
| 50 |
-
[More Information Needed]
|
| 51 |
-
|
| 52 |
-
### Out-of-Scope Use
|
| 53 |
-
|
| 54 |
-
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
-
|
| 56 |
-
[More Information Needed]
|
| 57 |
-
|
| 58 |
-
## Bias, Risks, and Limitations
|
| 59 |
-
|
| 60 |
-
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
-
|
| 62 |
-
[More Information Needed]
|
| 63 |
-
|
| 64 |
-
### Recommendations
|
| 65 |
-
|
| 66 |
-
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
-
|
| 68 |
-
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
-
|
| 70 |
-
## How to Get Started with the Model
|
| 71 |
-
|
| 72 |
-
Use the code below to get started with the model.
|
| 73 |
-
|
| 74 |
-
[More Information Needed]
|
| 75 |
-
|
| 76 |
-
## Training Details
|
| 77 |
-
|
| 78 |
-
### Training Data
|
| 79 |
-
|
| 80 |
-
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 81 |
-
|
| 82 |
-
[More Information Needed]
|
| 83 |
-
|
| 84 |
-
### Training Procedure
|
| 85 |
-
|
| 86 |
-
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
-
|
| 88 |
-
#### Preprocessing [optional]
|
| 89 |
-
|
| 90 |
-
[More Information Needed]
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
#### Training Hyperparameters
|
| 94 |
-
|
| 95 |
-
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
-
|
| 97 |
-
#### Speeds, Sizes, Times [optional]
|
| 98 |
-
|
| 99 |
-
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
-
|
| 101 |
-
[More Information Needed]
|
| 102 |
-
|
| 103 |
-
## Evaluation
|
| 104 |
-
|
| 105 |
-
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
-
|
| 107 |
-
### Testing Data, Factors & Metrics
|
| 108 |
-
|
| 109 |
-
#### Testing Data
|
| 110 |
-
|
| 111 |
-
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
-
|
| 113 |
-
[More Information Needed]
|
| 114 |
-
|
| 115 |
-
#### Factors
|
| 116 |
-
|
| 117 |
-
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
-
|
| 119 |
-
[More Information Needed]
|
| 120 |
-
|
| 121 |
-
#### Metrics
|
| 122 |
-
|
| 123 |
-
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
-
|
| 125 |
-
[More Information Needed]
|
| 126 |
-
|
| 127 |
-
### Results
|
| 128 |
-
|
| 129 |
-
[More Information Needed]
|
| 130 |
-
|
| 131 |
-
#### Summary
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
## Model Examination [optional]
|
| 136 |
-
|
| 137 |
-
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
-
|
| 139 |
-
[More Information Needed]
|
| 140 |
-
|
| 141 |
-
## Environmental Impact
|
| 142 |
-
|
| 143 |
-
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
-
|
| 145 |
-
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 146 |
-
|
| 147 |
-
- **Hardware Type:** [More Information Needed]
|
| 148 |
-
- **Hours used:** [More Information Needed]
|
| 149 |
-
- **Cloud Provider:** [More Information Needed]
|
| 150 |
-
- **Compute Region:** [More Information Needed]
|
| 151 |
-
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
-
|
| 153 |
-
## Technical Specifications [optional]
|
| 154 |
-
|
| 155 |
-
### Model Architecture and Objective
|
| 156 |
-
|
| 157 |
-
[More Information Needed]
|
| 158 |
-
|
| 159 |
-
### Compute Infrastructure
|
| 160 |
-
|
| 161 |
-
[More Information Needed]
|
| 162 |
-
|
| 163 |
-
#### Hardware
|
| 164 |
-
|
| 165 |
-
[More Information Needed]
|
| 166 |
-
|
| 167 |
-
#### Software
|
| 168 |
-
|
| 169 |
-
[More Information Needed]
|
| 170 |
-
|
| 171 |
-
## Citation [optional]
|
| 172 |
-
|
| 173 |
-
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
|
| 175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 176 |
|
| 177 |
-
|
| 178 |
|
| 179 |
-
|
| 180 |
|
| 181 |
-
|
| 182 |
|
| 183 |
-
|
| 184 |
|
| 185 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 186 |
|
| 187 |
-
|
| 188 |
|
| 189 |
-
|
|
|
|
|
|
|
| 190 |
|
| 191 |
-
|
| 192 |
|
| 193 |
-
|
|
|
|
|
|
|
|
|
|
| 194 |
|
| 195 |
-
[
|
| 196 |
|
| 197 |
-
## Model Card Contact
|
| 198 |
|
| 199 |
-
[More Information Needed]
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: unsloth/Qwen3.5-27B
|
| 3 |
+
tags:
|
| 4 |
+
- text-generation-inference
|
| 5 |
+
- transformers
|
| 6 |
+
- unsloth
|
| 7 |
+
- qwen3.5
|
| 8 |
+
- heretic
|
| 9 |
+
- uncensored
|
| 10 |
+
- decensored
|
| 11 |
+
- abliterated
|
| 12 |
+
license: apache-2.0
|
| 13 |
+
datasets:
|
| 14 |
+
- crownelius/Opus-4.6-Reasoning-2100x-formatted
|
| 15 |
---
|
| 16 |
+
# This is a decensored version of [TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill](https://huggingface.co/TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill), made using [Heretic](https://github.com/p-e-w/heretic) v1.2.0
|
| 17 |
|
| 18 |
+
## Abliteration parameters
|
| 19 |
|
| 20 |
+
| Parameter | Value |
|
| 21 |
+
| :-------- | :---: |
|
| 22 |
+
| **direction_index** | 54.87 |
|
| 23 |
+
| **attn.o_proj.max_weight** | 1.15 |
|
| 24 |
+
| **attn.o_proj.max_weight_position** | 42.46 |
|
| 25 |
+
| **attn.o_proj.min_weight** | 1.12 |
|
| 26 |
+
| **attn.o_proj.min_weight_distance** | 36.42 |
|
| 27 |
+
| **mlp.down_proj.max_weight** | 1.49 |
|
| 28 |
+
| **mlp.down_proj.max_weight_position** | 45.06 |
|
| 29 |
+
| **mlp.down_proj.min_weight** | 1.42 |
|
| 30 |
+
| **mlp.down_proj.min_weight_distance** | 30.83 |
|
| 31 |
|
| 32 |
+
## Performance
|
| 33 |
|
| 34 |
+
| Metric | This model | Original model ([TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill](https://huggingface.co/TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill)) |
|
| 35 |
+
| :----- | :--------: | :---------------------------: |
|
| 36 |
+
| **KL divergence** | 0.0238 | 0 *(by definition)* |
|
| 37 |
+
| **Refusals** | 3/100 | 92/100 |
|
| 38 |
|
| 39 |
+
-----
|
| 40 |
|
|
|
|
| 41 |
|
| 42 |
+
# Qwen3.5 27B x Claude Opus 4.6
|
| 43 |
|
| 44 |
+
Big thanks to [@EclipseMist](https://huggingface.co/EclipseMist) for providing [the LoRAs](https://huggingface.co/EclipseMist/Qwen3.5-27b-Opus-4.6-Distill-LoRa) for this model
|
| 45 |
|
| 46 |
+
- 🧬 Datasets:
|
| 47 |
+
- `crownelius/Opus-4.6-Reasoning-2100x-formatted`
|
| 48 |
+
- Personal Claude Data provided by [@EclipseMist](https://huggingface.co/EclipseMist)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
|
| 50 |
+
- 🏗 Base Model:
|
| 51 |
+
- `unsloth/Qwen3.5-27B`
|
| 52 |
+
|
| 53 |
+
- ⚡ Use cases:
|
| 54 |
+
- Coding
|
| 55 |
+
- Creative Writing
|
| 56 |
+
- Visual Understanding
|
| 57 |
+
- General Purpose
|
| 58 |
|
| 59 |
+
## Citations and Contributions
|
| 60 |
|
| 61 |
+
- [@EclipseMist](https://huggingface.co/EclipseMist) - Training and Data Curation
|
| 62 |
+
- [@crownelius](https://huggingface.co/crownelius) - Data Curation
|
| 63 |
+
- [@unsloth](https://huggingface.co/unsloth) - This qwen3 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
| 64 |
+
- [@Qwen](https://huggingface.co/Qwen) - Providing a fantastic, native-multimodal base model
|
| 65 |
|
| 66 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
+
# Benchmarks
|
| 69 |
+
|
| 70 |
+

|
| 71 |
+
|
| 72 |
+

|
| 73 |
+
|
| 74 |
+
| Benchmark | TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | unsloth/Qwen3.5-27B |
|
| 75 |
+
|:----------------------|:----------------------------------------------|:----------------------|
|
| 76 |
+
| arc_challenge | **0.461** | 0.435 |
|
| 77 |
+
| gpqa_diamond_zeroshot | **0.283** | **0.283** |
|
| 78 |
+
| hellaswag | **0.613** | 0.574 |
|
| 79 |
+
| mmlu | **0.233** | 0.230 |
|
| 80 |
+
| truthfulqa_mc2 | **0.610** | 0.599 |
|
| 81 |
+
| winogrande | **0.769** | 0.749 |
|
| 82 |
+
|
| 83 |
+
<details>
|
| 84 |
+
<summary>Table</summary>
|
| 85 |
+
|
| 86 |
+
| Model | Benchmark | Score | Total Questions | Total Correct |
|
| 87 |
+
|:--------------------------------------------|:----------------------|---------:|------------------:|----------------:|
|
| 88 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | arc_challenge | 0.460751 | 1172 | 540 |
|
| 89 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | gpqa_diamond_zeroshot | 0.282828 | 198 | 56 |
|
| 90 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | hellaswag | 0.612926 | 10042 | 6155 |
|
| 91 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | mmlu | 0.232944 | 14042 | 3271 |
|
| 92 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | truthfulqa_mc2 | 0.610146 | 817 | 498 |
|
| 93 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | winogrande | 0.768745 | 1267 | 974 |
|
| 94 |
+
| unsloth/Qwen3.5-27B | arc_challenge | 0.435154 | 1172 | 510 |
|
| 95 |
+
| unsloth/Qwen3.5-27B | gpqa_diamond_zeroshot | 0.282828 | 198 | 56 |
|
| 96 |
+
| unsloth/Qwen3.5-27B | hellaswag | 0.574288 | 10042 | 5767 |
|
| 97 |
+
| unsloth/Qwen3.5-27B | mmlu | 0.229597 | 14042 | 3224 |
|
| 98 |
+
| unsloth/Qwen3.5-27B | truthfulqa_mc2 | 0.599243 | 817 | 489 |
|
| 99 |
+
| unsloth/Qwen3.5-27B | winogrande | 0.749013 | 1267 | 949 |
|
| 100 |
+
|
| 101 |
+
</details>
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
## MMLU Subject Breakdown
|
| 105 |
+
|
| 106 |
+

|
| 107 |
+
|
| 108 |
+
<details>
|
| 109 |
+
<summary>Table</summary>
|
| 110 |
+
|
| 111 |
+
| Model | Subject | Benchmark | Score | Total Questions | Total Correct |
|
| 112 |
+
|:--------------------------------------------|:------------------------------------|:-----------------------------------------|---------:|------------------:|----------------:|
|
| 113 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | formal_logic | mmlu_formal_logic | 0.285714 | 126 | 36 |
|
| 114 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_european_history | mmlu_high_school_european_history | 0.224242 | 165 | 37 |
|
| 115 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_us_history | mmlu_high_school_us_history | 0.240196 | 204 | 49 |
|
| 116 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_world_history | mmlu_high_school_world_history | 0.274262 | 237 | 65 |
|
| 117 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | international_law | mmlu_international_law | 0.239669 | 121 | 29 |
|
| 118 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | jurisprudence | mmlu_jurisprudence | 0.268519 | 108 | 29 |
|
| 119 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | logical_fallacies | mmlu_logical_fallacies | 0.226994 | 163 | 37 |
|
| 120 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | moral_disputes | mmlu_moral_disputes | 0.263006 | 346 | 91 |
|
| 121 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | moral_scenarios | mmlu_moral_scenarios | 0.237989 | 895 | 213 |
|
| 122 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | philosophy | mmlu_philosophy | 0.192926 | 311 | 59 |
|
| 123 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | prehistory | mmlu_prehistory | 0.209877 | 324 | 68 |
|
| 124 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | professional_law | mmlu_professional_law | 0.245111 | 1534 | 376 |
|
| 125 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | world_religions | mmlu_world_religions | 0.321637 | 171 | 55 |
|
| 126 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | business_ethics | mmlu_business_ethics | 0.3 | 100 | 30 |
|
| 127 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | clinical_knowledge | mmlu_clinical_knowledge | 0.222642 | 265 | 59 |
|
| 128 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | college_medicine | mmlu_college_medicine | 0.208092 | 173 | 36 |
|
| 129 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | global_facts | mmlu_global_facts | 0.19 | 100 | 19 |
|
| 130 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | human_aging | mmlu_human_aging | 0.313901 | 223 | 70 |
|
| 131 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | management | mmlu_management | 0.194175 | 103 | 20 |
|
| 132 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | marketing | mmlu_marketing | 0.290598 | 234 | 68 |
|
| 133 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | medical_genetics | mmlu_medical_genetics | 0.29 | 100 | 28 |
|
| 134 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | miscellaneous | mmlu_miscellaneous | 0.259259 | 783 | 203 |
|
| 135 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | nutrition | mmlu_nutrition | 0.222222 | 306 | 68 |
|
| 136 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | professional_accounting | mmlu_professional_accounting | 0.230496 | 282 | 65 |
|
| 137 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | professional_medicine | mmlu_professional_medicine | 0.183824 | 272 | 50 |
|
| 138 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | virology | mmlu_virology | 0.283133 | 166 | 47 |
|
| 139 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | econometrics | mmlu_econometrics | 0.236842 | 114 | 27 |
|
| 140 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_geography | mmlu_high_school_geography | 0.171717 | 198 | 34 |
|
| 141 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_government_and_politics | mmlu_high_school_government_and_politics | 0.196891 | 193 | 38 |
|
| 142 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_macroeconomics | mmlu_high_school_macroeconomics | 0.205128 | 390 | 80 |
|
| 143 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_microeconomics | mmlu_high_school_microeconomics | 0.210084 | 238 | 50 |
|
| 144 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_psychology | mmlu_high_school_psychology | 0.201835 | 545 | 110 |
|
| 145 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | human_sexuality | mmlu_human_sexuality | 0.259542 | 131 | 34 |
|
| 146 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | professional_psychology | mmlu_professional_psychology | 0.25817 | 612 | 158 |
|
| 147 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | public_relations | mmlu_public_relations | 0.236364 | 110 | 26 |
|
| 148 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | security_studies | mmlu_security_studies | 0.191837 | 245 | 47 |
|
| 149 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | sociology | mmlu_sociology | 0.268657 | 201 | 54 |
|
| 150 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | us_foreign_policy | mmlu_us_foreign_policy | 0.27 | 100 | 27 |
|
| 151 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | abstract_algebra | mmlu_abstract_algebra | 0.22 | 100 | 22 |
|
| 152 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | anatomy | mmlu_anatomy | 0.2 | 135 | 27 |
|
| 153 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | astronomy | mmlu_astronomy | 0.177632 | 152 | 27 |
|
| 154 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | college_biology | mmlu_college_biology | 0.263889 | 144 | 38 |
|
| 155 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | college_chemistry | mmlu_college_chemistry | 0.19 | 100 | 19 |
|
| 156 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | college_computer_science | mmlu_college_computer_science | 0.26 | 100 | 26 |
|
| 157 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | college_mathematics | mmlu_college_mathematics | 0.21 | 100 | 21 |
|
| 158 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | college_physics | mmlu_college_physics | 0.215686 | 102 | 22 |
|
| 159 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | computer_security | mmlu_computer_security | 0.28 | 100 | 28 |
|
| 160 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | conceptual_physics | mmlu_conceptual_physics | 0.26383 | 235 | 62 |
|
| 161 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | electrical_engineering | mmlu_electrical_engineering | 0.241379 | 145 | 35 |
|
| 162 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | elementary_mathematics | mmlu_elementary_mathematics | 0.21164 | 378 | 80 |
|
| 163 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_biology | mmlu_high_school_biology | 0.190323 | 310 | 58 |
|
| 164 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_chemistry | mmlu_high_school_chemistry | 0.152709 | 203 | 31 |
|
| 165 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_computer_science | mmlu_high_school_computer_science | 0.25 | 100 | 25 |
|
| 166 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_mathematics | mmlu_high_school_mathematics | 0.211111 | 270 | 57 |
|
| 167 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_physics | mmlu_high_school_physics | 0.198675 | 151 | 29 |
|
| 168 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | high_school_statistics | mmlu_high_school_statistics | 0.152778 | 216 | 33 |
|
| 169 |
+
| TeichAI/Qwen3.5-27B-Claude-Opus-4.6-Distill | machine_learning | mmlu_machine_learning | 0.3125 | 112 | 35 |
|
| 170 |
+
| unsloth/Qwen3.5-27B | formal_logic | mmlu_formal_logic | 0.285714 | 126 | 36 |
|
| 171 |
+
| unsloth/Qwen3.5-27B | high_school_european_history | mmlu_high_school_european_history | 0.218182 | 165 | 36 |
|
| 172 |
+
| unsloth/Qwen3.5-27B | high_school_us_history | mmlu_high_school_us_history | 0.25 | 204 | 51 |
|
| 173 |
+
| unsloth/Qwen3.5-27B | high_school_world_history | mmlu_high_school_world_history | 0.270042 | 237 | 63 |
|
| 174 |
+
| unsloth/Qwen3.5-27B | international_law | mmlu_international_law | 0.239669 | 121 | 29 |
|
| 175 |
+
| unsloth/Qwen3.5-27B | jurisprudence | mmlu_jurisprudence | 0.259259 | 108 | 28 |
|
| 176 |
+
| unsloth/Qwen3.5-27B | logical_fallacies | mmlu_logical_fallacies | 0.220859 | 163 | 36 |
|
| 177 |
+
| unsloth/Qwen3.5-27B | moral_disputes | mmlu_moral_disputes | 0.248555 | 346 | 86 |
|
| 178 |
+
| unsloth/Qwen3.5-27B | moral_scenarios | mmlu_moral_scenarios | 0.237989 | 895 | 213 |
|
| 179 |
+
| unsloth/Qwen3.5-27B | philosophy | mmlu_philosophy | 0.186495 | 311 | 58 |
|
| 180 |
+
| unsloth/Qwen3.5-27B | prehistory | mmlu_prehistory | 0.216049 | 324 | 70 |
|
| 181 |
+
| unsloth/Qwen3.5-27B | professional_law | mmlu_professional_law | 0.245763 | 1534 | 377 |
|
| 182 |
+
| unsloth/Qwen3.5-27B | world_religions | mmlu_world_religions | 0.321637 | 171 | 55 |
|
| 183 |
+
| unsloth/Qwen3.5-27B | business_ethics | mmlu_business_ethics | 0.3 | 100 | 30 |
|
| 184 |
+
| unsloth/Qwen3.5-27B | clinical_knowledge | mmlu_clinical_knowledge | 0.215094 | 265 | 57 |
|
| 185 |
+
| unsloth/Qwen3.5-27B | college_medicine | mmlu_college_medicine | 0.208092 | 173 | 36 |
|
| 186 |
+
| unsloth/Qwen3.5-27B | global_facts | mmlu_global_facts | 0.18 | 100 | 18 |
|
| 187 |
+
| unsloth/Qwen3.5-27B | human_aging | mmlu_human_aging | 0.313901 | 223 | 70 |
|
| 188 |
+
| unsloth/Qwen3.5-27B | management | mmlu_management | 0.174757 | 103 | 18 |
|
| 189 |
+
| unsloth/Qwen3.5-27B | marketing | mmlu_marketing | 0.290598 | 234 | 68 |
|
| 190 |
+
| unsloth/Qwen3.5-27B | medical_genetics | mmlu_medical_genetics | 0.3 | 100 | 30 |
|
| 191 |
+
| unsloth/Qwen3.5-27B | miscellaneous | mmlu_miscellaneous | 0.240102 | 783 | 188 |
|
| 192 |
+
| unsloth/Qwen3.5-27B | nutrition | mmlu_nutrition | 0.22549 | 306 | 69 |
|
| 193 |
+
| unsloth/Qwen3.5-27B | professional_accounting | mmlu_professional_accounting | 0.234043 | 282 | 66 |
|
| 194 |
+
| unsloth/Qwen3.5-27B | professional_medicine | mmlu_professional_medicine | 0.183824 | 272 | 50 |
|
| 195 |
+
| unsloth/Qwen3.5-27B | virology | mmlu_virology | 0.283133 | 166 | 47 |
|
| 196 |
+
| unsloth/Qwen3.5-27B | econometrics | mmlu_econometrics | 0.236842 | 114 | 27 |
|
| 197 |
+
| unsloth/Qwen3.5-27B | high_school_geography | mmlu_high_school_geography | 0.176768 | 198 | 35 |
|
| 198 |
+
| unsloth/Qwen3.5-27B | high_school_government_and_politics | mmlu_high_school_government_and_politics | 0.196891 | 193 | 38 |
|
| 199 |
+
| unsloth/Qwen3.5-27B | high_school_macroeconomics | mmlu_high_school_macroeconomics | 0.202564 | 390 | 79 |
|
| 200 |
+
| unsloth/Qwen3.5-27B | high_school_microeconomics | mmlu_high_school_microeconomics | 0.210084 | 238 | 50 |
|
| 201 |
+
| unsloth/Qwen3.5-27B | high_school_psychology | mmlu_high_school_psychology | 0.192661 | 545 | 105 |
|
| 202 |
+
| unsloth/Qwen3.5-27B | human_sexuality | mmlu_human_sexuality | 0.259542 | 131 | 34 |
|
| 203 |
+
| unsloth/Qwen3.5-27B | professional_psychology | mmlu_professional_psychology | 0.25 | 612 | 153 |
|
| 204 |
+
| unsloth/Qwen3.5-27B | public_relations | mmlu_public_relations | 0.218182 | 110 | 24 |
|
| 205 |
+
| unsloth/Qwen3.5-27B | security_studies | mmlu_security_studies | 0.187755 | 245 | 46 |
|
| 206 |
+
| unsloth/Qwen3.5-27B | sociology | mmlu_sociology | 0.243781 | 201 | 49 |
|
| 207 |
+
| unsloth/Qwen3.5-27B | us_foreign_policy | mmlu_us_foreign_policy | 0.28 | 100 | 28 |
|
| 208 |
+
| unsloth/Qwen3.5-27B | abstract_algebra | mmlu_abstract_algebra | 0.22 | 100 | 22 |
|
| 209 |
+
| unsloth/Qwen3.5-27B | anatomy | mmlu_anatomy | 0.185185 | 135 | 25 |
|
| 210 |
+
| unsloth/Qwen3.5-27B | astronomy | mmlu_astronomy | 0.177632 | 152 | 27 |
|
| 211 |
+
| unsloth/Qwen3.5-27B | college_biology | mmlu_college_biology | 0.256944 | 144 | 37 |
|
| 212 |
+
| unsloth/Qwen3.5-27B | college_chemistry | mmlu_college_chemistry | 0.2 | 100 | 20 |
|
| 213 |
+
| unsloth/Qwen3.5-27B | college_computer_science | mmlu_college_computer_science | 0.26 | 100 | 26 |
|
| 214 |
+
| unsloth/Qwen3.5-27B | college_mathematics | mmlu_college_mathematics | 0.21 | 100 | 21 |
|
| 215 |
+
| unsloth/Qwen3.5-27B | college_physics | mmlu_college_physics | 0.215686 | 102 | 22 |
|
| 216 |
+
| unsloth/Qwen3.5-27B | computer_security | mmlu_computer_security | 0.28 | 100 | 28 |
|
| 217 |
+
| unsloth/Qwen3.5-27B | conceptual_physics | mmlu_conceptual_physics | 0.26383 | 235 | 62 |
|
| 218 |
+
| unsloth/Qwen3.5-27B | electrical_engineering | mmlu_electrical_engineering | 0.241379 | 145 | 35 |
|
| 219 |
+
| unsloth/Qwen3.5-27B | elementary_mathematics | mmlu_elementary_mathematics | 0.208995 | 378 | 79 |
|
| 220 |
+
| unsloth/Qwen3.5-27B | high_school_biology | mmlu_high_school_biology | 0.177419 | 310 | 55 |
|
| 221 |
+
| unsloth/Qwen3.5-27B | high_school_chemistry | mmlu_high_school_chemistry | 0.152709 | 203 | 31 |
|
| 222 |
+
| unsloth/Qwen3.5-27B | high_school_computer_science | mmlu_high_school_computer_science | 0.25 | 100 | 25 |
|
| 223 |
+
| unsloth/Qwen3.5-27B | high_school_mathematics | mmlu_high_school_mathematics | 0.211111 | 270 | 57 |
|
| 224 |
+
| unsloth/Qwen3.5-27B | high_school_physics | mmlu_high_school_physics | 0.198675 | 151 | 29 |
|
| 225 |
+
| unsloth/Qwen3.5-27B | high_school_statistics | mmlu_high_school_statistics | 0.152778 | 216 | 33 |
|
| 226 |
+
| unsloth/Qwen3.5-27B | machine_learning | mmlu_machine_learning | 0.3125 | 112 | 35 |
|
| 227 |
+
|
| 228 |
+
</details>
|
| 229 |
|
| 230 |
+
---
|
| 231 |
|
| 232 |
+
# The following best practices recommended by Qwen
|
| 233 |
|
| 234 |
+
## Best Practices
|
| 235 |
|
| 236 |
+
To achieve optimal performance, we recommend the following settings:
|
| 237 |
|
| 238 |
+
1. **Sampling Parameters**:
|
| 239 |
+
- We suggest using the following sets of sampling parameters depending on the mode and task type:
|
| 240 |
+
- **Thinking mode for general tasks**:
|
| 241 |
+
`temperature=1.0`, `top_p=0.95`, `top_k=20`, `min_p=0.0`, `presence_penalty=1.5`, `repetition_penalty=1.0`
|
| 242 |
+
- **Thinking mode for precise coding tasks (e.g., WebDev)**:
|
| 243 |
+
`temperature=0.6`, `top_p=0.95`, `top_k=20`, `min_p=0.0`, `presence_penalty=0.0`, `repetition_penalty=1.0`
|
| 244 |
+
- **Instruct (or non-thinking) mode for general tasks**:
|
| 245 |
+
`temperature=0.7`, `top_p=0.8`, `top_k=20`, `min_p=0.0`, `presence_penalty=1.5`, `repetition_penalty=1.0`
|
| 246 |
+
- **Instruct (or non-thinking) mode for reasoning tasks**:
|
| 247 |
+
`temperature=1.0`, `top_p=1.0`, `top_k=40`, `min_p=0.0`, `presence_penalty=2.0`, `repetition_penalty=1.0`
|
| 248 |
+
- For supported frameworks, you can adjust the `presence_penalty` parameter between 0 and 2 to reduce endless repetitions. However, using a higher value may occasionally result in language mixing and a slight decrease in model performance.
|
| 249 |
|
| 250 |
+
2. **Adequate Output Length**: We recommend using an output length of 32,768 tokens for most queries. For benchmarking on highly complex problems, such as those found in math and programming competitions, we suggest setting the max output length to 81,920 tokens. This provides the model with sufficient space to generate detailed and comprehensive responses, thereby enhancing its overall performance.
|
| 251 |
|
| 252 |
+
3. **Standardize Output Format**: We recommend using prompts to standardize model outputs when benchmarking.
|
| 253 |
+
- **Math Problems**: Include "Please reason step by step, and put your final answer within \boxed{}." in the prompt.
|
| 254 |
+
- **Multiple-Choice Questions**: Add the following JSON structure to the prompt to standardize responses: "Please show your choice in the `answer` field with only the choice letter, e.g., `"answer": "C"`."
|
| 255 |
|
| 256 |
+
4. **No Thinking Content in History**: In multi-turn conversations, the historical model output should only include the final output part and does not need to include the thinking content. It is implemented in the provided chat template in Jinja2. However, for frameworks that do not directly use the Jinja2 chat template, it is up to the developers to ensure that the best practice is followed.
|
| 257 |
|
| 258 |
+
5. **Long Video Understanding**: To optimize inference efficiency for plain text and images, the `size` parameter in the released `video_preprocessor_config.json` is conservatively configured. It is recommended to set the `longest_edge` parameter in the video_preprocessor_config file to 469,762,048 (corresponding to 224k video tokens) to enable higher frame-rate sampling for hour-scale videos and thereby achieve superior performance. For example,
|
| 259 |
+
```json
|
| 260 |
+
{"longest_edge": 469762048, "shortest_edge": 4096}
|
| 261 |
+
```
|
| 262 |
|
| 263 |
+
Alternatively, override the default values via engine startup parameters. For implementation details, refer to: [vLLM](https://github.com/vllm-project/vllm/pull/34330) / [SGLang](https://github.com/sgl-project/sglang/pull/18467).
|
| 264 |
|
|
|
|
| 265 |
|
|
|