├── .dockerignore ├── .gitignore ├── README.md ├── cog.yaml ├── download-weights ├── frog.png ├── output.jpg └── predict.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-PASD-Magnify/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .cog 3 | PASD 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-PASD-Magnify/HEAD/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-PASD-Magnify/HEAD/cog.yaml -------------------------------------------------------------------------------- /download-weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-PASD-Magnify/HEAD/download-weights -------------------------------------------------------------------------------- /frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-PASD-Magnify/HEAD/frog.png -------------------------------------------------------------------------------- /output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-PASD-Magnify/HEAD/output.jpg -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-PASD-Magnify/HEAD/predict.py --------------------------------------------------------------------------------