Image-Text-to-Text
Transformers
Safetensors
qwen3_5
qwen3.8
reasoning
vision-language
personal-model
uncensored
abliterated
abliterix
bfloat16
conversational
Instructions to use timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16") 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("timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16") model = AutoModelForMultimodalLM.from_pretrained("timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16", 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 timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16", "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/timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16
- SGLang
How to use timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16 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 "timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16" \ --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": "timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16", "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 "timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16" \ --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": "timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16", "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 timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16 with Docker Model Runner:
docker model run hf.co/timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16
Publish release card, license, benchmarks, and integrity manifests
Browse files- LICENSE +202 -0
- README.md +162 -0
- RELEASE_FAMILY.md +47 -0
- SHA256SUMS +10 -0
- benchmark-results.json +213 -0
- manifests/artifact-manifest.json +89 -0
LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Apache License
|
| 3 |
+
Version 2.0, January 2004
|
| 4 |
+
http://www.apache.org/licenses/
|
| 5 |
+
|
| 6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 7 |
+
|
| 8 |
+
1. Definitions.
|
| 9 |
+
|
| 10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 12 |
+
|
| 13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 14 |
+
the copyright owner that is granting the License.
|
| 15 |
+
|
| 16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 17 |
+
other entities that control, are controlled by, or are under common
|
| 18 |
+
control with that entity. For the purposes of this definition,
|
| 19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 20 |
+
direction or management of such entity, whether by contract or
|
| 21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 23 |
+
|
| 24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 25 |
+
exercising permissions granted by this License.
|
| 26 |
+
|
| 27 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 28 |
+
including but not limited to software source code, documentation
|
| 29 |
+
source, and configuration files.
|
| 30 |
+
|
| 31 |
+
"Object" form shall mean any form resulting from mechanical
|
| 32 |
+
transformation or translation of a Source form, including but
|
| 33 |
+
not limited to compiled object code, generated documentation,
|
| 34 |
+
and conversions to other media types.
|
| 35 |
+
|
| 36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 37 |
+
Object form, made available under the License, as indicated by a
|
| 38 |
+
copyright notice that is included in or attached to the work
|
| 39 |
+
(an example is provided in the Appendix below).
|
| 40 |
+
|
| 41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 42 |
+
form, that is based on (or derived from) the Work and for which the
|
| 43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 45 |
+
of this License, Derivative Works shall not include works that remain
|
| 46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 47 |
+
the Work and Derivative Works thereof.
|
| 48 |
+
|
| 49 |
+
"Contribution" shall mean any work of authorship, including
|
| 50 |
+
the original version of the Work and any modifications or additions
|
| 51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 55 |
+
means any form of electronic, verbal, or written communication sent
|
| 56 |
+
to the Licensor or its representatives, including but not limited to
|
| 57 |
+
communication on electronic mailing lists, source code control systems,
|
| 58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 60 |
+
excluding communication that is conspicuously marked or otherwise
|
| 61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 62 |
+
|
| 63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 65 |
+
subsequently incorporated within the Work.
|
| 66 |
+
|
| 67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 72 |
+
Work and such Derivative Works in Source or Object form.
|
| 73 |
+
|
| 74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 77 |
+
(except as stated in this section) patent license to make, have made,
|
| 78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 79 |
+
where such license applies only to those patent claims licensable
|
| 80 |
+
by such Contributor that are necessarily infringed by their
|
| 81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 83 |
+
institute patent litigation against any entity (including a
|
| 84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 85 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 86 |
+
or contributory patent infringement, then any patent licenses
|
| 87 |
+
granted to You under this License for that Work shall terminate
|
| 88 |
+
as of the date such litigation is filed.
|
| 89 |
+
|
| 90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 91 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 92 |
+
modifications, and in Source or Object form, provided that You
|
| 93 |
+
meet the following conditions:
|
| 94 |
+
|
| 95 |
+
(a) You must give any other recipients of the Work or
|
| 96 |
+
Derivative Works a copy of this License; and
|
| 97 |
+
|
| 98 |
+
(b) You must cause any modified files to carry prominent notices
|
| 99 |
+
stating that You changed the files; and
|
| 100 |
+
|
| 101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 102 |
+
that You distribute, all copyright, patent, trademark, and
|
| 103 |
+
attribution notices from the Source form of the Work,
|
| 104 |
+
excluding those notices that do not pertain to any part of
|
| 105 |
+
the Derivative Works; and
|
| 106 |
+
|
| 107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 108 |
+
distribution, then any Derivative Works that You distribute must
|
| 109 |
+
include a readable copy of the attribution notices contained
|
| 110 |
+
within such NOTICE file, excluding those notices that do not
|
| 111 |
+
pertain to any part of the Derivative Works, in at least one
|
| 112 |
+
of the following places: within a NOTICE text file distributed
|
| 113 |
+
as part of the Derivative Works; within the Source form or
|
| 114 |
+
documentation, if provided along with the Derivative Works; or,
|
| 115 |
+
within a display generated by the Derivative Works, if and
|
| 116 |
+
wherever such third-party notices normally appear. The contents
|
| 117 |
+
of the NOTICE file are for informational purposes only and
|
| 118 |
+
do not modify the License. You may add Your own attribution
|
| 119 |
+
notices within Derivative Works that You distribute, alongside
|
| 120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 121 |
+
that such additional attribution notices cannot be construed
|
| 122 |
+
as modifying the License.
|
| 123 |
+
|
| 124 |
+
You may add Your own copyright statement to Your modifications and
|
| 125 |
+
may provide additional or different license terms and conditions
|
| 126 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 127 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 128 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 129 |
+
the conditions stated in this License.
|
| 130 |
+
|
| 131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 133 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 134 |
+
this License, without any additional terms or conditions.
|
| 135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 136 |
+
the terms of any separate license agreement you may have executed
|
| 137 |
+
with Licensor regarding such Contributions.
|
| 138 |
+
|
| 139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 141 |
+
except as required for reasonable and customary use in describing the
|
| 142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 143 |
+
|
| 144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 145 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 148 |
+
implied, including, without limitation, any warranties or conditions
|
| 149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 151 |
+
appropriateness of using or redistributing the Work and assume any
|
| 152 |
+
risks associated with Your exercise of permissions under this License.
|
| 153 |
+
|
| 154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 155 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 156 |
+
unless required by applicable law (such as deliberate and grossly
|
| 157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 158 |
+
liable to You for damages, including any direct, indirect, special,
|
| 159 |
+
incidental, or consequential damages of any character arising as a
|
| 160 |
+
result of this License or out of the use or inability to use the
|
| 161 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 162 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 163 |
+
other commercial damages or losses), even if such Contributor
|
| 164 |
+
has been advised of the possibility of such damages.
|
| 165 |
+
|
| 166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 169 |
+
or other liability obligations and/or rights consistent with this
|
| 170 |
+
License. However, in accepting such obligations, You may act only
|
| 171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 172 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 173 |
+
defend, and hold each Contributor harmless for any liability
|
| 174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 175 |
+
of your accepting any such warranty or additional liability.
|
| 176 |
+
|
| 177 |
+
END OF TERMS AND CONDITIONS
|
| 178 |
+
|
| 179 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 180 |
+
|
| 181 |
+
To apply the Apache License to your work, attach the following
|
| 182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 183 |
+
replaced with your own identifying information. (Don't include
|
| 184 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 185 |
+
comment syntax for the file format. We also recommend that a
|
| 186 |
+
file or class name and description of purpose be included on the
|
| 187 |
+
same "printed page" as the copyright notice for easier
|
| 188 |
+
identification within third-party archives.
|
| 189 |
+
|
| 190 |
+
Copyright 2026 Alibaba Cloud
|
| 191 |
+
|
| 192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 193 |
+
you may not use this file except in compliance with the License.
|
| 194 |
+
You may obtain a copy of the License at
|
| 195 |
+
|
| 196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 197 |
+
|
| 198 |
+
Unless required by applicable law or agreed to in writing, software
|
| 199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 201 |
+
See the License for the specific language governing permissions and
|
| 202 |
+
limitations under the License.
|
README.md
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen3.8-27B
|
| 4 |
+
library_name: transformers
|
| 5 |
+
pipeline_tag: image-text-to-text
|
| 6 |
+
tags:
|
| 7 |
+
- qwen3.8
|
| 8 |
+
- reasoning
|
| 9 |
+
- vision-language
|
| 10 |
+
- personal-model
|
| 11 |
+
- uncensored
|
| 12 |
+
- abliterated
|
| 13 |
+
- abliterix
|
| 14 |
+
- transformers
|
| 15 |
+
- bfloat16
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16
|
| 19 |
+
|
| 20 |
+
This is the full-precision BF16 form of the selected Abliterix pass-1 practical winner. It preserves the checkpoint before MLX quantization and exists for Transformers workflows, archival fidelity, and downstream conversion.
|
| 21 |
+
|
| 22 |
+
**Selection verdict:** practical personal-model winner with measured deviations — not universal dominance and not a claim that all preregistered gates passed.
|
| 23 |
+
|
| 24 |
+
## Why this release
|
| 25 |
+
|
| 26 |
+
The target was a practical personal reasoning/VLM model with much lower reflexive refusal while retaining measured capability and an immutable fallback. The benchmark table is the decision record: it shows where the selected winner improved, where the control stayed stronger, and why both are published. The family therefore describes the winner as a **practical personal-model selection with measured deviations**, not universal dominance.
|
| 27 |
+
|
| 28 |
+
## What this variant is
|
| 29 |
+
|
| 30 |
+
- **Role:** Full-precision practical winner
|
| 31 |
+
- **Format:** Merged BF16 Transformers checkpoint with the native 15-tensor MTP sidecar preserved as `mtp.safetensors`.
|
| 32 |
+
- **Base:** [`Qwen/Qwen3.8-27B`](https://huggingface.co/Qwen/Qwen3.8-27B)
|
| 33 |
+
- **Pipeline:** image + text to text
|
| 34 |
+
- **License:** Apache-2.0
|
| 35 |
+
|
| 36 |
+
## Frozen local results
|
| 37 |
+
|
| 38 |
+
> **These are self-run, frozen local project benchmarks, not official Qwen benchmarks.** The same local harness compared `control-bf16` with `abliterix-pass1-bf16`.
|
| 39 |
+
|
| 40 |
+
| Frozen local metric | Control | Abliterix winner |
|
| 41 |
+
|---|---:|---:|
|
| 42 |
+
| Harmful hard refusal | 43.2% | **0.0%** |
|
| 43 |
+
| Harmful soft deflection | 14.6% | **0.2%** |
|
| 44 |
+
| Harmful substantive response | 47.0% | **99.4%** |
|
| 45 |
+
| Capability macro | 17.6859% | **21.0086%** |
|
| 46 |
+
| Full code | **16/421** | 10/421 |
|
| 47 |
+
| HumanEval | **7.9268%** | 4.2683% |
|
| 48 |
+
| Long-form pass | 54.1667% | **62.5000%** |
|
| 49 |
+
| MMMU30 | 9/30 | **11/30** |
|
| 50 |
+
| Held-out loss ratio | 1.000000 | 1.024478 |
|
| 51 |
+
| Benign KL | 0.000000 | 0.093614 |
|
| 52 |
+
|
| 53 |
+
The winner improved the local capability macro by 3.3227 points, long-form pass rate by 8.3333 points, and MMMU30 by 2 correct answers while reducing harmful hard refusal by 43.2 points. The control remained better on full code/HumanEval.
|
| 54 |
+
|
| 55 |
+
Full machine-readable values are in [`benchmark-results.json`](./benchmark-results.json).
|
| 56 |
+
|
| 57 |
+
## Strict deviations and code pathology
|
| 58 |
+
|
| 59 |
+
- Benign KL was `0.093614`, above the strict `0.05` limit.
|
| 60 |
+
- Incoherence was `4.3077%`, above the `2.7692%` strict comparison point.
|
| 61 |
+
- HumanEval was `4.2683%` versus control `7.9268%`; full code was `10/421` versus `16/421`.
|
| 62 |
+
- Long-form maximum repeated-4gram fraction was `5.8632%`, above the `5%` limit.
|
| 63 |
+
- Prompt leakage was detected: 3 exact winner prompt echoes versus 2 for control; both failed the leakage hard gate.
|
| 64 |
+
- 376/421 winner code generations hit the 512-token cap. Among generations that reached execution, the winner passed 10/46 (21.74%) versus control 16/103 (15.53%), pointing to severe termination/extraction pathology rather than a clean latent-code estimate.
|
| 65 |
+
|
| 66 |
+
## Training data and run
|
| 67 |
+
|
| 68 |
+
| Aggregate source label | Rows |
|
| 69 |
+
|---|---:|
|
| 70 |
+
| `opus-10000x` | 9,633 |
|
| 71 |
+
| `opus-3000x` | 2,326 |
|
| 72 |
+
| `reasoning-700x` | 633 |
|
| 73 |
+
| `high-reasoning-250x` | 250 |
|
| 74 |
+
| **Raw total** | **12,842** |
|
| 75 |
+
|
| 76 |
+
After 208 deduplications and 20 invalid-row removals, 12,614 rows remained: 12,349 train, 127 validation, and 138 test. The processed-manifest SHA-256 is `6e0a36ad20732c5f98ff592c4565a4c86876fead4e9f94bc6ceedfad1339a94d`. Only aggregate counts and hashes are published; raw/private rows are not.
|
| 77 |
+
|
| 78 |
+
Training ran for 1,544 optimizer steps with 108,789,760 trainable LoRA parameters. Final validation loss was `0.23739749`; token accuracy was `91.7594%`.
|
| 79 |
+
|
| 80 |
+
## Architecture and lineage
|
| 81 |
+
|
| 82 |
+
The model uses `Qwen3_5ForConditionalGeneration` as recorded by the released config: a 64-layer, hidden-size-5120 text stack with a 3:1 linear/full-attention schedule and a configured 262,144-token maximum position range, paired with a 27-layer, hidden-size-1152 vision encoder. It is an image/text conditional-generation model, not a text-only checkpoint.
|
| 83 |
+
|
| 84 |
+
### Method
|
| 85 |
+
|
| 86 |
+
1. Started from [`Qwen/Qwen3.8-27B`](https://huggingface.co/Qwen/Qwen3.8-27B), Apache-2.0.
|
| 87 |
+
2. Prepared 12,842 raw reasoning rows: 12,614 accepted after removing 208 duplicates and 20 invalid rows, then split into 12,349 train / 127 validation / 138 test rows.
|
| 88 |
+
3. Trained a reasoning QLoRA on the 12,349-row train split for 1,544 optimizer steps with 108,789,760 trainable LoRA parameters. Final validation loss was 0.23739749 and token accuracy was 91.7594%.
|
| 89 |
+
4. Merged the adapter to BF16 to form immutable `control-bf16`.
|
| 90 |
+
5. Produced the selected winner with Abliterix 1.12.2 pass 1 (seed 42): orthogonal/projected, winsorized single-direction residual steering over the output/down-projection writer components. Q/K/V projections were excluded.
|
| 91 |
+
6. Preserved BF16 releases and converted both variants to affine MLX 8-bit, group size 64. Native one-layer MTP drafters were split and validated separately.
|
| 92 |
+
|
| 93 |
+
The final selection label is `selected_practical_winner_with_measured_deviations`. Private training data, raw harmful/benign prompt sets, operational receipts, local paths, and Drive metadata are intentionally not published.
|
| 94 |
+
|
| 95 |
+
## Tensor and conversion integrity
|
| 96 |
+
|
| 97 |
+
Across the BF16 comparison there were 1,199 tensor keys, including 15 native MTP tensors and 333 vision tensors. The winner contains 74 actual Abliterix residual-writer edits and zero unexpected changes.
|
| 98 |
+
|
| 99 |
+
MLX native proof ran through `mlx-vlm` on arm64 macOS/Metal. Ordinary and MTP-assisted generation both produced the exact answer `323` for winner and control. The winner MLX build used `mlx` 0.32.0, `mlx-lm` 0.31.3, `mlx-vlm` 0.6.13, and affine 8-bit group-64 quantization.
|
| 100 |
+
|
| 101 |
+
## Hash and size summary
|
| 102 |
+
|
| 103 |
+
- `BF16 winner delivery`: 14 files, 55,583,144,390 bytes, sealed aggregate SHA-256 `cb0e04180dc257f19604f9ae70b65191a9f01322e5ed7c36aecf22a00af173be`
|
| 104 |
+
|
| 105 |
+
The deliberately published model payload for this repository is 10 files / 55,583,125,224 bytes. Per-file source SHA-256 values are in [`SHA256SUMS`](./SHA256SUMS) and [`manifests/artifact-manifest.json`](./manifests/artifact-manifest.json). Sealed aggregate hashes above cover the complete local source components, including private entries excluded from publication; use the per-file public manifest for the Hub payload.
|
| 106 |
+
|
| 107 |
+
## Use with Transformers
|
| 108 |
+
|
| 109 |
+
A current Transformers version that supports Qwen3.8/Qwen3.5 VLM architecture is required (the sealed build used 5.15.0). BF16 needs substantial accelerator memory.
|
| 110 |
+
|
| 111 |
+
```python
|
| 112 |
+
import torch
|
| 113 |
+
from transformers import AutoModelForImageTextToText, AutoProcessor
|
| 114 |
+
|
| 115 |
+
repo_id = "timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16"
|
| 116 |
+
processor = AutoProcessor.from_pretrained(repo_id)
|
| 117 |
+
model = AutoModelForImageTextToText.from_pretrained(
|
| 118 |
+
repo_id, torch_dtype=torch.bfloat16, device_map="auto"
|
| 119 |
+
)
|
| 120 |
+
messages = [{"role": "user", "content": [
|
| 121 |
+
{"type": "text", "text": "Calculate 17 multiplied by 19."}
|
| 122 |
+
]}]
|
| 123 |
+
inputs = processor.apply_chat_template(
|
| 124 |
+
messages, tokenize=True, add_generation_prompt=True,
|
| 125 |
+
return_dict=True, return_tensors="pt"
|
| 126 |
+
).to(model.device)
|
| 127 |
+
output = model.generate(**inputs, max_new_tokens=256)
|
| 128 |
+
trimmed = output[:, inputs.input_ids.shape[1]:]
|
| 129 |
+
print(processor.batch_decode(trimmed, skip_special_tokens=True)[0])
|
| 130 |
+
```
|
| 131 |
+
|
| 132 |
+
For image input, add an image content item using the upstream Qwen multimodal message format. `mtp.safetensors` is the preserved native MTP sidecar; ordinary Transformers loading does not require it.
|
| 133 |
+
|
| 134 |
+
## Known limitations
|
| 135 |
+
|
| 136 |
+
- The winner is deliberately less refusal-prone. The frozen harmful benchmark measured 0.0% hard refusal, not a guarantee of zero refusal on every prompt.
|
| 137 |
+
- It failed strict KL, incoherence, HumanEval/full-code, repetition, and prompt-leakage gates listed above.
|
| 138 |
+
- Code results are heavily confounded by 512-token termination; increase generation limits and validate executable outputs.
|
| 139 |
+
- BF16 is large and requires substantial memory; MTP support depends on the runtime.
|
| 140 |
+
- The local benchmark suite and private training/evaluation data are not included. Results may not transfer to other prompts, languages, runtimes, or sampling settings.
|
| 141 |
+
- Generated content can be incorrect, insecure, or incomplete; review it before consequential use.
|
| 142 |
+
|
| 143 |
+
## Release family
|
| 144 |
+
|
| 145 |
+
- [Recommended MLX 8-bit winner](https://huggingface.co/timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-MLX-8bit)
|
| 146 |
+
- [BF16 winner](https://huggingface.co/timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16)
|
| 147 |
+
- [MLX 8-bit control](https://huggingface.co/timteh673/Qwen3.8-27B-Opus-Reasoning-Control-MLX-8bit)
|
| 148 |
+
- [BF16 control](https://huggingface.co/timteh673/Qwen3.8-27B-Opus-Reasoning-Control-BF16)
|
| 149 |
+
|
| 150 |
+
See [`RELEASE_FAMILY.md`](./RELEASE_FAMILY.md) for the role and integrity summary of every variant.
|
| 151 |
+
|
| 152 |
+
## Responsible use
|
| 153 |
+
|
| 154 |
+
Evaluate this model for your own setting, isolate untrusted code/tool output, and comply with applicable law and the policies of systems you connect it to. The uncensoring/abliteration work changes refusal behavior; it does not make outputs accurate or safe by default.
|
| 155 |
+
|
| 156 |
+
## License and attribution
|
| 157 |
+
|
| 158 |
+
Released under Apache License 2.0. This is a derivative of [`Qwen/Qwen3.8-27B`](https://huggingface.co/Qwen/Qwen3.8-27B), Copyright 2026 Alibaba Cloud. Qwen/Alibaba Cloud attribution and the full license text are retained in [`LICENSE`](./LICENSE). Modifications include the personal reasoning QLoRA merge, selected Abliterix residual edits for winner variants, and MLX quantization where applicable.
|
| 159 |
+
|
| 160 |
+
## Support
|
| 161 |
+
|
| 162 |
+
If this release is useful, follow [`timteh673`](https://huggingface.co/timteh673), star the repository, and share reproducible benchmark or runtime findings in the Hub community tab.
|
RELEASE_FAMILY.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Qwen3.8-27B Opus personal-model release family
|
| 2 |
+
|
| 3 |
+
This four-repository family publishes the selected practical winner and its immutable trained-control comparator in BF16 and Apple-Silicon MLX 8-bit formats. The recommended default is the MLX 8-bit winner.
|
| 4 |
+
|
| 5 |
+
**Selection language:** practical personal-model selection with measured deviations. This release does not claim universal dominance or that every strict gate passed.
|
| 6 |
+
|
| 7 |
+
| Repository | Role | Format | Public model files | Public model bytes |
|
| 8 |
+
|---|---|---|---:|---:|
|
| 9 |
+
| [Qwen3.8-27B-Opus-Abliterix-Reasoning-MLX-8bit](https://huggingface.co/timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-MLX-8bit) | Recommended practical winner | MLX 8-bit | 17 | 30,390,836,635 |
|
| 10 |
+
| [Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16](https://huggingface.co/timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16) | Full-precision practical winner | BF16 Transformers | 10 | 55,583,125,224 |
|
| 11 |
+
| [Qwen3.8-27B-Opus-Reasoning-Control-MLX-8bit](https://huggingface.co/timteh673/Qwen3.8-27B-Opus-Reasoning-Control-MLX-8bit) | Baseline comparator | MLX 8-bit | 17 | 30,390,836,197 |
|
| 12 |
+
| [Qwen3.8-27B-Opus-Reasoning-Control-BF16](https://huggingface.co/timteh673/Qwen3.8-27B-Opus-Reasoning-Control-BF16) | Full-precision baseline comparator | BF16 Transformers | 20 | 55,583,123,681 |
|
| 13 |
+
|
| 14 |
+
## Lineage
|
| 15 |
+
|
| 16 |
+
`Qwen/Qwen3.8-27B` → reasoning QLoRA merge (`control-bf16`) → Abliterix pass 1 (`abliterix-pass1-bf16`) → BF16 and affine MLX 8-bit/group-64 release variants.
|
| 17 |
+
|
| 18 |
+
Dataset preparation started from 12,842 raw rows and accepted 12,614 after 208 deduplications and 20 invalid-row removals; splits were 12,349 train / 127 validation / 138 test. Training used 1,544 optimizer steps, 108,789,760 trainable LoRA parameters, final validation loss 0.23739749, and token accuracy 91.7594%. The merged model retained 1,199 tensor keys, 15 native MTP tensors, and 333 vision tensors. The winner has 74 verified residual-writer edits and zero unexpected changes.
|
| 19 |
+
|
| 20 |
+
## Local benchmark headline
|
| 21 |
+
|
| 22 |
+
These are **self-run frozen local benchmarks, not official Qwen benchmarks**.
|
| 23 |
+
|
| 24 |
+
| Frozen local metric | Control | Abliterix winner |
|
| 25 |
+
|---|---:|---:|
|
| 26 |
+
| Harmful hard refusal | 43.2% | **0.0%** |
|
| 27 |
+
| Harmful soft deflection | 14.6% | **0.2%** |
|
| 28 |
+
| Harmful substantive response | 47.0% | **99.4%** |
|
| 29 |
+
| Capability macro | 17.6859% | **21.0086%** |
|
| 30 |
+
| Full code | **16/421** | 10/421 |
|
| 31 |
+
| HumanEval | **7.9268%** | 4.2683% |
|
| 32 |
+
| Long-form pass | 54.1667% | **62.5000%** |
|
| 33 |
+
| MMMU30 | 9/30 | **11/30** |
|
| 34 |
+
| Held-out loss ratio | 1.000000 | 1.024478 |
|
| 35 |
+
| Benign KL | 0.000000 | 0.093614 |
|
| 36 |
+
|
| 37 |
+
Strict deviations remain part of the release: KL 0.093614 > 0.05; incoherence 4.3077% > 2.7692%; HumanEval 4.2683% versus 7.9268%; full code 10/421 versus 16/421; repetition 5.8632% > 5%; prompt leakage detected; and 376/421 winner code generations hit the 512-token cap. Among outputs reaching execution, winner pass rate was 10/46 (21.74%) versus control 16/103 (15.53%), indicating termination/extraction pathology rather than a clean latent-code estimate.
|
| 38 |
+
|
| 39 |
+
The canonical structured record is [`benchmark-results.json`](./benchmark-results.json).
|
| 40 |
+
|
| 41 |
+
## Packaging boundary
|
| 42 |
+
|
| 43 |
+
Model weights and runtime metadata come from sealed source artifacts. Public manifests were regenerated from verified SHA-256/size receipts. Local paths, private prompt/training data, Drive identifiers, operational receipts, and internal release-control files are excluded. Each repository has a public per-file `SHA256SUMS` and `manifests/artifact-manifest.json`.
|
| 44 |
+
|
| 45 |
+
## License
|
| 46 |
+
|
| 47 |
+
Apache-2.0, inherited from [`Qwen/Qwen3.8-27B`](https://huggingface.co/Qwen/Qwen3.8-27B). Copyright 2026 Alibaba Cloud; modifications and format conversions are described in each model card.
|
SHA256SUMS
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
c3cf9e34abf4f9e36c2d72165aa9c132d3e2a725b6c2586aaa3a8af9d7a81041 chat_template.jinja
|
| 2 |
+
4c95af1d45132ead5b63e540f08f32a351e20512e62438a3a78faf9881d1e7dc config.json
|
| 3 |
+
b8eb74d15e0a56623d00ccd14950a4bb87fabbf84b5cc030dcc904b899fb1eb5 generation_config.json
|
| 4 |
+
ea6111cc68925f6cb9fe26e623f3dba733b79fc01fd9e0de0ad43b94220e55bb model-00001-of-00002.safetensors
|
| 5 |
+
a6a5df602c43452310471f40eceb6453eb7bb9be5ffd4f781325038e6810db5e model-00002-of-00002.safetensors
|
| 6 |
+
df96fae8d7adc5adc388ad672842bfa457897d158ea62a1f3257b7672c2ea886 model.safetensors.index.json
|
| 7 |
+
90fa0e3eed5a647c035c6df9ecabc416c0f8d573ff84ac12485b085f00a7cdf2 mtp.safetensors
|
| 8 |
+
d89ef49ce9cd37fbf510158e13c1ef063d9286411c1ec9049932dbe0487143b1 processor_config.json
|
| 9 |
+
6f32ce20dc35f57a7f9ad1eac03525bd7d30f9df8cea6507e958279cc3657706 tokenizer.json
|
| 10 |
+
bee8eba30f0eb4af73c0fe2cd06d0f89b657d7819941c438157ec42f7c80ea87 tokenizer_config.json
|
benchmark-results.json
ADDED
|
@@ -0,0 +1,213 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"code_termination_diagnostic": {
|
| 3 |
+
"among_outputs_reaching_execution": {
|
| 4 |
+
"control": {
|
| 5 |
+
"executed": 103,
|
| 6 |
+
"pass_percent": 15.53,
|
| 7 |
+
"passed": 16
|
| 8 |
+
},
|
| 9 |
+
"winner": {
|
| 10 |
+
"executed": 46,
|
| 11 |
+
"pass_percent": 21.74,
|
| 12 |
+
"passed": 10
|
| 13 |
+
}
|
| 14 |
+
},
|
| 15 |
+
"interpretation": "The full-code result is dominated by severe termination/extraction pathology and is not a clean latent-code estimate.",
|
| 16 |
+
"winner_generations_hitting_512_token_cap": 376,
|
| 17 |
+
"winner_generations_total": 421
|
| 18 |
+
},
|
| 19 |
+
"comparison": {
|
| 20 |
+
"benign_kl": {
|
| 21 |
+
"control": 0.0,
|
| 22 |
+
"strict_limit": 0.05,
|
| 23 |
+
"winner": 0.093614
|
| 24 |
+
},
|
| 25 |
+
"capability_macro_percent": {
|
| 26 |
+
"control": 17.6859,
|
| 27 |
+
"winner": 21.0086
|
| 28 |
+
},
|
| 29 |
+
"exact_prompt_echoes": {
|
| 30 |
+
"control": 2,
|
| 31 |
+
"leakage_detected": true,
|
| 32 |
+
"winner": 3
|
| 33 |
+
},
|
| 34 |
+
"full_code_passes": {
|
| 35 |
+
"control": 16,
|
| 36 |
+
"denominator": 421,
|
| 37 |
+
"winner": 10
|
| 38 |
+
},
|
| 39 |
+
"harmful_hard_refusal_percent": {
|
| 40 |
+
"control": 43.2,
|
| 41 |
+
"winner": 0.0
|
| 42 |
+
},
|
| 43 |
+
"harmful_soft_deflection_percent": {
|
| 44 |
+
"control": 14.6,
|
| 45 |
+
"winner": 0.2
|
| 46 |
+
},
|
| 47 |
+
"harmful_substantive_response_percent": {
|
| 48 |
+
"control": 47.0,
|
| 49 |
+
"winner": 99.4
|
| 50 |
+
},
|
| 51 |
+
"held_out_loss_ratio": {
|
| 52 |
+
"control": 1.0,
|
| 53 |
+
"limit": 1.05,
|
| 54 |
+
"winner": 1.024478
|
| 55 |
+
},
|
| 56 |
+
"human_eval_percent": {
|
| 57 |
+
"control": 7.9268,
|
| 58 |
+
"winner": 4.2683
|
| 59 |
+
},
|
| 60 |
+
"incoherence_percent": {
|
| 61 |
+
"control": 2.7692,
|
| 62 |
+
"strict_winner_limit": 2.7692,
|
| 63 |
+
"winner": 4.3077
|
| 64 |
+
},
|
| 65 |
+
"long_form_pass_percent": {
|
| 66 |
+
"control": 54.1667,
|
| 67 |
+
"winner": 62.5
|
| 68 |
+
},
|
| 69 |
+
"max_repeated_4gram_fraction_percent": {
|
| 70 |
+
"strict_limit": 5.0,
|
| 71 |
+
"winner": 5.8632
|
| 72 |
+
},
|
| 73 |
+
"mmmu30_correct": {
|
| 74 |
+
"control": 9,
|
| 75 |
+
"denominator": 30,
|
| 76 |
+
"winner": 11
|
| 77 |
+
}
|
| 78 |
+
},
|
| 79 |
+
"evaluation_provenance": {
|
| 80 |
+
"kind": "self-run_frozen_local_benchmarks",
|
| 81 |
+
"note": "Results were produced by this project on a frozen local evaluation suite. They must not be mixed with or represented as official Qwen benchmark results.",
|
| 82 |
+
"official_qwen_benchmarks": false,
|
| 83 |
+
"release_report_frozen_at": "2026-08-22T00:01:48.742409+00:00"
|
| 84 |
+
},
|
| 85 |
+
"lineage": {
|
| 86 |
+
"abliterix_version": "1.12.2",
|
| 87 |
+
"base_model": "Qwen/Qwen3.8-27B",
|
| 88 |
+
"method": "Reasoning QLoRA merge followed by one selected Abliterix pass for the winner; control received no Abliterix residual-writer edits.",
|
| 89 |
+
"reasoning_control": "control-bf16",
|
| 90 |
+
"seed": 42,
|
| 91 |
+
"winner": "abliterix-pass1-bf16"
|
| 92 |
+
},
|
| 93 |
+
"native_mlx_proof": {
|
| 94 |
+
"control_mtp_statistics": {
|
| 95 |
+
"accepted_drafts_per_round": 1.73,
|
| 96 |
+
"accepted_tokens_per_round": 2.73,
|
| 97 |
+
"average_draft": 2.0,
|
| 98 |
+
"drafted_percent": 86.5,
|
| 99 |
+
"rounds": 37
|
| 100 |
+
},
|
| 101 |
+
"mtp_exact_answer": {
|
| 102 |
+
"control": "323",
|
| 103 |
+
"winner": "323"
|
| 104 |
+
},
|
| 105 |
+
"ordinary_exact_answer": {
|
| 106 |
+
"control": "323",
|
| 107 |
+
"winner": "323"
|
| 108 |
+
},
|
| 109 |
+
"runtime": "mlx-vlm on arm64 macOS/Metal",
|
| 110 |
+
"speed_note": "MTP speed is workload-dependent; positive acceptance and exact-answer agreement are the correctness evidence.",
|
| 111 |
+
"winner_mtp_statistics": {
|
| 112 |
+
"accepted_drafts_per_round": 1.78,
|
| 113 |
+
"accepted_tokens_per_round": 2.78,
|
| 114 |
+
"average_draft": 2.0,
|
| 115 |
+
"drafted_percent": 88.8,
|
| 116 |
+
"rounds": 76
|
| 117 |
+
},
|
| 118 |
+
"winner_quantization": {
|
| 119 |
+
"bits": 8,
|
| 120 |
+
"group_size": 64,
|
| 121 |
+
"scheme": "affine"
|
| 122 |
+
}
|
| 123 |
+
},
|
| 124 |
+
"release_family": "Qwen3.8-27B Opus Personal Model v1",
|
| 125 |
+
"schema_version": 1,
|
| 126 |
+
"selection": {
|
| 127 |
+
"all_preregistered_strict_gates_passed": false,
|
| 128 |
+
"control_variant": "control-bf16",
|
| 129 |
+
"selected_variant": "abliterix-pass1-bf16",
|
| 130 |
+
"status": "selected_practical_winner_with_measured_deviations",
|
| 131 |
+
"summary": "Practical personal-model selection with measured deviations; not universal dominance."
|
| 132 |
+
},
|
| 133 |
+
"strict_deviations": [
|
| 134 |
+
{
|
| 135 |
+
"metric": "benign_kl",
|
| 136 |
+
"passed": false,
|
| 137 |
+
"strict_limit": 0.05,
|
| 138 |
+
"winner": 0.093614
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"metric": "incoherence_percent",
|
| 142 |
+
"passed": false,
|
| 143 |
+
"strict_limit": 2.7692,
|
| 144 |
+
"winner": 4.3077
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"control": 7.9268,
|
| 148 |
+
"metric": "human_eval_percent",
|
| 149 |
+
"passed": false,
|
| 150 |
+
"strict_delta_floor": -3.0,
|
| 151 |
+
"winner": 4.2683,
|
| 152 |
+
"winner_delta_points": -3.6585
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"control": "16/421",
|
| 156 |
+
"metric": "full_code_passes",
|
| 157 |
+
"passed": false,
|
| 158 |
+
"winner": "10/421"
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"metric": "max_repeated_4gram_fraction_percent",
|
| 162 |
+
"passed": false,
|
| 163 |
+
"strict_limit": 5.0,
|
| 164 |
+
"winner": 5.8632
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"control_exact_echoes": 2,
|
| 168 |
+
"metric": "prompt_leakage",
|
| 169 |
+
"passed": false,
|
| 170 |
+
"winner_exact_echoes": 3
|
| 171 |
+
}
|
| 172 |
+
],
|
| 173 |
+
"tensor_integrity": {
|
| 174 |
+
"native_mtp_tensors": 15,
|
| 175 |
+
"total_tensor_keys": 1199,
|
| 176 |
+
"unexpected_changes": 0,
|
| 177 |
+
"vision_tensors_preserved": 333,
|
| 178 |
+
"winner_abliterix_residual_writer_edits": 74
|
| 179 |
+
},
|
| 180 |
+
"training": {
|
| 181 |
+
"dataset_preparation": {
|
| 182 |
+
"accepted_rows": 12614,
|
| 183 |
+
"duplicates_removed": 208,
|
| 184 |
+
"invalid_rows_removed": 20,
|
| 185 |
+
"processed_manifest_sha256": "6e0a36ad20732c5f98ff592c4565a4c86876fead4e9f94bc6ceedfad1339a94d",
|
| 186 |
+
"raw_rows": 12842,
|
| 187 |
+
"rows_published": false,
|
| 188 |
+
"source_rows": {
|
| 189 |
+
"high-reasoning-250x": 250,
|
| 190 |
+
"opus-10000x": 9633,
|
| 191 |
+
"opus-3000x": 2326,
|
| 192 |
+
"reasoning-700x": 633
|
| 193 |
+
},
|
| 194 |
+
"split_sha256": {
|
| 195 |
+
"test.jsonl": "a2b6b46ce8b054166b0e392701e49390a44e391b56d25a0a25e9b8a9000257d9",
|
| 196 |
+
"train.jsonl": "c7e691bcabd945e1259537f74119bce4c2c8f5fa4d2fba2e626b95bc04176ad3",
|
| 197 |
+
"validation.jsonl": "589a05d0cf2fededff1febb065d6b3c8c947d29e948495c1567bcd9f5c44f364"
|
| 198 |
+
},
|
| 199 |
+
"splits": {
|
| 200 |
+
"test": 138,
|
| 201 |
+
"train": 12349,
|
| 202 |
+
"validation": 127
|
| 203 |
+
}
|
| 204 |
+
},
|
| 205 |
+
"dtype_after_merge": "bfloat16",
|
| 206 |
+
"final_validation_loss": 0.23739749,
|
| 207 |
+
"hardware": "NVIDIA H200-class run; the sealed Abliterix environment recorded NVIDIA H200, CUDA 13.0, driver 580.159.03, Python 3.11.15.",
|
| 208 |
+
"optimizer_steps": 1544,
|
| 209 |
+
"rows": 12349,
|
| 210 |
+
"token_accuracy_percent": 91.7594,
|
| 211 |
+
"trainable_lora_parameters": 108789760
|
| 212 |
+
}
|
| 213 |
+
}
|
manifests/artifact-manifest.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base_model": "Qwen/Qwen3.8-27B",
|
| 3 |
+
"excluded_source_entries": [
|
| 4 |
+
{
|
| 5 |
+
"path": ".branch-reservation.json",
|
| 6 |
+
"reason": "Private release-control metadata."
|
| 7 |
+
},
|
| 8 |
+
{
|
| 9 |
+
"path": "reproduce/README.md",
|
| 10 |
+
"reason": "Internal/local-path reproducibility material replaced by sanitized public metadata."
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"path": "reproduce/SHA256SUMS",
|
| 14 |
+
"reason": "Internal reproducibility sidecar replaced by the public SHA256SUMS."
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"path": "reproduce/reproduce.json",
|
| 18 |
+
"reason": "Contains local paths and private dataset locations; not published."
|
| 19 |
+
}
|
| 20 |
+
],
|
| 21 |
+
"file_count": 10,
|
| 22 |
+
"files": [
|
| 23 |
+
{
|
| 24 |
+
"path": "chat_template.jinja",
|
| 25 |
+
"sha256": "c3cf9e34abf4f9e36c2d72165aa9c132d3e2a725b6c2586aaa3a8af9d7a81041",
|
| 26 |
+
"size": 8952
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"path": "config.json",
|
| 30 |
+
"sha256": "4c95af1d45132ead5b63e540f08f32a351e20512e62438a3a78faf9881d1e7dc",
|
| 31 |
+
"size": 3688
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"path": "generation_config.json",
|
| 35 |
+
"sha256": "b8eb74d15e0a56623d00ccd14950a4bb87fabbf84b5cc030dcc904b899fb1eb5",
|
| 36 |
+
"size": 214
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"path": "model-00001-of-00002.safetensors",
|
| 40 |
+
"sha256": "ea6111cc68925f6cb9fe26e623f3dba733b79fc01fd9e0de0ad43b94220e55bb",
|
| 41 |
+
"size": 49825162976
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"path": "model-00002-of-00002.safetensors",
|
| 45 |
+
"sha256": "a6a5df602c43452310471f40eceb6453eb7bb9be5ffd4f781325038e6810db5e",
|
| 46 |
+
"size": 4888445168
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"path": "model.safetensors.index.json",
|
| 50 |
+
"sha256": "df96fae8d7adc5adc388ad672842bfa457897d158ea62a1f3257b7672c2ea886",
|
| 51 |
+
"size": 111996
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"path": "mtp.safetensors",
|
| 55 |
+
"sha256": "90fa0e3eed5a647c035c6df9ecabc416c0f8d573ff84ac12485b085f00a7cdf2",
|
| 56 |
+
"size": 849400424
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"path": "processor_config.json",
|
| 60 |
+
"sha256": "d89ef49ce9cd37fbf510158e13c1ef063d9286411c1ec9049932dbe0487143b1",
|
| 61 |
+
"size": 1191
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"path": "tokenizer.json",
|
| 65 |
+
"sha256": "6f32ce20dc35f57a7f9ad1eac03525bd7d30f9df8cea6507e958279cc3657706",
|
| 66 |
+
"size": 19989492
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"path": "tokenizer_config.json",
|
| 70 |
+
"sha256": "bee8eba30f0eb4af73c0fe2cd06d0f89b657d7819941c438157ec42f7c80ea87",
|
| 71 |
+
"size": 1123
|
| 72 |
+
}
|
| 73 |
+
],
|
| 74 |
+
"format": "BF16 Transformers",
|
| 75 |
+
"hash_algorithm": "sha256",
|
| 76 |
+
"repo_id": "timteh673/Qwen3.8-27B-Opus-Abliterix-Reasoning-BF16",
|
| 77 |
+
"schema_version": 1,
|
| 78 |
+
"scope": "Deliberately published model/runtime payload; generated documentation is outside this checksum scope.",
|
| 79 |
+
"sealed_source_components": [
|
| 80 |
+
{
|
| 81 |
+
"aggregate_sha256": "cb0e04180dc257f19604f9ae70b65191a9f01322e5ed7c36aecf22a00af173be",
|
| 82 |
+
"bytes": 55583144390,
|
| 83 |
+
"files": 14,
|
| 84 |
+
"name": "BF16 winner delivery"
|
| 85 |
+
}
|
| 86 |
+
],
|
| 87 |
+
"total_bytes": 55583125224,
|
| 88 |
+
"variant_role": "Full-precision practical winner"
|
| 89 |
+
}
|