Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,56 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
pipeline_tag: image-to-image
|
| 5 |
+
tags:
|
| 6 |
+
- comfyui
|
| 7 |
+
- image-editing
|
| 8 |
+
- diffusers
|
| 9 |
+
- joyai
|
| 10 |
---
|
| 11 |
+
|
| 12 |
+
# JoyAI-Image-Edit (ComfyUI weights)
|
| 13 |
+
|
| 14 |
+
Single-file `.safetensors` checkpoints of [JoyAI-Image-Edit](https://github.com/jd-opensource/JoyAI-Image), repackaged for the standard ComfyUI model folder layout.
|
| 15 |
+
|
| 16 |
+
Use these with the `joyai_image_comfyui` custom node from the [JoyAI-Image GitHub repo](https://github.com/jd-opensource/JoyAI-Image/tree/main/joyai_image_comfyui).
|
| 17 |
+
|
| 18 |
+
## Files
|
| 19 |
+
|
| 20 |
+
| File | Size | Goes into | Component |
|
| 21 |
+
|------|------|-----------|-----------|
|
| 22 |
+
| `diffusion_models/joy_image_edit_bf16.safetensors` | ~32 GB | `ComfyUI/models/diffusion_models/` | `JoyImageEditTransformer3DModel` (bf16) |
|
| 23 |
+
| `text_encoders/qwen3vl_joyimage_bf16.safetensors` | ~17 GB | `ComfyUI/models/text_encoders/` | Qwen3VL text encoder (bf16) |
|
| 24 |
+
| `vae/joy_image_edit_vae.safetensors` | ~254 MB | `ComfyUI/models/vae/` | `AutoencoderKLWan` |
|
| 25 |
+
|
| 26 |
+
The repo's directory layout already matches `ComfyUI/models/`, so a single `hf download` into your models root drops every file where it needs to go.
|
| 27 |
+
|
| 28 |
+
## Quick start
|
| 29 |
+
|
| 30 |
+
```bash
|
| 31 |
+
# 1) Install the custom node
|
| 32 |
+
cd ComfyUI/custom_nodes
|
| 33 |
+
git clone https://github.com/jd-opensource/JoyAI-Image.git
|
| 34 |
+
cp -r JoyAI-Image/joyai_image_comfyui ./
|
| 35 |
+
rm -rf JoyAI-Image
|
| 36 |
+
|
| 37 |
+
# 2) Download the weights straight into ComfyUI/models/
|
| 38 |
+
hf download jdopensource/JoyAI-Image-Edit-ComfyUI \
|
| 39 |
+
--local-dir /path/to/ComfyUI/models
|
| 40 |
+
|
| 41 |
+
# 3) Restart ComfyUI — new nodes appear under `loaders/joyai` and `image/joyai`.
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
## Requirements
|
| 45 |
+
|
| 46 |
+
- `diffusers >= 0.39.0.dev0` (install from source: `pip install git+https://github.com/huggingface/diffusers.git`)
|
| 47 |
+
- `transformers >= 4.57.0`
|
| 48 |
+
|
| 49 |
+
## GGUF quantizations
|
| 50 |
+
|
| 51 |
+
Lower-bit GGUF quants of the transformer and text encoder are available at [huangfeice/JoyAI-Image-Edit-Diffusers-GGUF](https://huggingface.co/huangfeice/JoyAI-Image-Edit-Diffusers-GGUF) (community contribution). The VAE here is the only VAE you need — GGUF doesn't quantize VAE.
|
| 52 |
+
|
| 53 |
+
## Links
|
| 54 |
+
|
| 55 |
+
- Source code, node implementation, and full documentation: [github.com/jd-opensource/JoyAI-Image](https://github.com/jd-opensource/JoyAI-Image)
|
| 56 |
+
- Original Diffusers-format weights: [jdopensource/JoyAI-Image-Edit-Diffusers](https://huggingface.co/jdopensource/JoyAI-Image-Edit-Diffusers)
|