Instructions to use jiuntian/OneHOI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use jiuntian/OneHOI with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("jiuntian/OneHOI", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
File size: 1,233 Bytes
39ab0af 73cbaf2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | ---
pipeline_tag: text-to-image
library_name: diffusers
---
## OneHOI: Unifying Human-Object Interaction Generation and Editing
[OneHOI Project Page](https://jiuntian.github.io/OneHOI/) | [Paper (CVPR 2026)](https://arxiv.org/abs/2604.14062)
To use this pretrained models, see our Github repo at [https://jiuntian.github.io/OneHOI/](https://jiuntian.github.io/OneHOI/).
## Citation
If you find this dataset useful for your research in HOI editing or image generation, please cite our CVPR 2026 paper:
```bibtex
@inproceedings{hoe2026onehoi,
title={OneHOI: Unifying Human-Object Interaction Generation and Editing},
author={Hoe, Jiun Tian and Hu, Weipeng and Jiang, Xudong and Tan, Yap-Peng and Chan, Chee Seng},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
year={2026}
}
@misc{hoe2025interactedit,
title={InteractEdit: Zero-Shot Editing of Human-Object Interactions in Images},
author={Jiun Tian Hoe and Weipeng Hu and Wei Zhou and Chao Xie and Ziwei Wang and Chee Seng Chan and Xudong Jiang and Yap-Peng Tan},
year={2025},
eprint={2503.09130},
archivePrefix={arXiv},
primaryClass={cs.GR},
url={https://arxiv.org/abs/2503.09130},
}
``` |