├── LICENSE ├── Readme.md ├── imgs └── mld.webp ├── install.py ├── javascript └── mld.js ├── mldanbooru ├── __init__.py ├── caformer │ ├── __init__.py │ ├── metaformer_baselines.py │ ├── ml_caformer.py │ ├── ms_decoder.py │ └── position_encoding.py ├── interface.py ├── ml_decoder │ ├── layer.py │ └── ml_decoder.py ├── tresnet │ ├── __init__.py │ ├── layers │ │ ├── __init__.py │ │ ├── anti_aliasing.py │ │ ├── avg_pool.py │ │ ├── frelu.py │ │ └── general_layers.py │ ├── tresnet.py │ └── tresnet_f.py └── utils │ ├── __init__.py │ └── factory.py └── scripts └── mld_main.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/Readme.md -------------------------------------------------------------------------------- /imgs/mld.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/imgs/mld.webp -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/install.py -------------------------------------------------------------------------------- /javascript/mld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/javascript/mld.js -------------------------------------------------------------------------------- /mldanbooru/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/__init__.py -------------------------------------------------------------------------------- /mldanbooru/caformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/caformer/__init__.py -------------------------------------------------------------------------------- /mldanbooru/caformer/metaformer_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/caformer/metaformer_baselines.py -------------------------------------------------------------------------------- /mldanbooru/caformer/ml_caformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/caformer/ml_caformer.py -------------------------------------------------------------------------------- /mldanbooru/caformer/ms_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/caformer/ms_decoder.py -------------------------------------------------------------------------------- /mldanbooru/caformer/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/caformer/position_encoding.py -------------------------------------------------------------------------------- /mldanbooru/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/interface.py -------------------------------------------------------------------------------- /mldanbooru/ml_decoder/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/ml_decoder/layer.py -------------------------------------------------------------------------------- /mldanbooru/ml_decoder/ml_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/ml_decoder/ml_decoder.py -------------------------------------------------------------------------------- /mldanbooru/tresnet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mldanbooru/tresnet/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mldanbooru/tresnet/layers/anti_aliasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/tresnet/layers/anti_aliasing.py -------------------------------------------------------------------------------- /mldanbooru/tresnet/layers/avg_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/tresnet/layers/avg_pool.py -------------------------------------------------------------------------------- /mldanbooru/tresnet/layers/frelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/tresnet/layers/frelu.py -------------------------------------------------------------------------------- /mldanbooru/tresnet/layers/general_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/tresnet/layers/general_layers.py -------------------------------------------------------------------------------- /mldanbooru/tresnet/tresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/tresnet/tresnet.py -------------------------------------------------------------------------------- /mldanbooru/tresnet/tresnet_f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/tresnet/tresnet_f.py -------------------------------------------------------------------------------- /mldanbooru/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/utils/__init__.py -------------------------------------------------------------------------------- /mldanbooru/utils/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/mldanbooru/utils/factory.py -------------------------------------------------------------------------------- /scripts/mld_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/ML-Danbooru-webui/HEAD/scripts/mld_main.py --------------------------------------------------------------------------------