mirror of https://github.com/coqui-ai/TTS.git
commit
e31f174cf8
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
name: 🐛 Bug report
|
name: 🐛 Bug report
|
||||||
about: Create a bug report to help 🐸 improve
|
about: Create a bug report to help 🐸 improve
|
||||||
title: 'Bug: '
|
title: '[Bug] '
|
||||||
labels: bug
|
labels: bug
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
name: 🚀 Feature request
|
name: 🚀 Feature request
|
||||||
about: Suggest a feature or an idea for this project
|
about: Suggest a feature or an idea for this project
|
||||||
title: 'Feature request: '
|
title: '[Feature request] '
|
||||||
labels: feature request
|
labels: feature request
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
[](https://github.com/coqui-ai/TTS/blob/master/CODE_OF_CONDUCT.md)
|
[](https://github.com/coqui-ai/TTS/blob/master/CODE_OF_CONDUCT.md)
|
||||||
[](https://pepy.tech/project/tts)
|
[](https://pepy.tech/project/tts)
|
||||||
[](https://gitter.im/coqui-ai/TTS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
[](https://gitter.im/coqui-ai/TTS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
||||||
|
[](https://zenodo.org/badge/latestdoi/265612440)
|
||||||
|
|
||||||
|
|
||||||
📰 [**Subscribe to 🐸Coqui.ai Newsletter**](https://coqui.ai/?subscription=true)
|
📰 [**Subscribe to 🐸Coqui.ai Newsletter**](https://coqui.ai/?subscription=true)
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"ljspeech":{
|
"ljspeech":{
|
||||||
"tacotron2-DDC": {
|
"tacotron2-DDC": {
|
||||||
"description": "Tacotron2 with Double Decoder Consistency.",
|
"description": "Tacotron2 with Double Decoder Consistency.",
|
||||||
"github_rls_url": "https://github.com/coqui-ai/TTS/releases/download/untagged-f1622e6df45e9f07b766/tts_models--en--ljspeech--tacotron2-DDC.zip",
|
"github_rls_url": "https://github.com/coqui-ai/TTS/releases/download/v0.0.12/tts_models--en--ljspeech--tacotron2-DDC.zip",
|
||||||
"default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2",
|
"default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2",
|
||||||
"commit": "bae2ad0f",
|
"commit": "bae2ad0f",
|
||||||
"author": "Eren Gölge @erogol",
|
"author": "Eren Gölge @erogol",
|
||||||
|
@ -152,7 +152,7 @@
|
||||||
},
|
},
|
||||||
"hifigan_v2":{
|
"hifigan_v2":{
|
||||||
"description": "HiFiGAN_v2 LJSpeech vocoder from https://arxiv.org/abs/2010.05646.",
|
"description": "HiFiGAN_v2 LJSpeech vocoder from https://arxiv.org/abs/2010.05646.",
|
||||||
"github_rls_url": "https://github.com/coqui-ai/TTS/releases/download/untagged-fb45647fd183a241dda1/vocoder_model--en--ljspeech-hifigan_v2.zip",
|
"github_rls_url": "https://github.com/coqui-ai/TTS/releases/download/v0.0.12/vocoder_model--en--ljspeech-hifigan_v2.zip",
|
||||||
"commit": "bae2ad0f",
|
"commit": "bae2ad0f",
|
||||||
"author": "@erogol",
|
"author": "@erogol",
|
||||||
"license": "",
|
"license": "",
|
||||||
|
|
|
@ -117,7 +117,7 @@ def tts():
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
app.run(debug=args.debug, host="0.0.0.0", port=args.port)
|
app.run(debug=args.debug, host="::", port=args.port)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -18,7 +18,7 @@ if LooseVersion(sys.version) < LooseVersion("3.6") or LooseVersion(sys.version)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
version = '0.0.11'
|
version = '0.0.12'
|
||||||
cwd = os.path.dirname(os.path.abspath(__file__))
|
cwd = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
class build_py(setuptools.command.build_py.build_py): # pylint: disable=too-many-ancestors
|
class build_py(setuptools.command.build_py.build_py): # pylint: disable=too-many-ancestors
|
||||||
|
|
Loading…
Reference in New Issue