Add inpainting examples and citation
Browse files
README.md
CHANGED
|
@@ -7,12 +7,11 @@ tags:
|
|
| 7 |
- clover-image
|
| 8 |
- inpainting
|
| 9 |
- coreml
|
| 10 |
-
- iphone
|
| 11 |
---
|
| 12 |
|
| 13 |
# Clover Image Tiny Inpaint — Core ML
|
| 14 |
|
| 15 |
-
This export is the
|
| 16 |
inpainting U-Net. The conversion is pinned to the Apple Stable Diffusion
|
| 17 |
converter vendored under `.coreml-converter` and targets iOS 18.
|
| 18 |
|
|
@@ -36,6 +35,11 @@ masked-image latent. The VAE encoder is required to create the final four
|
|
| 36 |
channels on device. White mask pixels are regenerated and black pixels are
|
| 37 |
preserved.
|
| 38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
## Convert and validate
|
| 40 |
|
| 41 |
```bash
|
|
@@ -53,3 +57,14 @@ Neural Engine-capable path is valid.
|
|
| 53 |
|
| 54 |
The resulting `Resources` directory can be published as the companion model
|
| 55 |
repo [`neonforestmist/Clover-Image-Tiny-Inpaint-CoreML`](https://huggingface.co/neonforestmist/Clover-Image-Tiny-Inpaint-CoreML).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
- clover-image
|
| 8 |
- inpainting
|
| 9 |
- coreml
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
# Clover Image Tiny Inpaint — Core ML
|
| 13 |
|
| 14 |
+
This export is the SD 1.4-class target for the 9-channel Clover Image Tiny
|
| 15 |
inpainting U-Net. The conversion is pinned to the Apple Stable Diffusion
|
| 16 |
converter vendored under `.coreml-converter` and targets iOS 18.
|
| 17 |
|
|
|
|
| 35 |
channels on device. White mask pixels are regenerated and black pixels are
|
| 36 |
preserved.
|
| 37 |
|
| 38 |
+
Example edits include replacing a masked object with a tiny greenhouse,
|
| 39 |
+
removing a person while continuing the background, or adding a red kettle to a
|
| 40 |
+
masked countertop. Use a grayscale mask where white means “regenerate” and
|
| 41 |
+
black means “preserve.”
|
| 42 |
+
|
| 43 |
## Convert and validate
|
| 44 |
|
| 45 |
```bash
|
|
|
|
| 57 |
|
| 58 |
The resulting `Resources` directory can be published as the companion model
|
| 59 |
repo [`neonforestmist/Clover-Image-Tiny-Inpaint-CoreML`](https://huggingface.co/neonforestmist/Clover-Image-Tiny-Inpaint-CoreML).
|
| 60 |
+
|
| 61 |
+
## Citation
|
| 62 |
+
|
| 63 |
+
```bibtex
|
| 64 |
+
@software{lozadaperez2026cloverimagetinyinpaint,
|
| 65 |
+
author = {Lukas Lozada Perez},
|
| 66 |
+
title = {Clover Image Tiny Inpaint: Compact SD 1.4-Class Image Inpainting},
|
| 67 |
+
year = {2026},
|
| 68 |
+
url = {https://huggingface.co/neonforestmist/Clover-Image-Tiny-Inpaint}
|
| 69 |
+
}
|
| 70 |
+
```
|