Views
No views yet
BF16 dtype-repack ofinclusionAI/UI-Venus-1.5-2B— original FP16 floating-point weights losslessly cast tobfloat16for LoRA / DoRA / PEFT compatibility and reduced disk footprint. The model architecture, parameter values, tokenizer, and configuration are identical to upstream — only the IEEE-754 storage dtype was changed.
License preserved end-to-end — seeLICENSEin this repo for the full text and attribution chain.
| Aspect | Upstream | This bundle |
|---|---|---|
| Floating-point storage dtype | FP16 | bfloat16 |
config.json torch_dtype | as-is | bfloat16 |
model.safetensors.index.json total_size | as-is | recomputed |
| Tokenizer / chat template / modeling code | as-is | unchanged |
| Number of parameters | as-is | unchanged |
| Value-level transformation beyond dtype cast | — | none |
| Disk size | 4.6 GB | 4.6 GB |
| Property | Value |
|---|---|
| Immediate parent | inclusionAI/UI-Venus-1.5-2B |
| Architecture | Qwen3VLForConditionalGeneration |
| Architecture base / lineage | Qwen3-VL-2B (4-stage post-training: Mid-Train 10B tok GUI → Offline-RL → Online-RL → Model-Merge) |
| Parameters | ~2B (dense) |
| Hidden size | see text_config in config.json |
| Num hidden layers | see text_config in config.json |
| Attention heads / KV heads | see text_config in config.json |
| Vocab size | see text_config in config.json |
| Max position embeddings | see text_config in config.json |
| Format | bfloat16 |
| Bundle size on disk | 4.6 GB |
| License | Apache License 2.0 |
| Project page | https://ui-venus.github.io/UI-Venus-1.5 |
| Paper / arxiv | arxiv:2602.09082 |
repack_fp32_to_bf16.py
— reads each shard with safetensors.safe_open, casts floating-point
tensors to torch.bfloat16, rewrites the shard, updates the index
manifest. No GPU involvement, no value-level transformation
beyond the IEEE-754 dtype cast.dtype=torch.bfloat16 base1import torch
2from transformers import AutoTokenizer, AutoModelForCausalLM
3
4repo = "AMAImedia/UI-Venus-1.5-2B-NOESIS-BF16"
5
6tokenizer = AutoTokenizer.from_pretrained(repo, trust_remote_code=True)
7model = AutoModelForCausalLM.from_pretrained(
8 repo,
9 dtype=torch.bfloat16,
10 device_map="auto",
11 trust_remote_code=True,
12).eval()R-DTYPE-REPACK-BF16 — pure IEEE-754 dtype cast from FP16 to
bfloat16. No value-level transformation, no LoRA merge, no architectural
change. Equivalent to loading upstream with dtype=torch.bfloat16 and
saving, but materialised on disk.R-APACHE-CLEAN — upstream Apache License 2.0 preserved end-to-end via
the LICENSE file in this repo. AMAImedia adds only a derivative-work
notice for the repack step.R-NO-VALUE-TRANSFORM — no fine-tuning, no distillation, no merge has
been applied between upstream and this repo. Outputs are bit-for-bit
equivalent up to the precision difference of the dtype cast.inclusionAI/UI-Venus-1.5-2B. Original
model card, citation, and attribution from upstream apply without
modification. See LICENSE in this repo for the complete text plus the
NOESIS derivative-work NOTICE.1@misc{noesis2026uivenus152bnoesisbf16bf16,
2 title = {NOESIS DHCF-FNO :: UI-Venus-1.5-2B-NOESIS-BF16 — BF16 dtype-repack derivative},
3 author = {Bolotnikov, Ilia and AMAImedia},
4 year = {2026},
5 note = {BF16 dtype-repack of inclusionAI/UI-Venus-1.5-2B for LoRA / PEFT
6 compatibility. 4.6 GB on disk, Apache License 2.0
7 preserved end-to-end.},
8 url = {https://huggingface.co/AMAImedia/UI-Venus-1.5-2B-NOESIS-BF16}
9}LICENSE in this repo for citation requirements.AMAImedia/UI-Venus-1.5-2B-NOESIS-BF16inclusionAI/UI-Venus-1.5-2B