Image-Text-to-Text
Transformers
Safetensors
Dutch
English
qwen3_5
loes
hostyourai
qwen3.8
dutch
nederlands
conversational
multimodal
uncensored
sft
unsloth
merged_16bit
Instructions to use HostYourAI/loes-qwen3.8-27b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HostYourAI/loes-qwen3.8-27b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="HostYourAI/loes-qwen3.8-27b") 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("HostYourAI/loes-qwen3.8-27b") model = AutoModelForMultimodalLM.from_pretrained("HostYourAI/loes-qwen3.8-27b", 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 HostYourAI/loes-qwen3.8-27b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "HostYourAI/loes-qwen3.8-27b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HostYourAI/loes-qwen3.8-27b", "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/HostYourAI/loes-qwen3.8-27b
- SGLang
How to use HostYourAI/loes-qwen3.8-27b 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 "HostYourAI/loes-qwen3.8-27b" \ --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": "HostYourAI/loes-qwen3.8-27b", "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 "HostYourAI/loes-qwen3.8-27b" \ --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": "HostYourAI/loes-qwen3.8-27b", "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 Desktop
- Docker Model Runner
How to use HostYourAI/loes-qwen3.8-27b with Docker Model Runner:
docker model run hf.co/HostYourAI/loes-qwen3.8-27b
Prepare public model card and license
Browse files
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
CHANGED
|
@@ -1,198 +1,156 @@
|
|
| 1 |
---
|
| 2 |
-
base_model: orcarouter/Qwen3.8-27B-Uncensored
|
| 3 |
library_name: transformers
|
|
|
|
|
|
|
|
|
|
| 4 |
pipeline_tag: image-text-to-text
|
| 5 |
datasets:
|
| 6 |
-
- HostYourAI/loes-xl-52k
|
| 7 |
language:
|
| 8 |
-
- nl
|
| 9 |
-
- en
|
| 10 |
tags:
|
| 11 |
-
- loes
|
| 12 |
-
-
|
| 13 |
-
- qwen3.8
|
| 14 |
-
- dutch
|
| 15 |
-
- nederlands
|
| 16 |
-
- conversational
|
| 17 |
-
-
|
| 18 |
-
-
|
| 19 |
-
-
|
| 20 |
-
-
|
|
|
|
| 21 |
---
|
| 22 |
|
| 23 |
-
# Loes Large
|
| 24 |
|
| 25 |
-
|
| 26 |
-
[`orcarouter/Qwen3.8-27B-Uncensored`](https://huggingface.co/orcarouter/Qwen3.8-27B-Uncensored)
|
| 27 |
-
on [`HostYourAI/loes-xl-52k`](https://huggingface.co/datasets/HostYourAI/loes-xl-52k).
|
| 28 |
|
| 29 |
-
|
| 30 |
-
It consists of 18 safetensor shards (about 55.6 GB) and can be loaded without a
|
| 31 |
-
separate adapter checkpoint.
|
| 32 |
|
| 33 |
-
|
| 34 |
-
> safety, quality or production evaluation gate.
|
| 35 |
|
| 36 |
-
|
| 37 |
|
| 38 |
-
-
|
| 39 |
-
- Dataset: `HostYourAI/loes-xl-52k`
|
| 40 |
-
- Training examples: 51,283
|
| 41 |
-
- Objective: supervised conversational fine-tuning
|
| 42 |
-
- Epochs: 1
|
| 43 |
-
- Optimizer steps: 6,411
|
| 44 |
-
- Maximum training sequence length: 1,024 tokens
|
| 45 |
-
- Effective batch size: 8
|
| 46 |
-
- Loss masking: assistant responses only
|
| 47 |
-
- Vision tower: frozen; this run fine-tuned the language components only
|
| 48 |
-
- Trainable parameters: 466,911,232 of 27,823,639,792 (1.68%)
|
| 49 |
|
| 50 |
-
|
| 51 |
-
model's chat template. Only assistant responses contributed to the loss; user
|
| 52 |
-
instructions were masked.
|
| 53 |
|
| 54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
|
| 61 |
-
| Bias | none |
|
| 62 |
-
| Gradient checkpointing | Unsloth |
|
| 63 |
-
| Language layers | trained |
|
| 64 |
-
| Attention modules | trained |
|
| 65 |
-
| MLP modules | trained |
|
| 66 |
-
| Vision layers | frozen |
|
| 67 |
-
|
| 68 |
-
Adapters covered the language-model attention, linear-attention/gated-delta and
|
| 69 |
-
MLP projections. They were merged into the full 16-bit checkpoint in this repo.
|
| 70 |
-
|
| 71 |
-
## Training configuration
|
| 72 |
-
|
| 73 |
-
| Setting | Value |
|
| 74 |
|---|---:|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
| Learning rate | 2e-5 |
|
| 76 |
| Scheduler | linear |
|
| 77 |
-
| Warm-up
|
| 78 |
| Optimizer | AdamW 8-bit |
|
| 79 |
-
| Weight decay | 0
|
| 80 |
-
| Per-device batch size | 8 |
|
| 81 |
-
| Gradient accumulation | 1 |
|
| 82 |
| Seed | 3407 |
|
|
|
|
| 83 |
|
| 84 |
-
|
| 85 |
-
forced because the gated-delta network can produce NaN gradients on that path.
|
| 86 |
|
| 87 |
-
|
| 88 |
|
| 89 |
-
|
| 90 |
-
The last logged training-batch loss was **0.5529**. This number is not an
|
| 91 |
-
evaluation score: the run did not use a held-out evaluation dataset, and no
|
| 92 |
-
benchmark result is claimed here.
|
| 93 |
|
| 94 |
-
|
| 95 |
|
| 96 |
-
|
| 97 |
-
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
-
|
| 102 |
-
-
|
| 103 |
-
|
| 104 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 105 |
|
| 106 |
-
|
| 107 |
|
| 108 |
-
|
| 109 |
-
|
|
|
|
| 110 |
|
| 111 |
```python
|
| 112 |
-
from
|
| 113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
|
| 115 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
|
| 117 |
-
|
| 118 |
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
)
|
| 124 |
-
FastModel.for_inference(model)
|
| 125 |
```
|
| 126 |
|
| 127 |
-
|
| 128 |
-
80 GB GPU. The repository itself remains a merged 16-bit checkpoint.
|
| 129 |
|
| 130 |
-
|
| 131 |
-
## Measured HYAI platform benchmark
|
| 132 |
|
| 133 |
-
|
| 134 |
-
HYAI router, Loes persona and grounding rails, and the full 27-scenario
|
| 135 |
-
`loes:e2e` suite. The merged checkpoint was served in native **bfloat16** on
|
| 136 |
-
one NVIDIA H100 80 GB, with a 16,384-token context window and a 4,096-token
|
| 137 |
-
output ceiling. Both runs completed with **zero serving errors**.
|
| 138 |
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
|
|
|
| 143 |
|
| 144 |
-
|
| 145 |
-
penalty is declared there, so its effective Transformers default is 1.0. For
|
| 146 |
-
the HYAI Loes pipeline, deterministic decoding scored higher and is the
|
| 147 |
-
recommended serving profile. Sampling was marginally faster, but added two
|
| 148 |
-
failures without fixing any of the deterministic run's failures.
|
| 149 |
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
| Dutch/language hygiene | **67%** | 33% |
|
| 154 |
-
| Grounding | 100% | 100% |
|
| 155 |
-
| Code | 100% | 100% |
|
| 156 |
-
| Arithmetic | 0% | 0% |
|
| 157 |
-
| Format following | 100% | 100% |
|
| 158 |
-
| Robustness | 86% | 86% |
|
| 159 |
-
| Self-knowledge | **100%** | 50% |
|
| 160 |
-
|
| 161 |
-
The deterministic run failed `hygiene`, `bronnenpraat` (talking about the
|
| 162 |
-
source list), `rekenen`, `valse_premisse`, and `grote_invoer`. The upstream
|
| 163 |
-
defaults failed those same checks plus `langvorm_taaldrift` and `zelfkennis`.
|
| 164 |
-
The hygiene failure in both runs was one empty answer in a special assistant-
|
| 165 |
-
prefill prompt-injection case; all other serving responses completed normally.
|
| 166 |
-
|
| 167 |
-
These are controlled platform-regression results, not a general academic
|
| 168 |
-
leaderboard score. The sampled profile has only one run, so its run-to-run
|
| 169 |
-
variance has not yet been estimated.
|
| 170 |
-
<!-- HYAI_BENCHMARK_END -->
|
| 171 |
-
|
| 172 |
-
## Intended use
|
| 173 |
-
|
| 174 |
-
This checkpoint is intended for controlled HostYourAI research and evaluation
|
| 175 |
-
of Dutch- and English-language conversational behavior. Validate it on the
|
| 176 |
-
specific downstream task before deployment.
|
| 177 |
-
|
| 178 |
-
## Limitations and safety
|
| 179 |
-
|
| 180 |
-
- The upstream checkpoint is explicitly described as uncensored; do not assume
|
| 181 |
-
that it will reliably refuse unsafe, illegal or harmful requests.
|
| 182 |
-
- No held-out evaluation set or independent benchmark suite was run for this
|
| 183 |
-
training job.
|
| 184 |
-
- The model can hallucinate, reproduce biases, produce incorrect information
|
| 185 |
-
and follow adversarial instructions.
|
| 186 |
-
- Text-only fine-tuning does not establish or improve visual capability; the
|
| 187 |
-
inherited vision tower was frozen.
|
| 188 |
-
- Do not use the model as the sole basis for medical, legal, financial or other
|
| 189 |
-
high-impact decisions.
|
| 190 |
-
- Access and use remain subject to the upstream model and dataset terms.
|
| 191 |
-
|
| 192 |
-
## Provenance
|
| 193 |
-
|
| 194 |
-
- Final training checkpoint: step 6,411
|
| 195 |
-
- Base snapshot used during this run: `404ea47aaa5d8a8b00049c9e9750089aca011ab2`
|
| 196 |
-
- Export format: Unsloth `merged_16bit`, safe serialization
|
| 197 |
-
- Prepared by HostYourAI as part of the Loes model-development series
|
| 198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
library_name: transformers
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
base_model: orcarouter/Qwen3.8-27B-Uncensored
|
| 5 |
+
base_model_relation: finetune
|
| 6 |
pipeline_tag: image-text-to-text
|
| 7 |
datasets:
|
| 8 |
+
- HostYourAI/loes-xl-52k
|
| 9 |
language:
|
| 10 |
+
- nl
|
| 11 |
+
- en
|
| 12 |
tags:
|
| 13 |
+
- loes
|
| 14 |
+
- hostyourai
|
| 15 |
+
- qwen3.8
|
| 16 |
+
- dutch
|
| 17 |
+
- nederlands
|
| 18 |
+
- conversational
|
| 19 |
+
- multimodal
|
| 20 |
+
- uncensored
|
| 21 |
+
- sft
|
| 22 |
+
- unsloth
|
| 23 |
+
- merged_16bit
|
| 24 |
---
|
| 25 |
|
| 26 |
+
# Loes Large World (Qwen3.8 27B)
|
| 27 |
|
| 28 |
+
Loes is een Nederlandse AI-assistent, gebouwd door [HostYourAI](https://hostyourai.com) en gehost op EU-grond. Dit is **Loes Large World**: een Nederlandstalige supervised fine-tune van [`orcarouter/Qwen3.8-27B-Uncensored`](https://huggingface.co/orcarouter/Qwen3.8-27B-Uncensored), gericht op natuurlijk Nederlands en conversatie.
|
|
|
|
|
|
|
| 29 |
|
| 30 |
+
Meer over Loes staat op [loes.ai](https://loes.ai).
|
|
|
|
|
|
|
| 31 |
|
| 32 |
+
## Wat dit is
|
|
|
|
| 33 |
|
| 34 |
+
Deze repository bevat het volledig gemergede model in bfloat16, niet alleen een LoRA-adapter. De 18 safetensor-shards zijn samen circa 55,6 GB en kunnen zonder afzonderlijke adapter worden geladen.
|
| 35 |
|
| 36 |
+
Qwen3.8-27B is een multimodaal model. Tijdens deze run zijn alleen de taalcomponenten gefinetuned; de vision tower bleef bevroren. De beeld- en videomogelijkheden zijn daardoor geërfd van het basismodel en zijn in deze release niet apart geëvalueerd.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
+
## Trainingsketen
|
|
|
|
|
|
|
| 39 |
|
| 40 |
+
| Onderdeel | Details | Licentie |
|
| 41 |
+
|---|---|---|
|
| 42 |
+
| Basismodel | `orcarouter/Qwen3.8-27B-Uncensored`, snapshot `404ea47aaa5d8a8b00049c9e9750089aca011ab2` | Apache 2.0 |
|
| 43 |
+
| Trainingsdata | [`HostYourAI/loes-xl-52k`](https://huggingface.co/datasets/HostYourAI/loes-xl-52k) | Zie de bronvoorwaarden van de dataset |
|
| 44 |
+
| Training | Unsloth, supervised fine-tuning met LoRA, daarna gemerged | Apache 2.0 |
|
| 45 |
+
| Infrastructuur | 1× NVIDIA H100 80 GB, UpCloud, Helsinki (`fi-hel2`) | EU-trainingslocatie |
|
| 46 |
|
| 47 |
+
`loes-xl-52k` bevat 51.717 Nederlandstalige instructieparen: circa 11.717 synthetische conversatieparen, 20.000 Nederlandse Aya Collection-voorbeelden en 20.000 Nederlandse xP3x-taken. Na preprocessing zijn 51.283 voorbeelden voor deze run gebruikt. Er is niet getraind op gebruikersgesprekken of gebruikersprompts van Loes.
|
| 48 |
+
|
| 49 |
+
## Trainingsconfiguratie
|
| 50 |
+
|
| 51 |
+
| Instelling | Waarde |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
|---|---:|
|
| 53 |
+
| Doel | supervised conversational fine-tuning |
|
| 54 |
+
| Epochs | 1 |
|
| 55 |
+
| Optimizerstappen | 6.411 |
|
| 56 |
+
| Maximale trainingslengte | 1.024 tokens |
|
| 57 |
+
| Effectieve batchgrootte | 8 |
|
| 58 |
+
| Loss masking | alleen assistant-antwoorden |
|
| 59 |
+
| LoRA-rank / alpha | 64 / 64 |
|
| 60 |
+
| LoRA-dropout | 0 |
|
| 61 |
| Learning rate | 2e-5 |
|
| 62 |
| Scheduler | linear |
|
| 63 |
+
| Warm-up | 5 stappen |
|
| 64 |
| Optimizer | AdamW 8-bit |
|
| 65 |
+
| Weight decay | 0,001 |
|
|
|
|
|
|
|
| 66 |
| Seed | 3407 |
|
| 67 |
+
| Trainbare parameters | 466.911.232 van 27.823.639.792 (1,68%) |
|
| 68 |
|
| 69 |
+
De adapters omvatten de attention-, linear-attention/Gated DeltaNet- en MLP-projecties van het taalmodel. De laatste gelogde training-batch loss was 0,5529. Dat is geen evaluatiescore: tijdens de training is geen held-out validatieset gebruikt.
|
|
|
|
| 70 |
|
| 71 |
+
Gebruikte software: Unsloth 2026.8.22, Unsloth Zoo 2026.8.16, Transformers 5.15.1, TRL 0.22.2, PyTorch 2.10.0+cu128 en torchao 0.17.0.
|
| 72 |
|
| 73 |
+
## Gemeten kwaliteit
|
|
|
|
|
|
|
|
|
|
| 74 |
|
| 75 |
+
Gemeten op 28 augustus 2026 via de echte HostYourAI/Loes-productieketen met 27 scenario's. Het gemergede model draaide in native bfloat16 op één H100 80 GB, met 16.384 tokens context en maximaal 4.096 outputtokens. Beide profielen hadden nul serving errors.
|
| 76 |
|
| 77 |
+
| Generatieprofiel | Score | Geslaagd | p50 eerste token | Doorvoer |
|
| 78 |
+
|---|---:|---:|---:|---:|
|
| 79 |
+
| **Deterministisch (aanbevolen):** temperature 0 | **0,8148** | **22/27** | 4.659 ms | 12,6 tok/s |
|
| 80 |
+
| Upstream-defaults: temperature 1,0, top-p 0,95, top-k 20 | 0,7407 | 20/27 | 4.454 ms | 13,0 tok/s |
|
| 81 |
+
|
| 82 |
+
| HYAI-categorie | Temperature 0 | Upstream-defaults |
|
| 83 |
+
|---|---:|---:|
|
| 84 |
+
| Betrouwbaarheid | 71% | 71% |
|
| 85 |
+
| Nederlands/taalhygiëne | **67%** | 33% |
|
| 86 |
+
| Grounding | 100% | 100% |
|
| 87 |
+
| Code | 100% | 100% |
|
| 88 |
+
| Rekenen | 0% | 0% |
|
| 89 |
+
| Vorminstructies | 100% | 100% |
|
| 90 |
+
| Robuustheid | 86% | 86% |
|
| 91 |
+
| Zelfkennis | **100%** | 50% |
|
| 92 |
|
| 93 |
+
De deterministische run faalde op `hygiene`, `bronnenpraat`, `rekenen`, `valse_premisse` en `grote_invoer`. De upstream-defaults faalden daarnaast op `langvorm_taaldrift` en `zelfkennis`. Dit zijn interne regressietests voor het HYAI-platform, geen algemene academische benchmark. Er is nog geen onafhankelijke benchmark of systematische multimodale evaluatie gepubliceerd.
|
| 94 |
|
| 95 |
+
## Gebruik
|
| 96 |
+
|
| 97 |
+
### Transformers
|
| 98 |
|
| 99 |
```python
|
| 100 |
+
from transformers import AutoModelForMultimodalLM, AutoProcessor
|
| 101 |
+
|
| 102 |
+
model_id = "HostYourAI/loes-large-v1-qwen38-27b-uncensored-52"
|
| 103 |
+
processor = AutoProcessor.from_pretrained(model_id)
|
| 104 |
+
model = AutoModelForMultimodalLM.from_pretrained(
|
| 105 |
+
model_id,
|
| 106 |
+
dtype="auto",
|
| 107 |
+
device_map="auto",
|
| 108 |
+
)
|
| 109 |
|
| 110 |
+
messages = [{
|
| 111 |
+
"role": "user",
|
| 112 |
+
"content": [{"type": "text", "text": "Leg in helder Nederlands uit wat soevereine AI is."}],
|
| 113 |
+
}]
|
| 114 |
+
inputs = processor.apply_chat_template(
|
| 115 |
+
messages,
|
| 116 |
+
add_generation_prompt=True,
|
| 117 |
+
enable_thinking=False,
|
| 118 |
+
tokenize=True,
|
| 119 |
+
return_dict=True,
|
| 120 |
+
return_tensors="pt",
|
| 121 |
+
).to(model.device)
|
| 122 |
+
outputs = model.generate(**inputs, max_new_tokens=300, do_sample=False)
|
| 123 |
+
print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))
|
| 124 |
+
```
|
| 125 |
|
| 126 |
+
### vLLM
|
| 127 |
|
| 128 |
+
```bash
|
| 129 |
+
vllm serve HostYourAI/loes-large-v1-qwen38-27b-uncensored-52 \
|
| 130 |
+
--dtype bfloat16 \
|
| 131 |
+
--max-model-len 16384
|
|
|
|
|
|
|
| 132 |
```
|
| 133 |
|
| 134 |
+
Roep het model daarna aan via de OpenAI-compatibele API. Voor de gemeten Loes-instellingen gebruik je `temperature: 0`. Native bfloat16-serving is getest op een H100 80 GB; kies quantisatie of meerdere GPU's wanneer minder geheugen beschikbaar is.
|
|
|
|
| 135 |
|
| 136 |
+
## Beoogd gebruik en beperkingen
|
|
|
|
| 137 |
|
| 138 |
+
Dit model is bedoeld voor onderzoek, evaluatie en toepassingen met Nederlandse en Engelse conversatie. Test het altijd op de eigen taak voordat je het uitrolt.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 139 |
|
| 140 |
+
- Het upstream-checkpoint is expliciet *uncensored*. Verwacht niet dat het onveilige, illegale of schadelijke verzoeken betrouwbaar weigert; voeg toepassingsspecifieke veiligheidsmaatregelen toe.
|
| 141 |
+
- Het model kan hallucineren, vooroordelen reproduceren, onjuiste informatie geven en adversarial instructies volgen.
|
| 142 |
+
- De maximale trainingslengte was 1.024 tokens. De geërfde architectuur ondersteunt een veel langere context, maar deze finetune is daar niet systematisch op geëvalueerd.
|
| 143 |
+
- Gebruik het model niet als enige basis voor medische, juridische, financiële of andere beslissingen met grote gevolgen.
|
| 144 |
+
- De vision tower is niet aangepast en de multimodale kwaliteit van deze afgeleide release is niet apart gemeten.
|
| 145 |
|
| 146 |
+
## Licentie
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
|
| 148 |
+
De modelgewichten worden beschikbaar gesteld onder de [Apache License 2.0](LICENSE), net als het Qwen3.8-basismodel en de directe OrcaRouter-afgeleide. Trainingsdata en andere componenten blijven daarnaast onder hun eigen bronvoorwaarden vallen.
|
| 149 |
+
|
| 150 |
+
## Herkomst
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
|
| 152 |
+
- HostYourAI-trainingsrun: 52
|
| 153 |
+
- Laatste checkpoint: stap 6.411 van 6.411
|
| 154 |
+
- Export: Unsloth `merged_16bit` met safe serialization
|
| 155 |
+
- Voorbereid door [HostYourAI](https://hostyourai.com) als onderdeel van de Loes-modelserie
|
| 156 |
+
- Contact: [info@hostyourai.com](mailto:info@hostyourai.com)
|