Model reference · open weights
Unipic3 is an open-weight language model from Skywork. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | Skywork |
|---|---|
| Type | Language models |
| Task | Omni (any→any) |
| Runs with | transformers |
| Released | 2026-01-13 |
| Popularity | 43 downloads / month |
| Licence | Open weights |
About
UniPic3-Teacher-Model is the high-quality teacher diffusion model used in the UniPic 3.0 framework. It is trained with full multi-step diffusion sampling and optimized for maximum perceptual quality, semantic consistency, and realism.
This model serves as the teacher backbone for:
Rather than being optimized for fast inference, the teacher model prioritizes generation fidelity and stability, providing a strong and reliable supervision signal for downstream distilled models.
This teacher model achieves state-of-the-art performance on:
It provides high-quality supervision targets for distilled UniPic3 student models.
This repository hosts the teacher model. It is not optimized for few-step inference.
If you are looking for:
please refer to the UniPic3-DMD / distilled checkpoints instead.
git clone https://github.com/SkyworkAI/UniPic
cd UniPic-3
conda create -n unipic python=3.10
conda activate unipic3
pip install -r requirements.txt
transformer_path = "Skywork/Unipic3"
python -m torch.distributed.launch --nproc_per_node=1 --master_port 29501 --use_env \
qwen_image_edit_fast/batch_inference.py \
--jsonl_path data/val.jsonl \
--output_dir work_dirs/output \
--distributed \
--num_inference_steps 50 \
--true_cfg_scale 4.0 \
--transformer transformer_path \
--skip_existing
This model is released under the MIT License.
If you use Skywork-UniPic in your research, please cite:
@article{wang2025skywork,
title={Skywork unipic: Unified autoregressive modeling for visual understanding and generation},
author={Wang, Peiyu and Peng, Yi and Gan, Yimeng and Hu, Liang and Xie, Tianyidan and Wang, Xiaokun and Wei, Yichen and Tang, Chuanxin and Zhu, Bo and Li, Changshi and others},
journal={arXiv preprint arXiv:2508.03320},
year={2025}
}
@article{wei2025skywork,
title={Skywork unipic 2.0: Building kontext model with online rl for unified multimodal model},
author={Wei, Hongyang and Xu, Baixin and Liu, Hongbo and Wu, Cyrus and Liu, Jie and Peng, Yi and Wang, Peiyu and Liu, Zexiang and He, Jingwen and Xietian, Yidan and others},
journal={arXiv preprint arXiv:2509.04548},
year={2025}
}
@article{wei2026skywork,
title={Skywork UniPic 3.0: Unified Multi-Image Composition via Sequence Modeling},
author={Wei, Hongyang and Liu, Hongbo and Wang, Zidong and Peng, Yi and Xu, Baixin and Wu, Size and Zhang, Xuying and He, Xianglong and Liu, Zexiang and Wang, Peiyu and others},
journal={arXiv preprint arXiv:2601.15664},
year={2026}
}
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys unipic3 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (unipic3 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"unipic3","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.