├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── images ├── sample1.jpeg ├── sample2.jpeg ├── sample3.jpeg └── sample4.jpeg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryonlabs/FLUX.1-dev-LoRA-Outfit-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryonlabs/FLUX.1-dev-LoRA-Outfit-Generator/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryonlabs/FLUX.1-dev-LoRA-Outfit-Generator/HEAD/app.py -------------------------------------------------------------------------------- /images/sample1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryonlabs/FLUX.1-dev-LoRA-Outfit-Generator/HEAD/images/sample1.jpeg -------------------------------------------------------------------------------- /images/sample2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryonlabs/FLUX.1-dev-LoRA-Outfit-Generator/HEAD/images/sample2.jpeg -------------------------------------------------------------------------------- /images/sample3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryonlabs/FLUX.1-dev-LoRA-Outfit-Generator/HEAD/images/sample3.jpeg -------------------------------------------------------------------------------- /images/sample4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryonlabs/FLUX.1-dev-LoRA-Outfit-Generator/HEAD/images/sample4.jpeg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryonlabs/FLUX.1-dev-LoRA-Outfit-Generator/HEAD/requirements.txt --------------------------------------------------------------------------------