Instructions to use Boogu/Boogu-Image-0.1-Base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Boogu/Boogu-Image-0.1-Base with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Boogu/Boogu-Image-0.1-Base", 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 Settings
- Draw Things
- DiffusionBee
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -55,6 +55,8 @@ English | [δΈζ](./README_CN.md)
|
|
| 55 |
This repository provides checkpoints and inference code for **Boogu-Image-0.1**.
|
| 56 |
|
| 57 |
## π£ News
|
|
|
|
|
|
|
| 58 |
- **2026-07-16** π₯ π π **The Boogu-Image-0.1 Technical Report is released!** We have released our technical report. If you find our series of models or the report helpful to your research or applications, please consider citing our paper. Thank you very much for your support! You can read the paper here: [arXiv:2607.13125](https://arxiv.org/abs/2607.13125).
|
| 59 |
- **2026-07-08** π₯ **Boogu-Image-0.1-Edit-Turbo (Image-to-Image hotfix) is released!** This update addresses several issues in the previous version, including severe image quality degradation and poor performance on removal and other editing tasks. The new checkpoints are released on Hugging Face in the revisions [hotfix-1k-20260708](https://huggingface.co/Boogu/Boogu-Image-0.1-Edit-Turbo/tree/hotfix-1k-20260708) and [hotfix-1k5-20260708](https://huggingface.co/Boogu/Boogu-Image-0.1-Edit-Turbo/tree/hotfix-1k5-20260708). We recommend downloading the 1K checkpoint for more stable results. Try the [online demo for 1K res](https://demo-edit-turbo-1k.boogu.org/) and [online demo for 1.5K res](https://demo-edit-turbo-1k5.boogu.org/).
|
| 60 |
- **2026-06-30** π₯ **Boogu-Image-0.1-Edit-Turbo (Image-to-Image) is released!** Four-step distilled variant of the editing model for fast inference. Try the [online demo for 1k res](https://demo-edit-turbo-1k.boogu.org/) and [online demo for 1.5k res](https://demo-edit-turbo-1k5.boogu.org/).
|
|
@@ -246,6 +248,14 @@ python inference.py \
|
|
| 246 |
--device "$device"
|
| 247 |
```
|
| 248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 249 |
### Hardware Notes
|
| 250 |
|
| 251 |
> π For full CLI options, device setup, offload strategies, caching acceleration, Torch Compile, FP8, and batch inference details, see [**INFERENCE_GUIDE.md**](./INFERENCE_GUIDE.md).
|
|
|
|
| 55 |
This repository provides checkpoints and inference code for **Boogu-Image-0.1**.
|
| 56 |
|
| 57 |
## π£ News
|
| 58 |
+
- **2026-07-23** π₯ **NPU support is now available!** Check out the `npu` branch for initial NPU backend support and instructions. We welcome feedback and bug reports!
|
| 59 |
+
- **2026-07-22** π₯ **vLLM-Omni now supports Boogu-Image!** You can now run Boogu-Image models with the vLLM-Omni inference server. See the official recipe for details and setup: [vllm-project/vllm-omni Boogu-Image recipe](https://github.com/vllm-project/vllm-omni/blob/main/recipes/Boogu/Boogu-Image.md).
|
| 60 |
- **2026-07-16** π₯ π π **The Boogu-Image-0.1 Technical Report is released!** We have released our technical report. If you find our series of models or the report helpful to your research or applications, please consider citing our paper. Thank you very much for your support! You can read the paper here: [arXiv:2607.13125](https://arxiv.org/abs/2607.13125).
|
| 61 |
- **2026-07-08** π₯ **Boogu-Image-0.1-Edit-Turbo (Image-to-Image hotfix) is released!** This update addresses several issues in the previous version, including severe image quality degradation and poor performance on removal and other editing tasks. The new checkpoints are released on Hugging Face in the revisions [hotfix-1k-20260708](https://huggingface.co/Boogu/Boogu-Image-0.1-Edit-Turbo/tree/hotfix-1k-20260708) and [hotfix-1k5-20260708](https://huggingface.co/Boogu/Boogu-Image-0.1-Edit-Turbo/tree/hotfix-1k5-20260708). We recommend downloading the 1K checkpoint for more stable results. Try the [online demo for 1K res](https://demo-edit-turbo-1k.boogu.org/) and [online demo for 1.5K res](https://demo-edit-turbo-1k5.boogu.org/).
|
| 62 |
- **2026-06-30** π₯ **Boogu-Image-0.1-Edit-Turbo (Image-to-Image) is released!** Four-step distilled variant of the editing model for fast inference. Try the [online demo for 1k res](https://demo-edit-turbo-1k.boogu.org/) and [online demo for 1.5k res](https://demo-edit-turbo-1k5.boogu.org/).
|
|
|
|
| 248 |
--device "$device"
|
| 249 |
```
|
| 250 |
|
| 251 |
+
### Ascend NPU Inference Support
|
| 252 |
+
|
| 253 |
+
For Ascend NPU inference support, please switch to the `npu` branch:
|
| 254 |
+
```bash
|
| 255 |
+
git checkout npu
|
| 256 |
+
```
|
| 257 |
+
Follow the instructions in the `README.md` on that branch for setup and usage details.
|
| 258 |
+
|
| 259 |
### Hardware Notes
|
| 260 |
|
| 261 |
> π For full CLI options, device setup, offload strategies, caching acceleration, Torch Compile, FP8, and batch inference details, see [**INFERENCE_GUIDE.md**](./INFERENCE_GUIDE.md).
|