alexander-rakhlin
commited on
Commit
·
5eecc8f
1
Parent(s):
4f204e7
Initial commit
Browse files- .gitignore +5 -2
- app.py +1 -2
- tts/.gitignore +4 -0
.gitignore
CHANGED
@@ -1,9 +1,12 @@
|
|
1 |
#checkpoints
|
2 |
-
tts
|
|
|
3 |
|
4 |
#models
|
5 |
models/
|
6 |
|
7 |
#notebooks and bak files
|
8 |
*.bak.py
|
9 |
-
*.ipynb
|
|
|
|
|
|
1 |
#checkpoints
|
2 |
+
tts/*
|
3 |
+
!tts/.gitignore
|
4 |
|
5 |
#models
|
6 |
models/
|
7 |
|
8 |
#notebooks and bak files
|
9 |
*.bak.py
|
10 |
+
*.ipynb
|
11 |
+
|
12 |
+
.idea
|
app.py
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
-
###
|
2 |
import gradio as gr
|
3 |
import numpy as np
|
4 |
import torch
|
5 |
-
import torch.nn.functional as F
|
6 |
from pathlib import Path
|
7 |
import tempfile
|
8 |
|
@@ -14,6 +12,7 @@ title = ""
|
|
14 |
description = """"""
|
15 |
article = """"""
|
16 |
|
|
|
17 |
class TTS_local(TTS):
|
18 |
def __init__(self, model_name=None, output_prefix: str = './', progress_bar: bool = True, gpu=False):
|
19 |
super().__init__(
|
|
|
|
|
1 |
import gradio as gr
|
2 |
import numpy as np
|
3 |
import torch
|
|
|
4 |
from pathlib import Path
|
5 |
import tempfile
|
6 |
|
|
|
12 |
description = """"""
|
13 |
article = """"""
|
14 |
|
15 |
+
|
16 |
class TTS_local(TTS):
|
17 |
def __init__(self, model_name=None, output_prefix: str = './', progress_bar: bool = True, gpu=False):
|
18 |
super().__init__(
|
tts/.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Ignore everything in this directory
|
2 |
+
*
|
3 |
+
# Except this file
|
4 |
+
!.gitignore
|