Add model card
Browse filesThis PR adds a model card for the ICTone-Fill-LoRA model, including the appropriate metadata (`image-to-image` pipeline tag, `diffusers` library, and non-commercial license). It also links the paper, project page, GitHub repository, and provides the inference usage example from the GitHub README.
README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
pipeline_tag: image-to-image
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# ICTone-Fill-LoRA
|
| 8 |
+
|
| 9 |
+
This repository contains the LoRA weights for **ICTone** (ECCV 2026), described in the paper [Towards In-Context Tone Style Transfer with a Large-Scale Triplet Dataset](https://huggingface.co/papers/2604.16114). ICTone performs reference-based tone style transfer by jointly conditioning on the content and reference images with a diffusion transformer (FLUX.1-Fill).
|
| 10 |
+
|
| 11 |
+
- Project page: [https://dengyuhai.github.io/ICTone_Project/](https://dengyuhai.github.io/ICTone_Project/)
|
| 12 |
+
- Code: [https://github.com/dengyuhai/ICTone](https://github.com/dengyuhai/ICTone)
|
| 13 |
+
- Dataset: [TST100K](https://huggingface.co/datasets/ToneStyle/TST100K)
|
| 14 |
+
- Benchmark: [TST2K](https://huggingface.co/datasets/ToneStyle/TST2K)
|
| 15 |
+
- Online demo: [https://huggingface.co/spaces/ToneStyle/ICTone-Fill](https://huggingface.co/spaces/ToneStyle/ICTone-Fill)
|
| 16 |
+
|
| 17 |
+
## Usage
|
| 18 |
+
|
| 19 |
+
The following inference example is taken from the GitHub README:
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
CUDA_VISIBLE_DEVICES=0 python inference.py \
|
| 23 |
+
--content assets/example_content.png \
|
| 24 |
+
--reference assets/example_reference.png \
|
| 25 |
+
--flux-path black-forest-labs/FLUX.1-Fill-dev \
|
| 26 |
+
--lora-path ToneStyle/ICTone-Fill-LoRA \
|
| 27 |
+
--output-file ./output/example_output.png \
|
| 28 |
+
--num-inference-steps 4 \
|
| 29 |
+
--guidance-scale 50.0 \
|
| 30 |
+
--seed 666
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
For full training and evaluation instructions, please refer to the [GitHub repository](https://github.com/dengyuhai/ICTone).
|
| 34 |
+
|
| 35 |
+
## License
|
| 36 |
+
|
| 37 |
+
Non-commercial research use only. See the repository and paper for details.
|