├── .gitignore ├── LICENSE ├── README.md ├── doc └── en │ └── README_EN.md ├── module └── modulehere ├── output └── voice │ └── voicehere ├── pwgan ├── pwgan_aishell3.pdiparams ├── pwgan_aishell3.pdiparams.info └── pwgan_aishell3.pdmodel ├── requirements.txt ├── resources └── markdown │ └── ladsconfig.png ├── server.py └── voice └── voicehere /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | __pycache__ 3 | 4 | mpv.exe 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/README.md -------------------------------------------------------------------------------- /doc/en/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/doc/en/README_EN.md -------------------------------------------------------------------------------- /module/modulehere: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/voice/voicehere: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwgan/pwgan_aishell3.pdiparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/pwgan/pwgan_aishell3.pdiparams -------------------------------------------------------------------------------- /pwgan/pwgan_aishell3.pdiparams.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/pwgan/pwgan_aishell3.pdiparams.info -------------------------------------------------------------------------------- /pwgan/pwgan_aishell3.pdmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/pwgan/pwgan_aishell3.pdmodel -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/markdown/ladsconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/resources/markdown/ladsconfig.png -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasban12138/SaturdayAI/HEAD/server.py -------------------------------------------------------------------------------- /voice/voicehere: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------