Skip to content

Commit

Permalink
Update xtts_demo.py added missing imports of glob zipfile and shutil
Browse files Browse the repository at this point in the history
```python
import glob
import zipfile
import shutil
```
  • Loading branch information
DrewThomasson authored Oct 18, 2024
1 parent 2309048 commit 2c893a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions TTS/demos/xtts_ft_demo/xtts_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
from TTS.tts.configs.xtts_config import XttsConfig
from TTS.tts.models.xtts import Xtts

import glob
import zipfile
import shutil

def export_model(output_path):
try:
output_folder = os.path.join(output_path, "Finished_model_files")
Expand Down

0 comments on commit 2c893a4

Please sign in to comment.