├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── setup.py ├── src └── image_gen_aux │ ├── __init__.py │ ├── background_removers │ ├── README.md │ ├── __init__.py │ ├── background_remover.py │ └── ben2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── __init__.py │ │ ├── auto.py │ │ ├── ben2.py │ │ └── ben2_background_remover.py │ ├── base_model_processor.py │ ├── image_processor.py │ ├── modeling_utils.py │ ├── preprocessors │ ├── README.md │ ├── __init__.py │ ├── depth │ │ ├── README.md │ │ ├── __init__.py │ │ └── depth_preprocessor.py │ ├── lineart │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── __init__.py │ │ ├── lineart_preprocessor.py │ │ └── model.py │ ├── lineart_standard │ │ ├── README.md │ │ ├── __init__.py │ │ └── lineart_standard_preprocessor.py │ ├── preprocessor.py │ └── teed │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── __init__.py │ │ ├── teed.py │ │ └── teed_preprocessor.py │ ├── upscalers │ ├── README.md │ ├── __init__.py │ └── upscale_with_model.py │ └── utils │ ├── __init__.py │ ├── constants.py │ ├── import_utils.py │ ├── loading_utils.py │ ├── logging.py │ ├── model_utils.py │ └── tiling_utils.py └── tests └── upscalers └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/setup.py -------------------------------------------------------------------------------- /src/image_gen_aux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/README.md -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/background_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/background_remover.py -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/ben2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/ben2/LICENSE.txt -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/ben2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/ben2/README.md -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/ben2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/ben2/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/ben2/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/ben2/auto.py -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/ben2/ben2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/ben2/ben2.py -------------------------------------------------------------------------------- /src/image_gen_aux/background_removers/ben2/ben2_background_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/background_removers/ben2/ben2_background_remover.py -------------------------------------------------------------------------------- /src/image_gen_aux/base_model_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/base_model_processor.py -------------------------------------------------------------------------------- /src/image_gen_aux/image_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/image_processor.py -------------------------------------------------------------------------------- /src/image_gen_aux/modeling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/modeling_utils.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/README.md -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/depth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/depth/README.md -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/depth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/depth/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/depth/depth_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/depth/depth_preprocessor.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/lineart/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/lineart/LICENSE.txt -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/lineart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/lineart/README.md -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/lineart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/lineart/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/lineart/lineart_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/lineart/lineart_preprocessor.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/lineart/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/lineart/model.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/lineart_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/lineart_standard/README.md -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/lineart_standard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/lineart_standard/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/lineart_standard/lineart_standard_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/lineart_standard/lineart_standard_preprocessor.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/preprocessor.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/teed/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/teed/LICENSE.txt -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/teed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/teed/README.md -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/teed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/teed/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/teed/teed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/teed/teed.py -------------------------------------------------------------------------------- /src/image_gen_aux/preprocessors/teed/teed_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/preprocessors/teed/teed_preprocessor.py -------------------------------------------------------------------------------- /src/image_gen_aux/upscalers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/upscalers/README.md -------------------------------------------------------------------------------- /src/image_gen_aux/upscalers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/upscalers/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/upscalers/upscale_with_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/upscalers/upscale_with_model.py -------------------------------------------------------------------------------- /src/image_gen_aux/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/utils/__init__.py -------------------------------------------------------------------------------- /src/image_gen_aux/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/utils/constants.py -------------------------------------------------------------------------------- /src/image_gen_aux/utils/import_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/utils/import_utils.py -------------------------------------------------------------------------------- /src/image_gen_aux/utils/loading_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/utils/loading_utils.py -------------------------------------------------------------------------------- /src/image_gen_aux/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/utils/logging.py -------------------------------------------------------------------------------- /src/image_gen_aux/utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/utils/model_utils.py -------------------------------------------------------------------------------- /src/image_gen_aux/utils/tiling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/image_gen_aux/HEAD/src/image_gen_aux/utils/tiling_utils.py -------------------------------------------------------------------------------- /tests/upscalers/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------