├── .gitignore ├── LICENSE ├── README.md ├── dasheng_denoiser ├── __init__.py ├── config.yaml ├── feature_extractors.py ├── inference.py ├── models.py └── pretrained.py ├── metadata └── dasheng_denoise.png └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/README.md -------------------------------------------------------------------------------- /dasheng_denoiser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dasheng_denoiser/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/dasheng_denoiser/config.yaml -------------------------------------------------------------------------------- /dasheng_denoiser/feature_extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/dasheng_denoiser/feature_extractors.py -------------------------------------------------------------------------------- /dasheng_denoiser/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/dasheng_denoiser/inference.py -------------------------------------------------------------------------------- /dasheng_denoiser/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/dasheng_denoiser/models.py -------------------------------------------------------------------------------- /dasheng_denoiser/pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/dasheng_denoiser/pretrained.py -------------------------------------------------------------------------------- /metadata/dasheng_denoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/metadata/dasheng_denoise.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaomi-research/dasheng-denoiser/HEAD/pyproject.toml --------------------------------------------------------------------------------