Skip to content

Commit

Permalink
Update manage.py
Browse files Browse the repository at this point in the history
fix: fairseq model
  • Loading branch information
davidmartinrius authored Mar 5, 2024
1 parent ea3ae40 commit 64fdd0e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions TTS/utils/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,13 @@ def set_model_url(model_item: Dict):
def _set_model_item(self, model_name):
# fetch model info from the dict
if "fairseq" in model_name:
model_type = "tts_models"
lang = model_name.split("/")[1]
split = model_name.split("/")
model_type = split[0]
lang = split[1]
dataset = split[2]
model = split[3]
model_item = {
"model_type": "tts_models",
"model_type": model_type,
"license": "CC BY-NC 4.0",
"default_vocoder": None,
"author": "fairseq",
Expand Down

0 comments on commit 64fdd0e

Please sign in to comment.