├── .dockerignore ├── .gitignore ├── LICENSE ├── README.md ├── cog.yaml ├── predict.py └── samples.py /.dockerignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | sample* 3 | output.* 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | output.* 3 | sample_* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-cpu-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-cpu-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-cpu-toolkit/HEAD/cog.yaml -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-cpu-toolkit/HEAD/predict.py -------------------------------------------------------------------------------- /samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-cpu-toolkit/HEAD/samples.py --------------------------------------------------------------------------------