├── .dockerignore ├── .gitignore ├── LICENSE ├── README.md ├── cog.yaml ├── predict.py └── util.py /.dockerignore: -------------------------------------------------------------------------------- 1 | env.sh 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/conditioned-prior/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/conditioned-prior/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/conditioned-prior/HEAD/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/conditioned-prior/HEAD/cog.yaml -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/conditioned-prior/HEAD/predict.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/conditioned-prior/HEAD/util.py --------------------------------------------------------------------------------