├── .env.example ├── .gitignore ├── README.md ├── contents ├── image_text_mix_csp_coffee machine_mixed_nu:0.8_0.png ├── image_text_mix_csp_tiger_mixed_nu:0.8_1.png ├── lp_a realistic photo of a cat_csp_coffee machine_mixed_nu:0.75_0.png ├── lp_a realistic photo of a cat_csp_coffee machine_mixed_nu:0.9_0.png ├── lp_a realistic photo of a cat_csp_coffee machine_original_0.png ├── lp_a realistic photo of a rabbit_csp_tiger_mixed_nu:0.75_1.png ├── lp_a realistic photo of a rabbit_csp_tiger_mixed_nu:0.9_1.png ├── lp_a realistic photo of a rabbit_csp_tiger_original_1.png ├── magicmix.png ├── test.jpg └── test_cat.jpg ├── magic_mix ├── __init__.py └── magic_mix.py ├── requirements.txt ├── scripts ├── run_sample_and_mix.py └── run_text_image_mix.py └── setup.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _debug.ipynb 2 | .env 3 | __pycache__ 4 | _* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/README.md -------------------------------------------------------------------------------- /contents/image_text_mix_csp_coffee machine_mixed_nu:0.8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/image_text_mix_csp_coffee machine_mixed_nu:0.8_0.png -------------------------------------------------------------------------------- /contents/image_text_mix_csp_tiger_mixed_nu:0.8_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/image_text_mix_csp_tiger_mixed_nu:0.8_1.png -------------------------------------------------------------------------------- /contents/lp_a realistic photo of a cat_csp_coffee machine_mixed_nu:0.75_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/lp_a realistic photo of a cat_csp_coffee machine_mixed_nu:0.75_0.png -------------------------------------------------------------------------------- /contents/lp_a realistic photo of a cat_csp_coffee machine_mixed_nu:0.9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/lp_a realistic photo of a cat_csp_coffee machine_mixed_nu:0.9_0.png -------------------------------------------------------------------------------- /contents/lp_a realistic photo of a cat_csp_coffee machine_original_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/lp_a realistic photo of a cat_csp_coffee machine_original_0.png -------------------------------------------------------------------------------- /contents/lp_a realistic photo of a rabbit_csp_tiger_mixed_nu:0.75_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/lp_a realistic photo of a rabbit_csp_tiger_mixed_nu:0.75_1.png -------------------------------------------------------------------------------- /contents/lp_a realistic photo of a rabbit_csp_tiger_mixed_nu:0.9_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/lp_a realistic photo of a rabbit_csp_tiger_mixed_nu:0.9_1.png -------------------------------------------------------------------------------- /contents/lp_a realistic photo of a rabbit_csp_tiger_original_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/lp_a realistic photo of a rabbit_csp_tiger_original_1.png -------------------------------------------------------------------------------- /contents/magicmix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/magicmix.png -------------------------------------------------------------------------------- /contents/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/test.jpg -------------------------------------------------------------------------------- /contents/test_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/contents/test_cat.jpg -------------------------------------------------------------------------------- /magic_mix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/magic_mix/__init__.py -------------------------------------------------------------------------------- /magic_mix/magic_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/magic_mix/magic_mix.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/run_sample_and_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/scripts/run_sample_and_mix.py -------------------------------------------------------------------------------- /scripts/run_text_image_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/scripts/run_text_image_mix.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloneofsimo/magicmix/HEAD/setup.py --------------------------------------------------------------------------------