├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── assets ├── 1.png ├── R-F.jpg └── teaser.png ├── inference.py ├── merge.py ├── merge_pretrain.py ├── requirements.txt ├── requirements_hugggingface_version.txt ├── src ├── __init__.py ├── jsonl_datasets.py ├── pipeline_pe_clone.py └── prompt_helper.py ├── train_lora_flux_pe.py ├── train_sksedgeeffect.sh ├── train_sksmagiceffects.sh ├── train_sksmonstercalledlulu.sh └── train_skspaintingeffects.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/app.py -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/R-F.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/assets/R-F.jpg -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/inference.py -------------------------------------------------------------------------------- /merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/merge.py -------------------------------------------------------------------------------- /merge_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/merge_pretrain.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_hugggingface_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/requirements_hugggingface_version.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/jsonl_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/src/jsonl_datasets.py -------------------------------------------------------------------------------- /src/pipeline_pe_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/src/pipeline_pe_clone.py -------------------------------------------------------------------------------- /src/prompt_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/src/prompt_helper.py -------------------------------------------------------------------------------- /train_lora_flux_pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/train_lora_flux_pe.py -------------------------------------------------------------------------------- /train_sksedgeeffect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/train_sksedgeeffect.sh -------------------------------------------------------------------------------- /train_sksmagiceffects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/train_sksmagiceffects.sh -------------------------------------------------------------------------------- /train_sksmonstercalledlulu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/train_sksmonstercalledlulu.sh -------------------------------------------------------------------------------- /train_skspaintingeffects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/PhotoDoodle/HEAD/train_skspaintingeffects.sh --------------------------------------------------------------------------------