├── .gitignore ├── LICENSE ├── README.md ├── app_stroke_guided_image_editing.py ├── app_text_guided_image_editing.py ├── assets ├── compounded_image_editing.png ├── latentclip.png ├── method_overview.png ├── pseudocode.png └── teaser.png ├── examples ├── 1_input.jpg ├── 1_output.jpg ├── 2_input.jpg ├── 2_output.jpg └── 2_user.jpg ├── latentclip ├── dataset.py ├── model.py ├── test.py ├── train.py └── utils.py ├── latentvgg ├── dataset.py ├── model.py ├── test.py ├── train.py └── utils.py ├── loss.py ├── scheduling_ddim.py ├── scheduling_pndm.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/README.md -------------------------------------------------------------------------------- /app_stroke_guided_image_editing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/app_stroke_guided_image_editing.py -------------------------------------------------------------------------------- /app_text_guided_image_editing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/app_text_guided_image_editing.py -------------------------------------------------------------------------------- /assets/compounded_image_editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/assets/compounded_image_editing.png -------------------------------------------------------------------------------- /assets/latentclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/assets/latentclip.png -------------------------------------------------------------------------------- /assets/method_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/assets/method_overview.png -------------------------------------------------------------------------------- /assets/pseudocode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/assets/pseudocode.png -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /examples/1_input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/examples/1_input.jpg -------------------------------------------------------------------------------- /examples/1_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/examples/1_output.jpg -------------------------------------------------------------------------------- /examples/2_input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/examples/2_input.jpg -------------------------------------------------------------------------------- /examples/2_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/examples/2_output.jpg -------------------------------------------------------------------------------- /examples/2_user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/examples/2_user.jpg -------------------------------------------------------------------------------- /latentclip/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentclip/dataset.py -------------------------------------------------------------------------------- /latentclip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentclip/model.py -------------------------------------------------------------------------------- /latentclip/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentclip/test.py -------------------------------------------------------------------------------- /latentclip/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentclip/train.py -------------------------------------------------------------------------------- /latentclip/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentclip/utils.py -------------------------------------------------------------------------------- /latentvgg/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentvgg/dataset.py -------------------------------------------------------------------------------- /latentvgg/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentvgg/model.py -------------------------------------------------------------------------------- /latentvgg/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentvgg/test.py -------------------------------------------------------------------------------- /latentvgg/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentvgg/train.py -------------------------------------------------------------------------------- /latentvgg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/latentvgg/utils.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/loss.py -------------------------------------------------------------------------------- /scheduling_ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/scheduling_ddim.py -------------------------------------------------------------------------------- /scheduling_pndm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/scheduling_pndm.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryXTChen/TiNO-Edit/HEAD/utils.py --------------------------------------------------------------------------------