├── .dockerignore ├── .gitignore ├── LICENSE ├── README.md ├── cog.yaml ├── cog_create_dataset.py └── predict.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsxkib/voice-cloning-create-dataset/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsxkib/voice-cloning-create-dataset/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsxkib/voice-cloning-create-dataset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsxkib/voice-cloning-create-dataset/HEAD/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsxkib/voice-cloning-create-dataset/HEAD/cog.yaml -------------------------------------------------------------------------------- /cog_create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsxkib/voice-cloning-create-dataset/HEAD/cog_create_dataset.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsxkib/voice-cloning-create-dataset/HEAD/predict.py --------------------------------------------------------------------------------