owensong commited on
Commit
6dd01d3
·
verified ·
1 Parent(s): c92bb69

Update private playground to verified Micro 186K and Nano 148K finalists

Browse files
README.md CHANGED
@@ -16,7 +16,7 @@ short_description: Private ZeroGPU playground for Inflect Micro v2 and Nano v2.
16
 
17
  Private, full-model inference for the selected male checkpoints:
18
 
19
- - Inflect Micro v2: diversity-repair 180K
20
- - Inflect Nano v2: spectral-polish 144K
21
 
22
  Every result is generated from text without reference audio or cached samples.
 
16
 
17
  Private, full-model inference for the selected male checkpoints:
18
 
19
+ - Inflect Micro v2: release-polish 186K
20
+ - Inflect Nano v2: release-polish 148K
21
 
22
  Every result is generated from text without reference audio or cached samples.
app.py CHANGED
@@ -1,7 +1,5 @@
1
  from __future__ import annotations
2
 
3
- import hashlib
4
- import os
5
  import re
6
  import sys
7
  import threading
@@ -54,7 +52,7 @@ SPECS = {
54
  params="9.36M",
55
  checkpoint=ROOT / "models" / "micro" / "model.pth",
56
  config=ROOT / "models" / "micro" / "config.json",
57
- seed=180_000,
58
  ),
59
  "Inflect Nano v2": ModelSpec(
60
  label="Inflect Nano v2",
@@ -62,32 +60,10 @@ SPECS = {
62
  params="3.97M",
63
  checkpoint=ROOT / "models" / "nano" / "model.pth",
64
  config=ROOT / "models" / "nano" / "config.json",
65
- seed=144_000,
66
  ),
67
  }
68
 
69
- MICRO_SHA256 = "c450ee12a5bf2d165755608d621cff76513d75c6750c62780046c92eb11970bc"
70
-
71
-
72
- def resolve_checkpoint(spec: ModelSpec) -> Path:
73
- if spec.checkpoint.is_file():
74
- return spec.checkpoint
75
- parts = sorted(spec.checkpoint.parent.glob("model.part.*"))
76
- if not parts:
77
- raise FileNotFoundError(f"Missing release weights for {spec.label}")
78
- destination = Path("/tmp") / f"{spec.short_label.lower()}-model.pth"
79
- digest = hashlib.sha256()
80
- with destination.open("wb") as output:
81
- for part in parts:
82
- block = part.read_bytes()
83
- output.write(block)
84
- digest.update(block)
85
- if spec.short_label == "Micro" and digest.hexdigest() != MICRO_SHA256:
86
- destination.unlink(missing_ok=True)
87
- raise RuntimeError("The reconstructed Micro checkpoint failed its SHA-256 check.")
88
- return destination
89
-
90
-
91
  def split_text(text: str, limit: int = 280) -> list[str]:
92
  normalized = " ".join(text.split())
93
  sentences = [part.strip() for part in re.split(r"(?<=[.!?])\s+", normalized) if part.strip()]
@@ -108,8 +84,9 @@ class Engine:
108
  def __init__(self, spec: ModelSpec) -> None:
109
  if not spec.config.is_file():
110
  raise FileNotFoundError(f"Missing release configuration for {spec.label}")
 
 
111
  self.spec = spec
112
- checkpoint = resolve_checkpoint(spec)
113
  self.hps = utils.get_hparams_from_file(str(spec.config))
114
  self.model = SynthesizerTrn(
115
  len(symbols),
@@ -117,8 +94,8 @@ class Engine:
117
  self.hps.train.segment_size // self.hps.data.hop_length,
118
  **self.hps.model,
119
  ).eval()
120
- utils.load_checkpoint(str(checkpoint), self.model, None)
121
- self.model.to("cuda")
122
  self.sample_rate = int(self.hps.data.sampling_rate)
123
  self.lock = threading.Lock()
124
 
@@ -129,27 +106,34 @@ class Engine:
129
  sequence = commons.intersperse(sequence, 0)
130
  if not sequence:
131
  raise ValueError("The phoneme frontend produced no speakable tokens.")
132
- tokens = torch.LongTensor(sequence).cuda().unsqueeze(0)
133
- lengths = torch.LongTensor([tokens.size(1)]).cuda()
134
  return tokens, lengths
135
 
136
  @torch.inference_mode()
137
  def synthesize(self, text: str, speed: float, variation: float, seed: int) -> tuple[int, np.ndarray]:
138
  waveforms: list[np.ndarray] = []
139
  with self.lock:
140
- for index, chunk in enumerate(split_text(text)):
141
- tokens, lengths = self.tokens(chunk)
142
- torch.manual_seed(seed + index)
143
- torch.cuda.manual_seed_all(seed + index)
144
- waveform = self.model.infer(
145
- tokens,
146
- lengths,
147
- noise_scale=variation,
148
- noise_scale_w=0.8,
149
- length_scale=1.0 / speed,
150
- max_len=4000,
151
- )[0][0, 0].float().cpu().numpy()
152
- waveforms.append(waveform)
 
 
 
 
 
 
 
153
  pause = np.zeros(round(self.sample_rate * 0.18), dtype=np.float32)
154
  audio = np.concatenate(
155
  [piece for index, waveform in enumerate(waveforms) for piece in ((pause if index else np.empty(0, dtype=np.float32)), waveform)]
@@ -204,14 +188,14 @@ PROMPTS = [
204
 
205
 
206
  with gr.Blocks(title="Inflect v2 private playground") as demo:
207
- gr.HTML("""<header class="hero"><small>Private ZeroGPU playground · male checkpoints</small><h1>Type anything.<br>Hear both Inflects.</h1><p>Real text-to-waveform inference from the selected Micro 180K and Nano 144K checkpoints. No reference audio, prerecorded fallback, or teacher controls.</p></header>""")
208
  with gr.Column(elem_classes="workbench"):
209
  text = gr.Textbox(value=PROMPTS[0], lines=5, max_lines=9, label="Text")
210
  with gr.Row():
211
  model = gr.Radio(list(SPECS), value="Inflect Micro v2", label="Model")
212
  speed = gr.Slider(0.82, 1.2, value=1.0, step=0.01, label="Speaking speed")
213
  variation = gr.Slider(0.0, 1.0, value=0.667, step=0.001, label="Variation")
214
- seed = gr.Number(value=180000, precision=0, label="Repeatable seed")
215
  with gr.Row():
216
  generate = gr.Button("Generate selected model", variant="primary")
217
  compare = gr.Button("Compare Micro and Nano")
@@ -219,8 +203,8 @@ with gr.Blocks(title="Inflect v2 private playground") as demo:
219
  status = gr.Markdown("Ready.")
220
  gr.Examples([[prompt] for prompt in PROMPTS], inputs=text, label="Stress-test prompts")
221
  with gr.Row(elem_classes="comparison"):
222
- micro_audio = gr.Audio(label="Micro v2 · male · 180K")
223
- nano_audio = gr.Audio(label="Nano v2 · male · 144K")
224
  compare_status = gr.Markdown("")
225
  generate.click(synthesize_one, [text, model, speed, variation, seed], [audio, status], concurrency_limit=1)
226
  text.submit(synthesize_one, [text, model, speed, variation, seed], [audio, status], concurrency_limit=1)
 
1
  from __future__ import annotations
2
 
 
 
3
  import re
4
  import sys
5
  import threading
 
52
  params="9.36M",
53
  checkpoint=ROOT / "models" / "micro" / "model.pth",
54
  config=ROOT / "models" / "micro" / "config.json",
55
+ seed=186_000,
56
  ),
57
  "Inflect Nano v2": ModelSpec(
58
  label="Inflect Nano v2",
 
60
  params="3.97M",
61
  checkpoint=ROOT / "models" / "nano" / "model.pth",
62
  config=ROOT / "models" / "nano" / "config.json",
63
+ seed=148_000,
64
  ),
65
  }
66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  def split_text(text: str, limit: int = 280) -> list[str]:
68
  normalized = " ".join(text.split())
69
  sentences = [part.strip() for part in re.split(r"(?<=[.!?])\s+", normalized) if part.strip()]
 
84
  def __init__(self, spec: ModelSpec) -> None:
85
  if not spec.config.is_file():
86
  raise FileNotFoundError(f"Missing release configuration for {spec.label}")
87
+ if not spec.checkpoint.is_file():
88
+ raise FileNotFoundError(f"Missing release weights for {spec.label}")
89
  self.spec = spec
 
90
  self.hps = utils.get_hparams_from_file(str(spec.config))
91
  self.model = SynthesizerTrn(
92
  len(symbols),
 
94
  self.hps.train.segment_size // self.hps.data.hop_length,
95
  **self.hps.model,
96
  ).eval()
97
+ utils.load_checkpoint(str(spec.checkpoint), self.model, None)
98
+ self.device = torch.device("cpu")
99
  self.sample_rate = int(self.hps.data.sampling_rate)
100
  self.lock = threading.Lock()
101
 
 
106
  sequence = commons.intersperse(sequence, 0)
107
  if not sequence:
108
  raise ValueError("The phoneme frontend produced no speakable tokens.")
109
+ tokens = torch.LongTensor(sequence).to(self.device).unsqueeze(0)
110
+ lengths = torch.LongTensor([tokens.size(1)]).to(self.device)
111
  return tokens, lengths
112
 
113
  @torch.inference_mode()
114
  def synthesize(self, text: str, speed: float, variation: float, seed: int) -> tuple[int, np.ndarray]:
115
  waveforms: list[np.ndarray] = []
116
  with self.lock:
117
+ self.device = torch.device("cuda")
118
+ self.model.to(self.device)
119
+ try:
120
+ for index, chunk in enumerate(split_text(text)):
121
+ tokens, lengths = self.tokens(chunk)
122
+ torch.manual_seed(seed + index)
123
+ torch.cuda.manual_seed_all(seed + index)
124
+ waveform = self.model.infer(
125
+ tokens,
126
+ lengths,
127
+ noise_scale=variation,
128
+ noise_scale_w=0.8,
129
+ length_scale=1.0 / speed,
130
+ max_len=4000,
131
+ )[0][0, 0].float().cpu().numpy()
132
+ waveforms.append(waveform)
133
+ finally:
134
+ self.model.to("cpu")
135
+ self.device = torch.device("cpu")
136
+ torch.cuda.empty_cache()
137
  pause = np.zeros(round(self.sample_rate * 0.18), dtype=np.float32)
138
  audio = np.concatenate(
139
  [piece for index, waveform in enumerate(waveforms) for piece in ((pause if index else np.empty(0, dtype=np.float32)), waveform)]
 
188
 
189
 
190
  with gr.Blocks(title="Inflect v2 private playground") as demo:
191
+ gr.HTML("""<header class="hero"><small>Private ZeroGPU playground · male checkpoints</small><h1>Type anything.<br>Hear both Inflects.</h1><p>Real text-to-waveform inference from the selected Micro 186K and Nano 148K checkpoints. No reference audio, prerecorded fallback, or teacher controls.</p></header>""")
192
  with gr.Column(elem_classes="workbench"):
193
  text = gr.Textbox(value=PROMPTS[0], lines=5, max_lines=9, label="Text")
194
  with gr.Row():
195
  model = gr.Radio(list(SPECS), value="Inflect Micro v2", label="Model")
196
  speed = gr.Slider(0.82, 1.2, value=1.0, step=0.01, label="Speaking speed")
197
  variation = gr.Slider(0.0, 1.0, value=0.667, step=0.001, label="Variation")
198
+ seed = gr.Number(value=186000, precision=0, label="Repeatable seed")
199
  with gr.Row():
200
  generate = gr.Button("Generate selected model", variant="primary")
201
  compare = gr.Button("Compare Micro and Nano")
 
203
  status = gr.Markdown("Ready.")
204
  gr.Examples([[prompt] for prompt in PROMPTS], inputs=text, label="Stress-test prompts")
205
  with gr.Row(elem_classes="comparison"):
206
+ micro_audio = gr.Audio(label="Micro v2 · male · 186K")
207
+ nano_audio = gr.Audio(label="Nano v2 · male · 148K")
208
  compare_status = gr.Markdown("")
209
  generate.click(synthesize_one, [text, model, speed, variation, seed], [audio, status], concurrency_limit=1)
210
  text.submit(synthesize_one, [text, model, speed, variation, seed], [audio, status], concurrency_limit=1)
inflect_nano_v2_frontend.py CHANGED
@@ -160,6 +160,12 @@ def _expand_time(match: re.Match[str]) -> str:
160
  return " ".join(pieces)
161
 
162
 
 
 
 
 
 
 
163
  def _expand_version(match: re.Match[str]) -> str:
164
  return " point ".join(_words(int(part)) for part in match.group(0).split("."))
165
 
@@ -205,6 +211,7 @@ def normalize_text(text: str) -> str:
205
  text = re.sub(r"\$(\d[\d,]*(?:\.\d{1,2})?)", _expand_money, text)
206
  text = re.sub(r"\b(0?[1-9]|1[0-2])/(0?[1-9]|[12]\d|3[01])/(20\d{2}|19\d{2})\b", _expand_date_slash, text)
207
  text = re.sub(r"\b(\d{1,2}):(\d{2})\s*([AaPp]\.?\s*[Mm]\.?)?\b", _expand_time, text)
 
208
  text = re.sub(r"\b(\d{3})-(\d{4})\b", _expand_phone, text)
209
  text = re.sub(r"\b\d+(?:\.\d+){2,}\b", _expand_version, text)
210
  text = re.sub(r"\b(\d+)\.(\d+)\b", _expand_decimal, text)
 
160
  return " ".join(pieces)
161
 
162
 
163
+ def _expand_bare_hour_time(match: re.Match[str]) -> str:
164
+ hour = int(match.group(1))
165
+ suffix = re.sub(r"[^A-Za-z]", "", match.group(2)).lower()
166
+ return f"{_words(hour)} {' '.join(suffix)}"
167
+
168
+
169
  def _expand_version(match: re.Match[str]) -> str:
170
  return " point ".join(_words(int(part)) for part in match.group(0).split("."))
171
 
 
211
  text = re.sub(r"\$(\d[\d,]*(?:\.\d{1,2})?)", _expand_money, text)
212
  text = re.sub(r"\b(0?[1-9]|1[0-2])/(0?[1-9]|[12]\d|3[01])/(20\d{2}|19\d{2})\b", _expand_date_slash, text)
213
  text = re.sub(r"\b(\d{1,2}):(\d{2})\s*([AaPp]\.?\s*[Mm]\.?)?\b", _expand_time, text)
214
+ text = re.sub(r"\b(\d{1,2})\s*([AaPp]\.?\s*[Mm]\.?)\b", _expand_bare_hour_time, text)
215
  text = re.sub(r"\b(\d{3})-(\d{4})\b", _expand_phone, text)
216
  text = re.sub(r"\b\d+(?:\.\d+){2,}\b", _expand_version, text)
217
  text = re.sub(r"\b(\d+)\.(\d+)\b", _expand_decimal, text)
models/micro/config.json CHANGED
@@ -1,108 +1,108 @@
1
- {
2
- "train": {
3
- "log_interval": 25,
4
- "eval_interval": 2000,
5
- "max_steps": 180000,
6
- "seed": 20260717,
7
- "epochs": 1000,
8
- "learning_rate": 2e-05,
9
- "resume_learning_rate": 2e-05,
10
- "betas": [
11
- 0.8,
12
- 0.99
13
- ],
14
- "eps": 1e-09,
15
- "batch_size": 32,
16
- "num_workers": 8,
17
- "fp16_run": true,
18
- "lr_decay": 0.9999,
19
- "segment_size": 16384,
20
- "init_lr_ratio": 1,
21
- "warmup_epochs": 0,
22
- "c_mel": 45,
23
- "c_kl": 1.0,
24
- "c_stft": 1.0,
25
- "stft_resolutions": [
26
- [
27
- 1024,
28
- 256,
29
- 1024
30
- ],
31
- [
32
- 512,
33
- 128,
34
- 512
35
- ],
36
- [
37
- 256,
38
- 64,
39
- 256
40
- ]
41
- ],
42
- "freeze_linguistic": false
43
- },
44
- "data": {
45
- "training_files": "filelists/inflect_qwenfull_train_divrepair_v1.txt",
46
- "validation_files": "filelists/inflect_qwenfull_dev_inflect_frontend.txt",
47
- "text_cleaners": [],
48
- "max_wav_value": 32768.0,
49
- "sampling_rate": 24000,
50
- "filter_length": 1024,
51
- "hop_length": 256,
52
- "win_length": 1024,
53
- "n_mel_channels": 80,
54
- "mel_fmin": 0.0,
55
- "mel_fmax": 12000.0,
56
- "add_blank": true,
57
- "n_speakers": 0,
58
- "cleaned_text": true
59
- },
60
- "model": {
61
- "inter_channels": 192,
62
- "hidden_channels": 96,
63
- "filter_channels": 768,
64
- "n_heads": 2,
65
- "n_layers": 3,
66
- "kernel_size": 3,
67
- "p_dropout": 0.1,
68
- "resblock": "1",
69
- "resblock_kernel_sizes": [
70
- 3,
71
- 7,
72
- 11
73
- ],
74
- "resblock_dilation_sizes": [
75
- [
76
- 1,
77
- 3,
78
- 5
79
- ],
80
- [
81
- 1,
82
- 3,
83
- 5
84
- ],
85
- [
86
- 1,
87
- 3,
88
- 5
89
- ]
90
- ],
91
- "upsample_rates": [
92
- 8,
93
- 8,
94
- 2,
95
- 2
96
- ],
97
- "upsample_initial_channel": 320,
98
- "upsample_kernel_sizes": [
99
- 16,
100
- 16,
101
- 4,
102
- 4
103
- ],
104
- "n_layers_q": 3,
105
- "use_spectral_norm": false,
106
- "use_sdp": false
107
- }
108
- }
 
1
+ {
2
+ "train": {
3
+ "log_interval": 25,
4
+ "eval_interval": 2000,
5
+ "max_steps": 188000,
6
+ "seed": 20260720,
7
+ "epochs": 1000,
8
+ "learning_rate": 5e-06,
9
+ "resume_learning_rate": 5e-06,
10
+ "betas": [
11
+ 0.8,
12
+ 0.99
13
+ ],
14
+ "eps": 1e-09,
15
+ "batch_size": 32,
16
+ "num_workers": 8,
17
+ "fp16_run": true,
18
+ "lr_decay": 0.9999,
19
+ "segment_size": 16384,
20
+ "init_lr_ratio": 1,
21
+ "warmup_epochs": 0,
22
+ "c_mel": 45,
23
+ "c_kl": 1.0,
24
+ "c_stft": 1.5,
25
+ "stft_resolutions": [
26
+ [
27
+ 1024,
28
+ 256,
29
+ 1024
30
+ ],
31
+ [
32
+ 512,
33
+ 128,
34
+ 512
35
+ ],
36
+ [
37
+ 256,
38
+ 64,
39
+ 256
40
+ ]
41
+ ],
42
+ "freeze_linguistic": true
43
+ },
44
+ "data": {
45
+ "training_files": "filelists/inflect_qwenfull_train_divrepair_v1.txt",
46
+ "validation_files": "filelists/inflect_qwenfull_dev_inflect_frontend.txt",
47
+ "text_cleaners": [],
48
+ "max_wav_value": 32768.0,
49
+ "sampling_rate": 24000,
50
+ "filter_length": 1024,
51
+ "hop_length": 256,
52
+ "win_length": 1024,
53
+ "n_mel_channels": 80,
54
+ "mel_fmin": 0.0,
55
+ "mel_fmax": 12000.0,
56
+ "add_blank": true,
57
+ "n_speakers": 0,
58
+ "cleaned_text": true
59
+ },
60
+ "model": {
61
+ "inter_channels": 192,
62
+ "hidden_channels": 96,
63
+ "filter_channels": 768,
64
+ "n_heads": 2,
65
+ "n_layers": 3,
66
+ "kernel_size": 3,
67
+ "p_dropout": 0.1,
68
+ "resblock": "1",
69
+ "resblock_kernel_sizes": [
70
+ 3,
71
+ 7,
72
+ 11
73
+ ],
74
+ "resblock_dilation_sizes": [
75
+ [
76
+ 1,
77
+ 3,
78
+ 5
79
+ ],
80
+ [
81
+ 1,
82
+ 3,
83
+ 5
84
+ ],
85
+ [
86
+ 1,
87
+ 3,
88
+ 5
89
+ ]
90
+ ],
91
+ "upsample_rates": [
92
+ 8,
93
+ 8,
94
+ 2,
95
+ 2
96
+ ],
97
+ "upsample_initial_channel": 320,
98
+ "upsample_kernel_sizes": [
99
+ 16,
100
+ 16,
101
+ 4,
102
+ 4
103
+ ],
104
+ "n_layers_q": 3,
105
+ "use_spectral_norm": false,
106
+ "use_sdp": false
107
+ }
108
+ }
models/micro/model.part.01 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cde9434ad9b1bdcb552d0de38b4b129fd07d901f4f015ba928ccaf54d1776058
3
- size 8388608
 
 
 
 
models/micro/model.part.02 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:c3075fe9edbfb599170d4872e9f08d526296e9e43407673fd532dec5f33186ff
3
- size 8388608
 
 
 
 
models/micro/model.part.03.00 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d9994d554b0e544b8e5e594fcc4d563c2e0fd7d15e1d6b89b09ff3702b50882f
3
- size 2097152
 
 
 
 
models/micro/model.part.03.01 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e09e1eff3d2b9414980e207b7d43b4ef31109a053e0a46ad7ba7b04eeee935e7
3
- size 2097152
 
 
 
 
models/micro/model.part.03.02 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7c281437a3c5a054ed1c839ff8a611bf15efcfe1736cb7699d8eb766979660f0
3
- size 2097152
 
 
 
 
models/micro/model.part.03.03 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:819a9d6e5f71d304be88e2125e7a10b44cb0b5acef3b54c40349cceb032e7eac
3
- size 2097152
 
 
 
 
models/micro/model.part.04 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d14452f3ec69ddb122d21baaf081642f44df851dbcb8f3ad0571041a2ba4cbe9
3
- size 8388608
 
 
 
 
models/micro/model.part.05 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a2fec44a02428a3e412b964172884cc0cb30bd6134c80bbdfb1da12d40ef3fa5
3
- size 3093351
 
 
 
 
models/micro/{model.part.00 → model.pth} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:349fe2e352d6e9cf54e302f002a389924f7a984b3a014df995e5594dbd012cb0
3
- size 8388608
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3eede065c9ccfa88ade0a5a9a5c23de34afcbbb32213e59aad44d5cf100fdee8
3
+ size 37529995
models/nano/config.json CHANGED
@@ -1,108 +1,108 @@
1
- {
2
- "train": {
3
- "log_interval": 25,
4
- "eval_interval": 4000,
5
- "max_steps": 144000,
6
- "seed": 20260717,
7
- "epochs": 1000,
8
- "learning_rate": 4e-05,
9
- "resume_learning_rate": 4e-05,
10
- "betas": [
11
- 0.8,
12
- 0.99
13
- ],
14
- "eps": 1e-09,
15
- "batch_size": 64,
16
- "num_workers": 12,
17
- "fp16_run": true,
18
- "lr_decay": 0.999875,
19
- "segment_size": 16384,
20
- "init_lr_ratio": 1,
21
- "warmup_epochs": 0,
22
- "c_mel": 45,
23
- "c_kl": 1.0,
24
- "c_stft": 1.5,
25
- "stft_resolutions": [
26
- [
27
- 1024,
28
- 256,
29
- 1024
30
- ],
31
- [
32
- 512,
33
- 128,
34
- 512
35
- ],
36
- [
37
- 256,
38
- 64,
39
- 256
40
- ]
41
- ],
42
- "freeze_linguistic": true
43
- },
44
- "data": {
45
- "training_files": "filelists/inflect_qwenfull_train_inflect_frontend.txt",
46
- "validation_files": "filelists/inflect_qwenfull_dev_inflect_frontend.txt",
47
- "text_cleaners": [],
48
- "max_wav_value": 32768.0,
49
- "sampling_rate": 24000,
50
- "filter_length": 1024,
51
- "hop_length": 256,
52
- "win_length": 1024,
53
- "n_mel_channels": 80,
54
- "mel_fmin": 0.0,
55
- "mel_fmax": 12000.0,
56
- "add_blank": true,
57
- "n_speakers": 0,
58
- "cleaned_text": true
59
- },
60
- "model": {
61
- "inter_channels": 128,
62
- "hidden_channels": 72,
63
- "filter_channels": 384,
64
- "n_heads": 2,
65
- "n_layers": 3,
66
- "kernel_size": 3,
67
- "p_dropout": 0.1,
68
- "resblock": "1",
69
- "resblock_kernel_sizes": [
70
- 3,
71
- 7,
72
- 11
73
- ],
74
- "resblock_dilation_sizes": [
75
- [
76
- 1,
77
- 3,
78
- 5
79
- ],
80
- [
81
- 1,
82
- 3,
83
- 5
84
- ],
85
- [
86
- 1,
87
- 3,
88
- 5
89
- ]
90
- ],
91
- "upsample_rates": [
92
- 8,
93
- 8,
94
- 2,
95
- 2
96
- ],
97
- "upsample_initial_channel": 192,
98
- "upsample_kernel_sizes": [
99
- 16,
100
- 16,
101
- 4,
102
- 4
103
- ],
104
- "n_layers_q": 2,
105
- "use_spectral_norm": false,
106
- "use_sdp": false
107
- }
108
- }
 
1
+ {
2
+ "train": {
3
+ "log_interval": 25,
4
+ "eval_interval": 4000,
5
+ "max_steps": 156000,
6
+ "seed": 20260720,
7
+ "epochs": 1000,
8
+ "learning_rate": 1e-05,
9
+ "resume_learning_rate": 1e-05,
10
+ "betas": [
11
+ 0.8,
12
+ 0.99
13
+ ],
14
+ "eps": 1e-09,
15
+ "batch_size": 64,
16
+ "num_workers": 12,
17
+ "fp16_run": true,
18
+ "lr_decay": 0.999875,
19
+ "segment_size": 16384,
20
+ "init_lr_ratio": 1,
21
+ "warmup_epochs": 0,
22
+ "c_mel": 45,
23
+ "c_kl": 1.0,
24
+ "c_stft": 1.5,
25
+ "stft_resolutions": [
26
+ [
27
+ 1024,
28
+ 256,
29
+ 1024
30
+ ],
31
+ [
32
+ 512,
33
+ 128,
34
+ 512
35
+ ],
36
+ [
37
+ 256,
38
+ 64,
39
+ 256
40
+ ]
41
+ ],
42
+ "freeze_linguistic": true
43
+ },
44
+ "data": {
45
+ "training_files": "filelists/inflect_qwenfull_train_inflect_frontend.txt",
46
+ "validation_files": "filelists/inflect_qwenfull_dev_inflect_frontend.txt",
47
+ "text_cleaners": [],
48
+ "max_wav_value": 32768.0,
49
+ "sampling_rate": 24000,
50
+ "filter_length": 1024,
51
+ "hop_length": 256,
52
+ "win_length": 1024,
53
+ "n_mel_channels": 80,
54
+ "mel_fmin": 0.0,
55
+ "mel_fmax": 12000.0,
56
+ "add_blank": true,
57
+ "n_speakers": 0,
58
+ "cleaned_text": true
59
+ },
60
+ "model": {
61
+ "inter_channels": 128,
62
+ "hidden_channels": 72,
63
+ "filter_channels": 384,
64
+ "n_heads": 2,
65
+ "n_layers": 3,
66
+ "kernel_size": 3,
67
+ "p_dropout": 0.1,
68
+ "resblock": "1",
69
+ "resblock_kernel_sizes": [
70
+ 3,
71
+ 7,
72
+ 11
73
+ ],
74
+ "resblock_dilation_sizes": [
75
+ [
76
+ 1,
77
+ 3,
78
+ 5
79
+ ],
80
+ [
81
+ 1,
82
+ 3,
83
+ 5
84
+ ],
85
+ [
86
+ 1,
87
+ 3,
88
+ 5
89
+ ]
90
+ ],
91
+ "upsample_rates": [
92
+ 8,
93
+ 8,
94
+ 2,
95
+ 2
96
+ ],
97
+ "upsample_initial_channel": 192,
98
+ "upsample_kernel_sizes": [
99
+ 16,
100
+ 16,
101
+ 4,
102
+ 4
103
+ ],
104
+ "n_layers_q": 2,
105
+ "use_spectral_norm": false,
106
+ "use_sdp": false
107
+ }
108
+ }
models/nano/model.pth CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ad1992ac7ed8a933eb95df0b647714df4966b3cd0abeb9846e04c6d817483d76
3
- size 20257891
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfca468489c9069361d6b87b295a17eef611af8ff09854ce0b80305d9122f5b3
3
+ size 15971083
runtime/attentions.py CHANGED
@@ -1,303 +1,303 @@
1
- import copy
2
- import math
3
- import numpy as np
4
- import torch
5
- from torch import nn
6
- from torch.nn import functional as F
7
-
8
- import commons
9
- import modules
10
- from modules import LayerNorm
11
-
12
-
13
- class Encoder(nn.Module):
14
- def __init__(self, hidden_channels, filter_channels, n_heads, n_layers, kernel_size=1, p_dropout=0., window_size=4, **kwargs):
15
- super().__init__()
16
- self.hidden_channels = hidden_channels
17
- self.filter_channels = filter_channels
18
- self.n_heads = n_heads
19
- self.n_layers = n_layers
20
- self.kernel_size = kernel_size
21
- self.p_dropout = p_dropout
22
- self.window_size = window_size
23
-
24
- self.drop = nn.Dropout(p_dropout)
25
- self.attn_layers = nn.ModuleList()
26
- self.norm_layers_1 = nn.ModuleList()
27
- self.ffn_layers = nn.ModuleList()
28
- self.norm_layers_2 = nn.ModuleList()
29
- for i in range(self.n_layers):
30
- self.attn_layers.append(MultiHeadAttention(hidden_channels, hidden_channels, n_heads, p_dropout=p_dropout, window_size=window_size))
31
- self.norm_layers_1.append(LayerNorm(hidden_channels))
32
- self.ffn_layers.append(FFN(hidden_channels, hidden_channels, filter_channels, kernel_size, p_dropout=p_dropout))
33
- self.norm_layers_2.append(LayerNorm(hidden_channels))
34
-
35
- def forward(self, x, x_mask):
36
- attn_mask = x_mask.unsqueeze(2) * x_mask.unsqueeze(-1)
37
- x = x * x_mask
38
- for i in range(self.n_layers):
39
- y = self.attn_layers[i](x, x, attn_mask)
40
- y = self.drop(y)
41
- x = self.norm_layers_1[i](x + y)
42
-
43
- y = self.ffn_layers[i](x, x_mask)
44
- y = self.drop(y)
45
- x = self.norm_layers_2[i](x + y)
46
- x = x * x_mask
47
- return x
48
-
49
-
50
- class Decoder(nn.Module):
51
- def __init__(self, hidden_channels, filter_channels, n_heads, n_layers, kernel_size=1, p_dropout=0., proximal_bias=False, proximal_init=True, **kwargs):
52
- super().__init__()
53
- self.hidden_channels = hidden_channels
54
- self.filter_channels = filter_channels
55
- self.n_heads = n_heads
56
- self.n_layers = n_layers
57
- self.kernel_size = kernel_size
58
- self.p_dropout = p_dropout
59
- self.proximal_bias = proximal_bias
60
- self.proximal_init = proximal_init
61
-
62
- self.drop = nn.Dropout(p_dropout)
63
- self.self_attn_layers = nn.ModuleList()
64
- self.norm_layers_0 = nn.ModuleList()
65
- self.encdec_attn_layers = nn.ModuleList()
66
- self.norm_layers_1 = nn.ModuleList()
67
- self.ffn_layers = nn.ModuleList()
68
- self.norm_layers_2 = nn.ModuleList()
69
- for i in range(self.n_layers):
70
- self.self_attn_layers.append(MultiHeadAttention(hidden_channels, hidden_channels, n_heads, p_dropout=p_dropout, proximal_bias=proximal_bias, proximal_init=proximal_init))
71
- self.norm_layers_0.append(LayerNorm(hidden_channels))
72
- self.encdec_attn_layers.append(MultiHeadAttention(hidden_channels, hidden_channels, n_heads, p_dropout=p_dropout))
73
- self.norm_layers_1.append(LayerNorm(hidden_channels))
74
- self.ffn_layers.append(FFN(hidden_channels, hidden_channels, filter_channels, kernel_size, p_dropout=p_dropout, causal=True))
75
- self.norm_layers_2.append(LayerNorm(hidden_channels))
76
-
77
- def forward(self, x, x_mask, h, h_mask):
78
- """
79
- x: decoder input
80
- h: encoder output
81
- """
82
- self_attn_mask = commons.subsequent_mask(x_mask.size(2)).to(device=x.device, dtype=x.dtype)
83
- encdec_attn_mask = h_mask.unsqueeze(2) * x_mask.unsqueeze(-1)
84
- x = x * x_mask
85
- for i in range(self.n_layers):
86
- y = self.self_attn_layers[i](x, x, self_attn_mask)
87
- y = self.drop(y)
88
- x = self.norm_layers_0[i](x + y)
89
-
90
- y = self.encdec_attn_layers[i](x, h, encdec_attn_mask)
91
- y = self.drop(y)
92
- x = self.norm_layers_1[i](x + y)
93
-
94
- y = self.ffn_layers[i](x, x_mask)
95
- y = self.drop(y)
96
- x = self.norm_layers_2[i](x + y)
97
- x = x * x_mask
98
- return x
99
-
100
-
101
- class MultiHeadAttention(nn.Module):
102
- def __init__(self, channels, out_channels, n_heads, p_dropout=0., window_size=None, heads_share=True, block_length=None, proximal_bias=False, proximal_init=False):
103
- super().__init__()
104
- assert channels % n_heads == 0
105
-
106
- self.channels = channels
107
- self.out_channels = out_channels
108
- self.n_heads = n_heads
109
- self.p_dropout = p_dropout
110
- self.window_size = window_size
111
- self.heads_share = heads_share
112
- self.block_length = block_length
113
- self.proximal_bias = proximal_bias
114
- self.proximal_init = proximal_init
115
- self.attn = None
116
-
117
- self.k_channels = channels // n_heads
118
- self.conv_q = nn.Conv1d(channels, channels, 1)
119
- self.conv_k = nn.Conv1d(channels, channels, 1)
120
- self.conv_v = nn.Conv1d(channels, channels, 1)
121
- self.conv_o = nn.Conv1d(channels, out_channels, 1)
122
- self.drop = nn.Dropout(p_dropout)
123
-
124
- if window_size is not None:
125
- n_heads_rel = 1 if heads_share else n_heads
126
- rel_stddev = self.k_channels**-0.5
127
- self.emb_rel_k = nn.Parameter(torch.randn(n_heads_rel, window_size * 2 + 1, self.k_channels) * rel_stddev)
128
- self.emb_rel_v = nn.Parameter(torch.randn(n_heads_rel, window_size * 2 + 1, self.k_channels) * rel_stddev)
129
-
130
- nn.init.xavier_uniform_(self.conv_q.weight)
131
- nn.init.xavier_uniform_(self.conv_k.weight)
132
- nn.init.xavier_uniform_(self.conv_v.weight)
133
- if proximal_init:
134
- with torch.no_grad():
135
- self.conv_k.weight.copy_(self.conv_q.weight)
136
- self.conv_k.bias.copy_(self.conv_q.bias)
137
-
138
- def forward(self, x, c, attn_mask=None):
139
- q = self.conv_q(x)
140
- k = self.conv_k(c)
141
- v = self.conv_v(c)
142
-
143
- x, self.attn = self.attention(q, k, v, mask=attn_mask)
144
-
145
- x = self.conv_o(x)
146
- return x
147
-
148
- def attention(self, query, key, value, mask=None):
149
- # reshape [b, d, t] -> [b, n_h, t, d_k]
150
- b, d, t_s, t_t = (*key.size(), query.size(2))
151
- query = query.view(b, self.n_heads, self.k_channels, t_t).transpose(2, 3)
152
- key = key.view(b, self.n_heads, self.k_channels, t_s).transpose(2, 3)
153
- value = value.view(b, self.n_heads, self.k_channels, t_s).transpose(2, 3)
154
-
155
- scores = torch.matmul(query / math.sqrt(self.k_channels), key.transpose(-2, -1))
156
- if self.window_size is not None:
157
- assert t_s == t_t, "Relative attention is only available for self-attention."
158
- key_relative_embeddings = self._get_relative_embeddings(self.emb_rel_k, t_s)
159
- rel_logits = self._matmul_with_relative_keys(query /math.sqrt(self.k_channels), key_relative_embeddings)
160
- scores_local = self._relative_position_to_absolute_position(rel_logits)
161
- scores = scores + scores_local
162
- if self.proximal_bias:
163
- assert t_s == t_t, "Proximal bias is only available for self-attention."
164
- scores = scores + self._attention_bias_proximal(t_s).to(device=scores.device, dtype=scores.dtype)
165
- if mask is not None:
166
- scores = scores.masked_fill(mask == 0, -1e4)
167
- if self.block_length is not None:
168
- assert t_s == t_t, "Local attention is only available for self-attention."
169
- block_mask = torch.ones_like(scores).triu(-self.block_length).tril(self.block_length)
170
- scores = scores.masked_fill(block_mask == 0, -1e4)
171
- p_attn = F.softmax(scores, dim=-1) # [b, n_h, t_t, t_s]
172
- p_attn = self.drop(p_attn)
173
- output = torch.matmul(p_attn, value)
174
- if self.window_size is not None:
175
- relative_weights = self._absolute_position_to_relative_position(p_attn)
176
- value_relative_embeddings = self._get_relative_embeddings(self.emb_rel_v, t_s)
177
- output = output + self._matmul_with_relative_values(relative_weights, value_relative_embeddings)
178
- output = output.transpose(2, 3).contiguous().view(b, d, t_t) # [b, n_h, t_t, d_k] -> [b, d, t_t]
179
- return output, p_attn
180
-
181
- def _matmul_with_relative_values(self, x, y):
182
- """
183
- x: [b, h, l, m]
184
- y: [h or 1, m, d]
185
- ret: [b, h, l, d]
186
- """
187
- ret = torch.matmul(x, y.unsqueeze(0))
188
- return ret
189
-
190
- def _matmul_with_relative_keys(self, x, y):
191
- """
192
- x: [b, h, l, d]
193
- y: [h or 1, m, d]
194
- ret: [b, h, l, m]
195
- """
196
- ret = torch.matmul(x, y.unsqueeze(0).transpose(-2, -1))
197
- return ret
198
-
199
- def _get_relative_embeddings(self, relative_embeddings, length):
200
- max_relative_position = 2 * self.window_size + 1
201
- # Pad first before slice to avoid using cond ops.
202
- pad_length = max(length - (self.window_size + 1), 0)
203
- slice_start_position = max((self.window_size + 1) - length, 0)
204
- slice_end_position = slice_start_position + 2 * length - 1
205
- if pad_length > 0:
206
- padded_relative_embeddings = F.pad(
207
- relative_embeddings,
208
- commons.convert_pad_shape([[0, 0], [pad_length, pad_length], [0, 0]]))
209
- else:
210
- padded_relative_embeddings = relative_embeddings
211
- used_relative_embeddings = padded_relative_embeddings[:,slice_start_position:slice_end_position]
212
- return used_relative_embeddings
213
-
214
- def _relative_position_to_absolute_position(self, x):
215
- """
216
- x: [b, h, l, 2*l-1]
217
- ret: [b, h, l, l]
218
- """
219
- batch, heads, length, _ = x.size()
220
- # Concat columns of pad to shift from relative to absolute indexing.
221
- x = F.pad(x, commons.convert_pad_shape([[0,0],[0,0],[0,0],[0,1]]))
222
-
223
- # Concat extra elements so to add up to shape (len+1, 2*len-1).
224
- x_flat = x.view([batch, heads, length * 2 * length])
225
- x_flat = F.pad(x_flat, commons.convert_pad_shape([[0,0],[0,0],[0,length-1]]))
226
-
227
- # Reshape and slice out the padded elements.
228
- x_final = x_flat.view([batch, heads, length+1, 2*length-1])[:, :, :length, length-1:]
229
- return x_final
230
-
231
- def _absolute_position_to_relative_position(self, x):
232
- """
233
- x: [b, h, l, l]
234
- ret: [b, h, l, 2*l-1]
235
- """
236
- batch, heads, length, _ = x.size()
237
- # padd along column
238
- x = F.pad(x, commons.convert_pad_shape([[0, 0], [0, 0], [0, 0], [0, length-1]]))
239
- x_flat = x.view([batch, heads, length**2 + length*(length -1)])
240
- # add 0's in the beginning that will skew the elements after reshape
241
- x_flat = F.pad(x_flat, commons.convert_pad_shape([[0, 0], [0, 0], [length, 0]]))
242
- x_final = x_flat.view([batch, heads, length, 2*length])[:,:,:,1:]
243
- return x_final
244
-
245
- def _attention_bias_proximal(self, length):
246
- """Bias for self-attention to encourage attention to close positions.
247
- Args:
248
- length: an integer scalar.
249
- Returns:
250
- a Tensor with shape [1, 1, length, length]
251
- """
252
- r = torch.arange(length, dtype=torch.float32)
253
- diff = torch.unsqueeze(r, 0) - torch.unsqueeze(r, 1)
254
- return torch.unsqueeze(torch.unsqueeze(-torch.log1p(torch.abs(diff)), 0), 0)
255
-
256
-
257
- class FFN(nn.Module):
258
- def __init__(self, in_channels, out_channels, filter_channels, kernel_size, p_dropout=0., activation=None, causal=False):
259
- super().__init__()
260
- self.in_channels = in_channels
261
- self.out_channels = out_channels
262
- self.filter_channels = filter_channels
263
- self.kernel_size = kernel_size
264
- self.p_dropout = p_dropout
265
- self.activation = activation
266
- self.causal = causal
267
-
268
- if causal:
269
- self.padding = self._causal_padding
270
- else:
271
- self.padding = self._same_padding
272
-
273
- self.conv_1 = nn.Conv1d(in_channels, filter_channels, kernel_size)
274
- self.conv_2 = nn.Conv1d(filter_channels, out_channels, kernel_size)
275
- self.drop = nn.Dropout(p_dropout)
276
-
277
- def forward(self, x, x_mask):
278
- x = self.conv_1(self.padding(x * x_mask))
279
- if self.activation == "gelu":
280
- x = x * torch.sigmoid(1.702 * x)
281
- else:
282
- x = torch.relu(x)
283
- x = self.drop(x)
284
- x = self.conv_2(self.padding(x * x_mask))
285
- return x * x_mask
286
-
287
- def _causal_padding(self, x):
288
- if self.kernel_size == 1:
289
- return x
290
- pad_l = self.kernel_size - 1
291
- pad_r = 0
292
- padding = [[0, 0], [0, 0], [pad_l, pad_r]]
293
- x = F.pad(x, commons.convert_pad_shape(padding))
294
- return x
295
-
296
- def _same_padding(self, x):
297
- if self.kernel_size == 1:
298
- return x
299
- pad_l = (self.kernel_size - 1) // 2
300
- pad_r = self.kernel_size // 2
301
- padding = [[0, 0], [0, 0], [pad_l, pad_r]]
302
- x = F.pad(x, commons.convert_pad_shape(padding))
303
- return x
 
1
+ import copy
2
+ import math
3
+ import numpy as np
4
+ import torch
5
+ from torch import nn
6
+ from torch.nn import functional as F
7
+
8
+ import commons
9
+ import modules
10
+ from modules import LayerNorm
11
+
12
+
13
+ class Encoder(nn.Module):
14
+ def __init__(self, hidden_channels, filter_channels, n_heads, n_layers, kernel_size=1, p_dropout=0., window_size=4, **kwargs):
15
+ super().__init__()
16
+ self.hidden_channels = hidden_channels
17
+ self.filter_channels = filter_channels
18
+ self.n_heads = n_heads
19
+ self.n_layers = n_layers
20
+ self.kernel_size = kernel_size
21
+ self.p_dropout = p_dropout
22
+ self.window_size = window_size
23
+
24
+ self.drop = nn.Dropout(p_dropout)
25
+ self.attn_layers = nn.ModuleList()
26
+ self.norm_layers_1 = nn.ModuleList()
27
+ self.ffn_layers = nn.ModuleList()
28
+ self.norm_layers_2 = nn.ModuleList()
29
+ for i in range(self.n_layers):
30
+ self.attn_layers.append(MultiHeadAttention(hidden_channels, hidden_channels, n_heads, p_dropout=p_dropout, window_size=window_size))
31
+ self.norm_layers_1.append(LayerNorm(hidden_channels))
32
+ self.ffn_layers.append(FFN(hidden_channels, hidden_channels, filter_channels, kernel_size, p_dropout=p_dropout))
33
+ self.norm_layers_2.append(LayerNorm(hidden_channels))
34
+
35
+ def forward(self, x, x_mask):
36
+ attn_mask = x_mask.unsqueeze(2) * x_mask.unsqueeze(-1)
37
+ x = x * x_mask
38
+ for i in range(self.n_layers):
39
+ y = self.attn_layers[i](x, x, attn_mask)
40
+ y = self.drop(y)
41
+ x = self.norm_layers_1[i](x + y)
42
+
43
+ y = self.ffn_layers[i](x, x_mask)
44
+ y = self.drop(y)
45
+ x = self.norm_layers_2[i](x + y)
46
+ x = x * x_mask
47
+ return x
48
+
49
+
50
+ class Decoder(nn.Module):
51
+ def __init__(self, hidden_channels, filter_channels, n_heads, n_layers, kernel_size=1, p_dropout=0., proximal_bias=False, proximal_init=True, **kwargs):
52
+ super().__init__()
53
+ self.hidden_channels = hidden_channels
54
+ self.filter_channels = filter_channels
55
+ self.n_heads = n_heads
56
+ self.n_layers = n_layers
57
+ self.kernel_size = kernel_size
58
+ self.p_dropout = p_dropout
59
+ self.proximal_bias = proximal_bias
60
+ self.proximal_init = proximal_init
61
+
62
+ self.drop = nn.Dropout(p_dropout)
63
+ self.self_attn_layers = nn.ModuleList()
64
+ self.norm_layers_0 = nn.ModuleList()
65
+ self.encdec_attn_layers = nn.ModuleList()
66
+ self.norm_layers_1 = nn.ModuleList()
67
+ self.ffn_layers = nn.ModuleList()
68
+ self.norm_layers_2 = nn.ModuleList()
69
+ for i in range(self.n_layers):
70
+ self.self_attn_layers.append(MultiHeadAttention(hidden_channels, hidden_channels, n_heads, p_dropout=p_dropout, proximal_bias=proximal_bias, proximal_init=proximal_init))
71
+ self.norm_layers_0.append(LayerNorm(hidden_channels))
72
+ self.encdec_attn_layers.append(MultiHeadAttention(hidden_channels, hidden_channels, n_heads, p_dropout=p_dropout))
73
+ self.norm_layers_1.append(LayerNorm(hidden_channels))
74
+ self.ffn_layers.append(FFN(hidden_channels, hidden_channels, filter_channels, kernel_size, p_dropout=p_dropout, causal=True))
75
+ self.norm_layers_2.append(LayerNorm(hidden_channels))
76
+
77
+ def forward(self, x, x_mask, h, h_mask):
78
+ """
79
+ x: decoder input
80
+ h: encoder output
81
+ """
82
+ self_attn_mask = commons.subsequent_mask(x_mask.size(2)).to(device=x.device, dtype=x.dtype)
83
+ encdec_attn_mask = h_mask.unsqueeze(2) * x_mask.unsqueeze(-1)
84
+ x = x * x_mask
85
+ for i in range(self.n_layers):
86
+ y = self.self_attn_layers[i](x, x, self_attn_mask)
87
+ y = self.drop(y)
88
+ x = self.norm_layers_0[i](x + y)
89
+
90
+ y = self.encdec_attn_layers[i](x, h, encdec_attn_mask)
91
+ y = self.drop(y)
92
+ x = self.norm_layers_1[i](x + y)
93
+
94
+ y = self.ffn_layers[i](x, x_mask)
95
+ y = self.drop(y)
96
+ x = self.norm_layers_2[i](x + y)
97
+ x = x * x_mask
98
+ return x
99
+
100
+
101
+ class MultiHeadAttention(nn.Module):
102
+ def __init__(self, channels, out_channels, n_heads, p_dropout=0., window_size=None, heads_share=True, block_length=None, proximal_bias=False, proximal_init=False):
103
+ super().__init__()
104
+ assert channels % n_heads == 0
105
+
106
+ self.channels = channels
107
+ self.out_channels = out_channels
108
+ self.n_heads = n_heads
109
+ self.p_dropout = p_dropout
110
+ self.window_size = window_size
111
+ self.heads_share = heads_share
112
+ self.block_length = block_length
113
+ self.proximal_bias = proximal_bias
114
+ self.proximal_init = proximal_init
115
+ self.attn = None
116
+
117
+ self.k_channels = channels // n_heads
118
+ self.conv_q = nn.Conv1d(channels, channels, 1)
119
+ self.conv_k = nn.Conv1d(channels, channels, 1)
120
+ self.conv_v = nn.Conv1d(channels, channels, 1)
121
+ self.conv_o = nn.Conv1d(channels, out_channels, 1)
122
+ self.drop = nn.Dropout(p_dropout)
123
+
124
+ if window_size is not None:
125
+ n_heads_rel = 1 if heads_share else n_heads
126
+ rel_stddev = self.k_channels**-0.5
127
+ self.emb_rel_k = nn.Parameter(torch.randn(n_heads_rel, window_size * 2 + 1, self.k_channels) * rel_stddev)
128
+ self.emb_rel_v = nn.Parameter(torch.randn(n_heads_rel, window_size * 2 + 1, self.k_channels) * rel_stddev)
129
+
130
+ nn.init.xavier_uniform_(self.conv_q.weight)
131
+ nn.init.xavier_uniform_(self.conv_k.weight)
132
+ nn.init.xavier_uniform_(self.conv_v.weight)
133
+ if proximal_init:
134
+ with torch.no_grad():
135
+ self.conv_k.weight.copy_(self.conv_q.weight)
136
+ self.conv_k.bias.copy_(self.conv_q.bias)
137
+
138
+ def forward(self, x, c, attn_mask=None):
139
+ q = self.conv_q(x)
140
+ k = self.conv_k(c)
141
+ v = self.conv_v(c)
142
+
143
+ x, self.attn = self.attention(q, k, v, mask=attn_mask)
144
+
145
+ x = self.conv_o(x)
146
+ return x
147
+
148
+ def attention(self, query, key, value, mask=None):
149
+ # reshape [b, d, t] -> [b, n_h, t, d_k]
150
+ b, d, t_s, t_t = (*key.size(), query.size(2))
151
+ query = query.view(b, self.n_heads, self.k_channels, t_t).transpose(2, 3)
152
+ key = key.view(b, self.n_heads, self.k_channels, t_s).transpose(2, 3)
153
+ value = value.view(b, self.n_heads, self.k_channels, t_s).transpose(2, 3)
154
+
155
+ scores = torch.matmul(query / math.sqrt(self.k_channels), key.transpose(-2, -1))
156
+ if self.window_size is not None:
157
+ assert t_s == t_t, "Relative attention is only available for self-attention."
158
+ key_relative_embeddings = self._get_relative_embeddings(self.emb_rel_k, t_s)
159
+ rel_logits = self._matmul_with_relative_keys(query /math.sqrt(self.k_channels), key_relative_embeddings)
160
+ scores_local = self._relative_position_to_absolute_position(rel_logits)
161
+ scores = scores + scores_local
162
+ if self.proximal_bias:
163
+ assert t_s == t_t, "Proximal bias is only available for self-attention."
164
+ scores = scores + self._attention_bias_proximal(t_s).to(device=scores.device, dtype=scores.dtype)
165
+ if mask is not None:
166
+ scores = scores.masked_fill(mask == 0, -1e4)
167
+ if self.block_length is not None:
168
+ assert t_s == t_t, "Local attention is only available for self-attention."
169
+ block_mask = torch.ones_like(scores).triu(-self.block_length).tril(self.block_length)
170
+ scores = scores.masked_fill(block_mask == 0, -1e4)
171
+ p_attn = F.softmax(scores, dim=-1) # [b, n_h, t_t, t_s]
172
+ p_attn = self.drop(p_attn)
173
+ output = torch.matmul(p_attn, value)
174
+ if self.window_size is not None:
175
+ relative_weights = self._absolute_position_to_relative_position(p_attn)
176
+ value_relative_embeddings = self._get_relative_embeddings(self.emb_rel_v, t_s)
177
+ output = output + self._matmul_with_relative_values(relative_weights, value_relative_embeddings)
178
+ output = output.transpose(2, 3).contiguous().view(b, d, t_t) # [b, n_h, t_t, d_k] -> [b, d, t_t]
179
+ return output, p_attn
180
+
181
+ def _matmul_with_relative_values(self, x, y):
182
+ """
183
+ x: [b, h, l, m]
184
+ y: [h or 1, m, d]
185
+ ret: [b, h, l, d]
186
+ """
187
+ ret = torch.matmul(x, y.unsqueeze(0))
188
+ return ret
189
+
190
+ def _matmul_with_relative_keys(self, x, y):
191
+ """
192
+ x: [b, h, l, d]
193
+ y: [h or 1, m, d]
194
+ ret: [b, h, l, m]
195
+ """
196
+ ret = torch.matmul(x, y.unsqueeze(0).transpose(-2, -1))
197
+ return ret
198
+
199
+ def _get_relative_embeddings(self, relative_embeddings, length):
200
+ max_relative_position = 2 * self.window_size + 1
201
+ # Pad first before slice to avoid using cond ops.
202
+ pad_length = max(length - (self.window_size + 1), 0)
203
+ slice_start_position = max((self.window_size + 1) - length, 0)
204
+ slice_end_position = slice_start_position + 2 * length - 1
205
+ if pad_length > 0:
206
+ padded_relative_embeddings = F.pad(
207
+ relative_embeddings,
208
+ commons.convert_pad_shape([[0, 0], [pad_length, pad_length], [0, 0]]))
209
+ else:
210
+ padded_relative_embeddings = relative_embeddings
211
+ used_relative_embeddings = padded_relative_embeddings[:,slice_start_position:slice_end_position]
212
+ return used_relative_embeddings
213
+
214
+ def _relative_position_to_absolute_position(self, x):
215
+ """
216
+ x: [b, h, l, 2*l-1]
217
+ ret: [b, h, l, l]
218
+ """
219
+ batch, heads, length, _ = x.size()
220
+ # Concat columns of pad to shift from relative to absolute indexing.
221
+ x = F.pad(x, commons.convert_pad_shape([[0,0],[0,0],[0,0],[0,1]]))
222
+
223
+ # Concat extra elements so to add up to shape (len+1, 2*len-1).
224
+ x_flat = x.view([batch, heads, length * 2 * length])
225
+ x_flat = F.pad(x_flat, commons.convert_pad_shape([[0,0],[0,0],[0,length-1]]))
226
+
227
+ # Reshape and slice out the padded elements.
228
+ x_final = x_flat.view([batch, heads, length+1, 2*length-1])[:, :, :length, length-1:]
229
+ return x_final
230
+
231
+ def _absolute_position_to_relative_position(self, x):
232
+ """
233
+ x: [b, h, l, l]
234
+ ret: [b, h, l, 2*l-1]
235
+ """
236
+ batch, heads, length, _ = x.size()
237
+ # padd along column
238
+ x = F.pad(x, commons.convert_pad_shape([[0, 0], [0, 0], [0, 0], [0, length-1]]))
239
+ x_flat = x.view([batch, heads, length**2 + length*(length -1)])
240
+ # add 0's in the beginning that will skew the elements after reshape
241
+ x_flat = F.pad(x_flat, commons.convert_pad_shape([[0, 0], [0, 0], [length, 0]]))
242
+ x_final = x_flat.view([batch, heads, length, 2*length])[:,:,:,1:]
243
+ return x_final
244
+
245
+ def _attention_bias_proximal(self, length):
246
+ """Bias for self-attention to encourage attention to close positions.
247
+ Args:
248
+ length: an integer scalar.
249
+ Returns:
250
+ a Tensor with shape [1, 1, length, length]
251
+ """
252
+ r = torch.arange(length, dtype=torch.float32)
253
+ diff = torch.unsqueeze(r, 0) - torch.unsqueeze(r, 1)
254
+ return torch.unsqueeze(torch.unsqueeze(-torch.log1p(torch.abs(diff)), 0), 0)
255
+
256
+
257
+ class FFN(nn.Module):
258
+ def __init__(self, in_channels, out_channels, filter_channels, kernel_size, p_dropout=0., activation=None, causal=False):
259
+ super().__init__()
260
+ self.in_channels = in_channels
261
+ self.out_channels = out_channels
262
+ self.filter_channels = filter_channels
263
+ self.kernel_size = kernel_size
264
+ self.p_dropout = p_dropout
265
+ self.activation = activation
266
+ self.causal = causal
267
+
268
+ if causal:
269
+ self.padding = self._causal_padding
270
+ else:
271
+ self.padding = self._same_padding
272
+
273
+ self.conv_1 = nn.Conv1d(in_channels, filter_channels, kernel_size)
274
+ self.conv_2 = nn.Conv1d(filter_channels, out_channels, kernel_size)
275
+ self.drop = nn.Dropout(p_dropout)
276
+
277
+ def forward(self, x, x_mask):
278
+ x = self.conv_1(self.padding(x * x_mask))
279
+ if self.activation == "gelu":
280
+ x = x * torch.sigmoid(1.702 * x)
281
+ else:
282
+ x = torch.relu(x)
283
+ x = self.drop(x)
284
+ x = self.conv_2(self.padding(x * x_mask))
285
+ return x * x_mask
286
+
287
+ def _causal_padding(self, x):
288
+ if self.kernel_size == 1:
289
+ return x
290
+ pad_l = self.kernel_size - 1
291
+ pad_r = 0
292
+ padding = [[0, 0], [0, 0], [pad_l, pad_r]]
293
+ x = F.pad(x, commons.convert_pad_shape(padding))
294
+ return x
295
+
296
+ def _same_padding(self, x):
297
+ if self.kernel_size == 1:
298
+ return x
299
+ pad_l = (self.kernel_size - 1) // 2
300
+ pad_r = self.kernel_size // 2
301
+ padding = [[0, 0], [0, 0], [pad_l, pad_r]]
302
+ x = F.pad(x, commons.convert_pad_shape(padding))
303
+ return x
runtime/commons.py CHANGED
@@ -1,161 +1,161 @@
1
- import math
2
- import numpy as np
3
- import torch
4
- from torch import nn
5
- from torch.nn import functional as F
6
-
7
-
8
- def init_weights(m, mean=0.0, std=0.01):
9
- classname = m.__class__.__name__
10
- if classname.find("Conv") != -1:
11
- m.weight.data.normal_(mean, std)
12
-
13
-
14
- def get_padding(kernel_size, dilation=1):
15
- return int((kernel_size*dilation - dilation)/2)
16
-
17
-
18
- def convert_pad_shape(pad_shape):
19
- l = pad_shape[::-1]
20
- pad_shape = [item for sublist in l for item in sublist]
21
- return pad_shape
22
-
23
-
24
- def intersperse(lst, item):
25
- result = [item] * (len(lst) * 2 + 1)
26
- result[1::2] = lst
27
- return result
28
-
29
-
30
- def kl_divergence(m_p, logs_p, m_q, logs_q):
31
- """KL(P||Q)"""
32
- kl = (logs_q - logs_p) - 0.5
33
- kl += 0.5 * (torch.exp(2. * logs_p) + ((m_p - m_q)**2)) * torch.exp(-2. * logs_q)
34
- return kl
35
-
36
-
37
- def rand_gumbel(shape):
38
- """Sample from the Gumbel distribution, protect from overflows."""
39
- uniform_samples = torch.rand(shape) * 0.99998 + 0.00001
40
- return -torch.log(-torch.log(uniform_samples))
41
-
42
-
43
- def rand_gumbel_like(x):
44
- g = rand_gumbel(x.size()).to(dtype=x.dtype, device=x.device)
45
- return g
46
-
47
-
48
- def slice_segments(x, ids_str, segment_size=4):
49
- ret = torch.zeros_like(x[:, :, :segment_size])
50
- for i in range(x.size(0)):
51
- idx_str = ids_str[i]
52
- idx_end = idx_str + segment_size
53
- ret[i] = x[i, :, idx_str:idx_end]
54
- return ret
55
-
56
-
57
- def rand_slice_segments(x, x_lengths=None, segment_size=4):
58
- b, d, t = x.size()
59
- if x_lengths is None:
60
- x_lengths = t
61
- ids_str_max = x_lengths - segment_size + 1
62
- ids_str = (torch.rand([b]).to(device=x.device) * ids_str_max).to(dtype=torch.long)
63
- ret = slice_segments(x, ids_str, segment_size)
64
- return ret, ids_str
65
-
66
-
67
- def get_timing_signal_1d(
68
- length, channels, min_timescale=1.0, max_timescale=1.0e4):
69
- position = torch.arange(length, dtype=torch.float)
70
- num_timescales = channels // 2
71
- log_timescale_increment = (
72
- math.log(float(max_timescale) / float(min_timescale)) /
73
- (num_timescales - 1))
74
- inv_timescales = min_timescale * torch.exp(
75
- torch.arange(num_timescales, dtype=torch.float) * -log_timescale_increment)
76
- scaled_time = position.unsqueeze(0) * inv_timescales.unsqueeze(1)
77
- signal = torch.cat([torch.sin(scaled_time), torch.cos(scaled_time)], 0)
78
- signal = F.pad(signal, [0, 0, 0, channels % 2])
79
- signal = signal.view(1, channels, length)
80
- return signal
81
-
82
-
83
- def add_timing_signal_1d(x, min_timescale=1.0, max_timescale=1.0e4):
84
- b, channels, length = x.size()
85
- signal = get_timing_signal_1d(length, channels, min_timescale, max_timescale)
86
- return x + signal.to(dtype=x.dtype, device=x.device)
87
-
88
-
89
- def cat_timing_signal_1d(x, min_timescale=1.0, max_timescale=1.0e4, axis=1):
90
- b, channels, length = x.size()
91
- signal = get_timing_signal_1d(length, channels, min_timescale, max_timescale)
92
- return torch.cat([x, signal.to(dtype=x.dtype, device=x.device)], axis)
93
-
94
-
95
- def subsequent_mask(length):
96
- mask = torch.tril(torch.ones(length, length)).unsqueeze(0).unsqueeze(0)
97
- return mask
98
-
99
-
100
- @torch.jit.script
101
- def fused_add_tanh_sigmoid_multiply(input_a, input_b, n_channels):
102
- n_channels_int = n_channels[0]
103
- in_act = input_a + input_b
104
- t_act = torch.tanh(in_act[:, :n_channels_int, :])
105
- s_act = torch.sigmoid(in_act[:, n_channels_int:, :])
106
- acts = t_act * s_act
107
- return acts
108
-
109
-
110
- def convert_pad_shape(pad_shape):
111
- l = pad_shape[::-1]
112
- pad_shape = [item for sublist in l for item in sublist]
113
- return pad_shape
114
-
115
-
116
- def shift_1d(x):
117
- x = F.pad(x, convert_pad_shape([[0, 0], [0, 0], [1, 0]]))[:, :, :-1]
118
- return x
119
-
120
-
121
- def sequence_mask(length, max_length=None):
122
- if max_length is None:
123
- max_length = length.max()
124
- x = torch.arange(max_length, dtype=length.dtype, device=length.device)
125
- return x.unsqueeze(0) < length.unsqueeze(1)
126
-
127
-
128
- def generate_path(duration, mask):
129
- """
130
- duration: [b, 1, t_x]
131
- mask: [b, 1, t_y, t_x]
132
- """
133
- device = duration.device
134
-
135
- b, _, t_y, t_x = mask.shape
136
- cum_duration = torch.cumsum(duration, -1)
137
-
138
- cum_duration_flat = cum_duration.view(b * t_x)
139
- path = sequence_mask(cum_duration_flat, t_y).to(mask.dtype)
140
- path = path.view(b, t_x, t_y)
141
- path = path - F.pad(path, convert_pad_shape([[0, 0], [1, 0], [0, 0]]))[:, :-1]
142
- path = path.unsqueeze(1).transpose(2,3) * mask
143
- return path
144
-
145
-
146
- def clip_grad_value_(parameters, clip_value, norm_type=2):
147
- if isinstance(parameters, torch.Tensor):
148
- parameters = [parameters]
149
- parameters = list(filter(lambda p: p.grad is not None, parameters))
150
- norm_type = float(norm_type)
151
- if clip_value is not None:
152
- clip_value = float(clip_value)
153
-
154
- total_norm = 0
155
- for p in parameters:
156
- param_norm = p.grad.data.norm(norm_type)
157
- total_norm += param_norm.item() ** norm_type
158
- if clip_value is not None:
159
- p.grad.data.clamp_(min=-clip_value, max=clip_value)
160
- total_norm = total_norm ** (1. / norm_type)
161
- return total_norm
 
1
+ import math
2
+ import numpy as np
3
+ import torch
4
+ from torch import nn
5
+ from torch.nn import functional as F
6
+
7
+
8
+ def init_weights(m, mean=0.0, std=0.01):
9
+ classname = m.__class__.__name__
10
+ if classname.find("Conv") != -1:
11
+ m.weight.data.normal_(mean, std)
12
+
13
+
14
+ def get_padding(kernel_size, dilation=1):
15
+ return int((kernel_size*dilation - dilation)/2)
16
+
17
+
18
+ def convert_pad_shape(pad_shape):
19
+ l = pad_shape[::-1]
20
+ pad_shape = [item for sublist in l for item in sublist]
21
+ return pad_shape
22
+
23
+
24
+ def intersperse(lst, item):
25
+ result = [item] * (len(lst) * 2 + 1)
26
+ result[1::2] = lst
27
+ return result
28
+
29
+
30
+ def kl_divergence(m_p, logs_p, m_q, logs_q):
31
+ """KL(P||Q)"""
32
+ kl = (logs_q - logs_p) - 0.5
33
+ kl += 0.5 * (torch.exp(2. * logs_p) + ((m_p - m_q)**2)) * torch.exp(-2. * logs_q)
34
+ return kl
35
+
36
+
37
+ def rand_gumbel(shape):
38
+ """Sample from the Gumbel distribution, protect from overflows."""
39
+ uniform_samples = torch.rand(shape) * 0.99998 + 0.00001
40
+ return -torch.log(-torch.log(uniform_samples))
41
+
42
+
43
+ def rand_gumbel_like(x):
44
+ g = rand_gumbel(x.size()).to(dtype=x.dtype, device=x.device)
45
+ return g
46
+
47
+
48
+ def slice_segments(x, ids_str, segment_size=4):
49
+ ret = torch.zeros_like(x[:, :, :segment_size])
50
+ for i in range(x.size(0)):
51
+ idx_str = ids_str[i]
52
+ idx_end = idx_str + segment_size
53
+ ret[i] = x[i, :, idx_str:idx_end]
54
+ return ret
55
+
56
+
57
+ def rand_slice_segments(x, x_lengths=None, segment_size=4):
58
+ b, d, t = x.size()
59
+ if x_lengths is None:
60
+ x_lengths = t
61
+ ids_str_max = x_lengths - segment_size + 1
62
+ ids_str = (torch.rand([b]).to(device=x.device) * ids_str_max).to(dtype=torch.long)
63
+ ret = slice_segments(x, ids_str, segment_size)
64
+ return ret, ids_str
65
+
66
+
67
+ def get_timing_signal_1d(
68
+ length, channels, min_timescale=1.0, max_timescale=1.0e4):
69
+ position = torch.arange(length, dtype=torch.float)
70
+ num_timescales = channels // 2
71
+ log_timescale_increment = (
72
+ math.log(float(max_timescale) / float(min_timescale)) /
73
+ (num_timescales - 1))
74
+ inv_timescales = min_timescale * torch.exp(
75
+ torch.arange(num_timescales, dtype=torch.float) * -log_timescale_increment)
76
+ scaled_time = position.unsqueeze(0) * inv_timescales.unsqueeze(1)
77
+ signal = torch.cat([torch.sin(scaled_time), torch.cos(scaled_time)], 0)
78
+ signal = F.pad(signal, [0, 0, 0, channels % 2])
79
+ signal = signal.view(1, channels, length)
80
+ return signal
81
+
82
+
83
+ def add_timing_signal_1d(x, min_timescale=1.0, max_timescale=1.0e4):
84
+ b, channels, length = x.size()
85
+ signal = get_timing_signal_1d(length, channels, min_timescale, max_timescale)
86
+ return x + signal.to(dtype=x.dtype, device=x.device)
87
+
88
+
89
+ def cat_timing_signal_1d(x, min_timescale=1.0, max_timescale=1.0e4, axis=1):
90
+ b, channels, length = x.size()
91
+ signal = get_timing_signal_1d(length, channels, min_timescale, max_timescale)
92
+ return torch.cat([x, signal.to(dtype=x.dtype, device=x.device)], axis)
93
+
94
+
95
+ def subsequent_mask(length):
96
+ mask = torch.tril(torch.ones(length, length)).unsqueeze(0).unsqueeze(0)
97
+ return mask
98
+
99
+
100
+ @torch.jit.script
101
+ def fused_add_tanh_sigmoid_multiply(input_a, input_b, n_channels):
102
+ n_channels_int = n_channels[0]
103
+ in_act = input_a + input_b
104
+ t_act = torch.tanh(in_act[:, :n_channels_int, :])
105
+ s_act = torch.sigmoid(in_act[:, n_channels_int:, :])
106
+ acts = t_act * s_act
107
+ return acts
108
+
109
+
110
+ def convert_pad_shape(pad_shape):
111
+ l = pad_shape[::-1]
112
+ pad_shape = [item for sublist in l for item in sublist]
113
+ return pad_shape
114
+
115
+
116
+ def shift_1d(x):
117
+ x = F.pad(x, convert_pad_shape([[0, 0], [0, 0], [1, 0]]))[:, :, :-1]
118
+ return x
119
+
120
+
121
+ def sequence_mask(length, max_length=None):
122
+ if max_length is None:
123
+ max_length = length.max()
124
+ x = torch.arange(max_length, dtype=length.dtype, device=length.device)
125
+ return x.unsqueeze(0) < length.unsqueeze(1)
126
+
127
+
128
+ def generate_path(duration, mask):
129
+ """
130
+ duration: [b, 1, t_x]
131
+ mask: [b, 1, t_y, t_x]
132
+ """
133
+ device = duration.device
134
+
135
+ b, _, t_y, t_x = mask.shape
136
+ cum_duration = torch.cumsum(duration, -1)
137
+
138
+ cum_duration_flat = cum_duration.view(b * t_x)
139
+ path = sequence_mask(cum_duration_flat, t_y).to(mask.dtype)
140
+ path = path.view(b, t_x, t_y)
141
+ path = path - F.pad(path, convert_pad_shape([[0, 0], [1, 0], [0, 0]]))[:, :-1]
142
+ path = path.unsqueeze(1).transpose(2,3) * mask
143
+ return path
144
+
145
+
146
+ def clip_grad_value_(parameters, clip_value, norm_type=2):
147
+ if isinstance(parameters, torch.Tensor):
148
+ parameters = [parameters]
149
+ parameters = list(filter(lambda p: p.grad is not None, parameters))
150
+ norm_type = float(norm_type)
151
+ if clip_value is not None:
152
+ clip_value = float(clip_value)
153
+
154
+ total_norm = 0
155
+ for p in parameters:
156
+ param_norm = p.grad.data.norm(norm_type)
157
+ total_norm += param_norm.item() ** norm_type
158
+ if clip_value is not None:
159
+ p.grad.data.clamp_(min=-clip_value, max=clip_value)
160
+ total_norm = total_norm ** (1. / norm_type)
161
+ return total_norm
runtime/inflect_alias_free.py ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Lightweight alias-free waveform blocks derived from NVIDIA BigVGAN.
2
+
3
+ BigVGAN and alias-free-torch are MIT/Apache-2.0 licensed. The implementation
4
+ is kept local so Inflect can train without BigVGAN's optional CUDA extension.
5
+ """
6
+
7
+ import math
8
+
9
+ import torch
10
+ from torch import nn
11
+ from torch.nn import functional as F
12
+ from torch.nn.utils import remove_weight_norm, weight_norm
13
+
14
+ from commons import get_padding, init_weights
15
+
16
+
17
+ def kaiser_sinc_filter1d(cutoff: float, half_width: float, kernel_size: int):
18
+ even = kernel_size % 2 == 0
19
+ half_size = kernel_size // 2
20
+ delta_f = 4 * half_width
21
+ attenuation = 2.285 * (half_size - 1) * math.pi * delta_f + 7.95
22
+ if attenuation > 50.0:
23
+ beta = 0.1102 * (attenuation - 8.7)
24
+ elif attenuation >= 21.0:
25
+ beta = 0.5842 * (attenuation - 21) ** 0.4 + 0.07886 * (attenuation - 21.0)
26
+ else:
27
+ beta = 0.0
28
+ window = torch.kaiser_window(kernel_size, beta=beta, periodic=False)
29
+ if even:
30
+ time = torch.arange(-half_size, half_size) + 0.5
31
+ else:
32
+ time = torch.arange(kernel_size) - half_size
33
+ values = 2 * cutoff * window * torch.sinc(2 * cutoff * time)
34
+ values /= values.sum()
35
+ return values.view(1, 1, kernel_size)
36
+
37
+
38
+ class UpSample1d(nn.Module):
39
+ def __init__(self, ratio=2, kernel_size=12):
40
+ super().__init__()
41
+ self.ratio = ratio
42
+ self.stride = ratio
43
+ self.kernel_size = kernel_size
44
+ self.pad = kernel_size // ratio - 1
45
+ self.pad_left = self.pad * ratio + (kernel_size - ratio) // 2
46
+ self.pad_right = self.pad * ratio + (kernel_size - ratio + 1) // 2
47
+ self.register_buffer(
48
+ "filter",
49
+ kaiser_sinc_filter1d(0.5 / ratio, 0.6 / ratio, kernel_size))
50
+
51
+ def forward(self, x):
52
+ channels = x.shape[1]
53
+ x = F.pad(x, (self.pad, self.pad), mode="replicate")
54
+ x = self.ratio * F.conv_transpose1d(
55
+ x, self.filter.expand(channels, -1, -1),
56
+ stride=self.stride, groups=channels)
57
+ return x[..., self.pad_left:-self.pad_right]
58
+
59
+
60
+ class DownSample1d(nn.Module):
61
+ def __init__(self, ratio=2, kernel_size=12):
62
+ super().__init__()
63
+ self.ratio = ratio
64
+ self.kernel_size = kernel_size
65
+ self.pad_left = kernel_size // 2 - int(kernel_size % 2 == 0)
66
+ self.pad_right = kernel_size // 2
67
+ self.register_buffer(
68
+ "filter",
69
+ kaiser_sinc_filter1d(0.5 / ratio, 0.6 / ratio, kernel_size))
70
+
71
+ def forward(self, x):
72
+ channels = x.shape[1]
73
+ x = F.pad(x, (self.pad_left, self.pad_right), mode="replicate")
74
+ return F.conv1d(
75
+ x, self.filter.expand(channels, -1, -1),
76
+ stride=self.ratio, groups=channels)
77
+
78
+
79
+ class SnakeBeta(nn.Module):
80
+ def __init__(self, channels: int, logscale: bool = True):
81
+ super().__init__()
82
+ initial = torch.zeros(channels) if logscale else torch.ones(channels)
83
+ self.alpha = nn.Parameter(initial.clone())
84
+ self.beta = nn.Parameter(initial.clone())
85
+ self.logscale = logscale
86
+
87
+ def forward(self, x):
88
+ alpha = self.alpha.view(1, -1, 1)
89
+ beta = self.beta.view(1, -1, 1)
90
+ if self.logscale:
91
+ alpha = alpha.exp()
92
+ beta = beta.exp()
93
+ return x + torch.sin(x * alpha).square() / (beta + 1e-9)
94
+
95
+
96
+ class AliasFreeActivation1d(nn.Module):
97
+ def __init__(self, activation: nn.Module):
98
+ super().__init__()
99
+ self.upsample = UpSample1d()
100
+ self.act = activation
101
+ self.downsample = DownSample1d()
102
+
103
+ def forward(self, x):
104
+ return self.downsample(self.act(self.upsample(x)))
105
+
106
+
107
+ class AliasFreeResBlock1(nn.Module):
108
+ """Shape-compatible VITS ResBlock1 with filtered SnakeBeta activations."""
109
+
110
+ def __init__(self, channels, kernel_size=3, dilation=(1, 3, 5), logscale=True):
111
+ super().__init__()
112
+ self.convs1 = nn.ModuleList([
113
+ weight_norm(nn.Conv1d(
114
+ channels, channels, kernel_size, 1,
115
+ dilation=d, padding=get_padding(kernel_size, d)))
116
+ for d in dilation
117
+ ])
118
+ self.convs2 = nn.ModuleList([
119
+ weight_norm(nn.Conv1d(
120
+ channels, channels, kernel_size, 1,
121
+ dilation=1, padding=get_padding(kernel_size, 1)))
122
+ for _ in dilation
123
+ ])
124
+ self.convs1.apply(init_weights)
125
+ self.convs2.apply(init_weights)
126
+ self.activations = nn.ModuleList([
127
+ AliasFreeActivation1d(SnakeBeta(channels, logscale=logscale))
128
+ for _ in range(2 * len(dilation))
129
+ ])
130
+
131
+ def forward(self, x, x_mask=None):
132
+ first = self.activations[::2]
133
+ second = self.activations[1::2]
134
+ for conv1, conv2, act1, act2 in zip(self.convs1, self.convs2, first, second):
135
+ residual = conv2(act2(conv1(act1(x))))
136
+ x = x + residual
137
+ return x
138
+
139
+ def remove_weight_norm(self):
140
+ for layer in self.convs1:
141
+ remove_weight_norm(layer)
142
+ for layer in self.convs2:
143
+ remove_weight_norm(layer)
runtime/models.py CHANGED
@@ -1,534 +1,564 @@
1
- import copy
2
- import math
3
- import torch
4
- from torch import nn
5
- from torch.nn import functional as F
6
-
7
- import commons
8
- import modules
9
- import attentions
10
- import monotonic_align
11
-
12
- from torch.nn import Conv1d, ConvTranspose1d, AvgPool1d, Conv2d
13
- from torch.nn.utils import weight_norm, remove_weight_norm, spectral_norm
14
- from commons import init_weights, get_padding
15
-
16
-
17
- class StochasticDurationPredictor(nn.Module):
18
- def __init__(self, in_channels, filter_channels, kernel_size, p_dropout, n_flows=4, gin_channels=0):
19
- super().__init__()
20
- filter_channels = in_channels # it needs to be removed from future version.
21
- self.in_channels = in_channels
22
- self.filter_channels = filter_channels
23
- self.kernel_size = kernel_size
24
- self.p_dropout = p_dropout
25
- self.n_flows = n_flows
26
- self.gin_channels = gin_channels
27
-
28
- self.log_flow = modules.Log()
29
- self.flows = nn.ModuleList()
30
- self.flows.append(modules.ElementwiseAffine(2))
31
- for i in range(n_flows):
32
- self.flows.append(modules.ConvFlow(2, filter_channels, kernel_size, n_layers=3))
33
- self.flows.append(modules.Flip())
34
-
35
- self.post_pre = nn.Conv1d(1, filter_channels, 1)
36
- self.post_proj = nn.Conv1d(filter_channels, filter_channels, 1)
37
- self.post_convs = modules.DDSConv(filter_channels, kernel_size, n_layers=3, p_dropout=p_dropout)
38
- self.post_flows = nn.ModuleList()
39
- self.post_flows.append(modules.ElementwiseAffine(2))
40
- for i in range(4):
41
- self.post_flows.append(modules.ConvFlow(2, filter_channels, kernel_size, n_layers=3))
42
- self.post_flows.append(modules.Flip())
43
-
44
- self.pre = nn.Conv1d(in_channels, filter_channels, 1)
45
- self.proj = nn.Conv1d(filter_channels, filter_channels, 1)
46
- self.convs = modules.DDSConv(filter_channels, kernel_size, n_layers=3, p_dropout=p_dropout)
47
- if gin_channels != 0:
48
- self.cond = nn.Conv1d(gin_channels, filter_channels, 1)
49
-
50
- def forward(self, x, x_mask, w=None, g=None, reverse=False, noise_scale=1.0):
51
- x = torch.detach(x)
52
- x = self.pre(x)
53
- if g is not None:
54
- g = torch.detach(g)
55
- x = x + self.cond(g)
56
- x = self.convs(x, x_mask)
57
- x = self.proj(x) * x_mask
58
-
59
- if not reverse:
60
- flows = self.flows
61
- assert w is not None
62
-
63
- logdet_tot_q = 0
64
- h_w = self.post_pre(w)
65
- h_w = self.post_convs(h_w, x_mask)
66
- h_w = self.post_proj(h_w) * x_mask
67
- e_q = torch.randn(w.size(0), 2, w.size(2)).to(device=x.device, dtype=x.dtype) * x_mask
68
- z_q = e_q
69
- for flow in self.post_flows:
70
- z_q, logdet_q = flow(z_q, x_mask, g=(x + h_w))
71
- logdet_tot_q += logdet_q
72
- z_u, z1 = torch.split(z_q, [1, 1], 1)
73
- u = torch.sigmoid(z_u) * x_mask
74
- z0 = (w - u) * x_mask
75
- logdet_tot_q += torch.sum((F.logsigmoid(z_u) + F.logsigmoid(-z_u)) * x_mask, [1,2])
76
- logq = torch.sum(-0.5 * (math.log(2*math.pi) + (e_q**2)) * x_mask, [1,2]) - logdet_tot_q
77
-
78
- logdet_tot = 0
79
- z0, logdet = self.log_flow(z0, x_mask)
80
- logdet_tot += logdet
81
- z = torch.cat([z0, z1], 1)
82
- for flow in flows:
83
- z, logdet = flow(z, x_mask, g=x, reverse=reverse)
84
- logdet_tot = logdet_tot + logdet
85
- nll = torch.sum(0.5 * (math.log(2*math.pi) + (z**2)) * x_mask, [1,2]) - logdet_tot
86
- return nll + logq # [b]
87
- else:
88
- flows = list(reversed(self.flows))
89
- flows = flows[:-2] + [flows[-1]] # remove a useless vflow
90
- z = torch.randn(x.size(0), 2, x.size(2)).to(device=x.device, dtype=x.dtype) * noise_scale
91
- for flow in flows:
92
- z = flow(z, x_mask, g=x, reverse=reverse)
93
- z0, z1 = torch.split(z, [1, 1], 1)
94
- logw = z0
95
- return logw
96
-
97
-
98
- class DurationPredictor(nn.Module):
99
- def __init__(self, in_channels, filter_channels, kernel_size, p_dropout, gin_channels=0):
100
- super().__init__()
101
-
102
- self.in_channels = in_channels
103
- self.filter_channels = filter_channels
104
- self.kernel_size = kernel_size
105
- self.p_dropout = p_dropout
106
- self.gin_channels = gin_channels
107
-
108
- self.drop = nn.Dropout(p_dropout)
109
- self.conv_1 = nn.Conv1d(in_channels, filter_channels, kernel_size, padding=kernel_size//2)
110
- self.norm_1 = modules.LayerNorm(filter_channels)
111
- self.conv_2 = nn.Conv1d(filter_channels, filter_channels, kernel_size, padding=kernel_size//2)
112
- self.norm_2 = modules.LayerNorm(filter_channels)
113
- self.proj = nn.Conv1d(filter_channels, 1, 1)
114
-
115
- if gin_channels != 0:
116
- self.cond = nn.Conv1d(gin_channels, in_channels, 1)
117
-
118
- def forward(self, x, x_mask, g=None):
119
- x = torch.detach(x)
120
- if g is not None:
121
- g = torch.detach(g)
122
- x = x + self.cond(g)
123
- x = self.conv_1(x * x_mask)
124
- x = torch.relu(x)
125
- x = self.norm_1(x)
126
- x = self.drop(x)
127
- x = self.conv_2(x * x_mask)
128
- x = torch.relu(x)
129
- x = self.norm_2(x)
130
- x = self.drop(x)
131
- x = self.proj(x * x_mask)
132
- return x * x_mask
133
-
134
-
135
- class TextEncoder(nn.Module):
136
- def __init__(self,
137
- n_vocab,
138
- out_channels,
139
- hidden_channels,
140
- filter_channels,
141
- n_heads,
142
- n_layers,
143
- kernel_size,
144
- p_dropout):
145
- super().__init__()
146
- self.n_vocab = n_vocab
147
- self.out_channels = out_channels
148
- self.hidden_channels = hidden_channels
149
- self.filter_channels = filter_channels
150
- self.n_heads = n_heads
151
- self.n_layers = n_layers
152
- self.kernel_size = kernel_size
153
- self.p_dropout = p_dropout
154
-
155
- self.emb = nn.Embedding(n_vocab, hidden_channels)
156
- nn.init.normal_(self.emb.weight, 0.0, hidden_channels**-0.5)
157
-
158
- self.encoder = attentions.Encoder(
159
- hidden_channels,
160
- filter_channels,
161
- n_heads,
162
- n_layers,
163
- kernel_size,
164
- p_dropout)
165
- self.proj= nn.Conv1d(hidden_channels, out_channels * 2, 1)
166
-
167
- def forward(self, x, x_lengths):
168
- x = self.emb(x) * math.sqrt(self.hidden_channels) # [b, t, h]
169
- x = torch.transpose(x, 1, -1) # [b, h, t]
170
- x_mask = torch.unsqueeze(commons.sequence_mask(x_lengths, x.size(2)), 1).to(x.dtype)
171
-
172
- x = self.encoder(x * x_mask, x_mask)
173
- stats = self.proj(x) * x_mask
174
-
175
- m, logs = torch.split(stats, self.out_channels, dim=1)
176
- return x, m, logs, x_mask
177
-
178
-
179
- class ResidualCouplingBlock(nn.Module):
180
- def __init__(self,
181
- channels,
182
- hidden_channels,
183
- kernel_size,
184
- dilation_rate,
185
- n_layers,
186
- n_flows=4,
187
- gin_channels=0):
188
- super().__init__()
189
- self.channels = channels
190
- self.hidden_channels = hidden_channels
191
- self.kernel_size = kernel_size
192
- self.dilation_rate = dilation_rate
193
- self.n_layers = n_layers
194
- self.n_flows = n_flows
195
- self.gin_channels = gin_channels
196
-
197
- self.flows = nn.ModuleList()
198
- for i in range(n_flows):
199
- self.flows.append(modules.ResidualCouplingLayer(channels, hidden_channels, kernel_size, dilation_rate, n_layers, gin_channels=gin_channels, mean_only=True))
200
- self.flows.append(modules.Flip())
201
-
202
- def forward(self, x, x_mask, g=None, reverse=False):
203
- if not reverse:
204
- for flow in self.flows:
205
- x, _ = flow(x, x_mask, g=g, reverse=reverse)
206
- else:
207
- for flow in reversed(self.flows):
208
- x = flow(x, x_mask, g=g, reverse=reverse)
209
- return x
210
-
211
-
212
- class PosteriorEncoder(nn.Module):
213
- def __init__(self,
214
- in_channels,
215
- out_channels,
216
- hidden_channels,
217
- kernel_size,
218
- dilation_rate,
219
- n_layers,
220
- gin_channels=0):
221
- super().__init__()
222
- self.in_channels = in_channels
223
- self.out_channels = out_channels
224
- self.hidden_channels = hidden_channels
225
- self.kernel_size = kernel_size
226
- self.dilation_rate = dilation_rate
227
- self.n_layers = n_layers
228
- self.gin_channels = gin_channels
229
-
230
- self.pre = nn.Conv1d(in_channels, hidden_channels, 1)
231
- self.enc = modules.WN(hidden_channels, kernel_size, dilation_rate, n_layers, gin_channels=gin_channels)
232
- self.proj = nn.Conv1d(hidden_channels, out_channels * 2, 1)
233
-
234
- def forward(self, x, x_lengths, g=None):
235
- x_mask = torch.unsqueeze(commons.sequence_mask(x_lengths, x.size(2)), 1).to(x.dtype)
236
- x = self.pre(x) * x_mask
237
- x = self.enc(x, x_mask, g=g)
238
- stats = self.proj(x) * x_mask
239
- m, logs = torch.split(stats, self.out_channels, dim=1)
240
- z = (m + torch.randn_like(m) * torch.exp(logs)) * x_mask
241
- return z, m, logs, x_mask
242
-
243
-
244
- class Generator(torch.nn.Module):
245
- def __init__(self, initial_channel, resblock, resblock_kernel_sizes, resblock_dilation_sizes, upsample_rates, upsample_initial_channel, upsample_kernel_sizes, gin_channels=0):
246
- super(Generator, self).__init__()
247
- self.num_kernels = len(resblock_kernel_sizes)
248
- self.num_upsamples = len(upsample_rates)
249
- self.conv_pre = Conv1d(initial_channel, upsample_initial_channel, 7, 1, padding=3)
250
- resblock = modules.ResBlock1 if resblock == '1' else modules.ResBlock2
251
-
252
- self.ups = nn.ModuleList()
253
- for i, (u, k) in enumerate(zip(upsample_rates, upsample_kernel_sizes)):
254
- self.ups.append(weight_norm(
255
- ConvTranspose1d(upsample_initial_channel//(2**i), upsample_initial_channel//(2**(i+1)),
256
- k, u, padding=(k-u)//2)))
257
-
258
- self.resblocks = nn.ModuleList()
259
- for i in range(len(self.ups)):
260
- ch = upsample_initial_channel//(2**(i+1))
261
- for j, (k, d) in enumerate(zip(resblock_kernel_sizes, resblock_dilation_sizes)):
262
- self.resblocks.append(resblock(ch, k, d))
263
-
264
- self.conv_post = Conv1d(ch, 1, 7, 1, padding=3, bias=False)
265
- self.ups.apply(init_weights)
266
-
267
- if gin_channels != 0:
268
- self.cond = nn.Conv1d(gin_channels, upsample_initial_channel, 1)
269
-
270
- def forward(self, x, g=None):
271
- x = self.conv_pre(x)
272
- if g is not None:
273
- x = x + self.cond(g)
274
-
275
- for i in range(self.num_upsamples):
276
- x = F.leaky_relu(x, modules.LRELU_SLOPE)
277
- x = self.ups[i](x)
278
- xs = None
279
- for j in range(self.num_kernels):
280
- if xs is None:
281
- xs = self.resblocks[i*self.num_kernels+j](x)
282
- else:
283
- xs += self.resblocks[i*self.num_kernels+j](x)
284
- x = xs / self.num_kernels
285
- x = F.leaky_relu(x)
286
- x = self.conv_post(x)
287
- x = torch.tanh(x)
288
-
289
- return x
290
-
291
- def remove_weight_norm(self):
292
- print('Removing weight norm...')
293
- for l in self.ups:
294
- remove_weight_norm(l)
295
- for l in self.resblocks:
296
- l.remove_weight_norm()
297
-
298
-
299
- class DiscriminatorP(torch.nn.Module):
300
- def __init__(self, period, kernel_size=5, stride=3, use_spectral_norm=False):
301
- super(DiscriminatorP, self).__init__()
302
- self.period = period
303
- self.use_spectral_norm = use_spectral_norm
304
- norm_f = weight_norm if use_spectral_norm == False else spectral_norm
305
- self.convs = nn.ModuleList([
306
- norm_f(Conv2d(1, 32, (kernel_size, 1), (stride, 1), padding=(get_padding(kernel_size, 1), 0))),
307
- norm_f(Conv2d(32, 128, (kernel_size, 1), (stride, 1), padding=(get_padding(kernel_size, 1), 0))),
308
- norm_f(Conv2d(128, 512, (kernel_size, 1), (stride, 1), padding=(get_padding(kernel_size, 1), 0))),
309
- norm_f(Conv2d(512, 1024, (kernel_size, 1), (stride, 1), padding=(get_padding(kernel_size, 1), 0))),
310
- norm_f(Conv2d(1024, 1024, (kernel_size, 1), 1, padding=(get_padding(kernel_size, 1), 0))),
311
- ])
312
- self.conv_post = norm_f(Conv2d(1024, 1, (3, 1), 1, padding=(1, 0)))
313
-
314
- def forward(self, x):
315
- fmap = []
316
-
317
- # 1d to 2d
318
- b, c, t = x.shape
319
- if t % self.period != 0: # pad first
320
- n_pad = self.period - (t % self.period)
321
- x = F.pad(x, (0, n_pad), "reflect")
322
- t = t + n_pad
323
- x = x.view(b, c, t // self.period, self.period)
324
-
325
- for l in self.convs:
326
- x = l(x)
327
- x = F.leaky_relu(x, modules.LRELU_SLOPE)
328
- fmap.append(x)
329
- x = self.conv_post(x)
330
- fmap.append(x)
331
- x = torch.flatten(x, 1, -1)
332
-
333
- return x, fmap
334
-
335
-
336
- class DiscriminatorS(torch.nn.Module):
337
- def __init__(self, use_spectral_norm=False):
338
- super(DiscriminatorS, self).__init__()
339
- norm_f = weight_norm if use_spectral_norm == False else spectral_norm
340
- self.convs = nn.ModuleList([
341
- norm_f(Conv1d(1, 16, 15, 1, padding=7)),
342
- norm_f(Conv1d(16, 64, 41, 4, groups=4, padding=20)),
343
- norm_f(Conv1d(64, 256, 41, 4, groups=16, padding=20)),
344
- norm_f(Conv1d(256, 1024, 41, 4, groups=64, padding=20)),
345
- norm_f(Conv1d(1024, 1024, 41, 4, groups=256, padding=20)),
346
- norm_f(Conv1d(1024, 1024, 5, 1, padding=2)),
347
- ])
348
- self.conv_post = norm_f(Conv1d(1024, 1, 3, 1, padding=1))
349
-
350
- def forward(self, x):
351
- fmap = []
352
-
353
- for l in self.convs:
354
- x = l(x)
355
- x = F.leaky_relu(x, modules.LRELU_SLOPE)
356
- fmap.append(x)
357
- x = self.conv_post(x)
358
- fmap.append(x)
359
- x = torch.flatten(x, 1, -1)
360
-
361
- return x, fmap
362
-
363
-
364
- class MultiPeriodDiscriminator(torch.nn.Module):
365
- def __init__(self, use_spectral_norm=False):
366
- super(MultiPeriodDiscriminator, self).__init__()
367
- periods = [2,3,5,7,11]
368
-
369
- discs = [DiscriminatorS(use_spectral_norm=use_spectral_norm)]
370
- discs = discs + [DiscriminatorP(i, use_spectral_norm=use_spectral_norm) for i in periods]
371
- self.discriminators = nn.ModuleList(discs)
372
-
373
- def forward(self, y, y_hat):
374
- y_d_rs = []
375
- y_d_gs = []
376
- fmap_rs = []
377
- fmap_gs = []
378
- for i, d in enumerate(self.discriminators):
379
- y_d_r, fmap_r = d(y)
380
- y_d_g, fmap_g = d(y_hat)
381
- y_d_rs.append(y_d_r)
382
- y_d_gs.append(y_d_g)
383
- fmap_rs.append(fmap_r)
384
- fmap_gs.append(fmap_g)
385
-
386
- return y_d_rs, y_d_gs, fmap_rs, fmap_gs
387
-
388
-
389
-
390
- class SynthesizerTrn(nn.Module):
391
- """
392
- Synthesizer for Training
393
- """
394
-
395
- def __init__(self,
396
- n_vocab,
397
- spec_channels,
398
- segment_size,
399
- inter_channels,
400
- hidden_channels,
401
- filter_channels,
402
- n_heads,
403
- n_layers,
404
- kernel_size,
405
- p_dropout,
406
- resblock,
407
- resblock_kernel_sizes,
408
- resblock_dilation_sizes,
409
- upsample_rates,
410
- upsample_initial_channel,
411
- upsample_kernel_sizes,
412
- n_speakers=0,
413
- gin_channels=0,
414
- use_sdp=True,
415
- **kwargs):
416
-
417
- super().__init__()
418
- self.n_vocab = n_vocab
419
- self.spec_channels = spec_channels
420
- self.inter_channels = inter_channels
421
- self.hidden_channels = hidden_channels
422
- self.filter_channels = filter_channels
423
- self.n_heads = n_heads
424
- self.n_layers = n_layers
425
- self.kernel_size = kernel_size
426
- self.p_dropout = p_dropout
427
- self.resblock = resblock
428
- self.resblock_kernel_sizes = resblock_kernel_sizes
429
- self.resblock_dilation_sizes = resblock_dilation_sizes
430
- self.upsample_rates = upsample_rates
431
- self.upsample_initial_channel = upsample_initial_channel
432
- self.upsample_kernel_sizes = upsample_kernel_sizes
433
- self.segment_size = segment_size
434
- self.n_speakers = n_speakers
435
- self.gin_channels = gin_channels
436
-
437
- self.use_sdp = use_sdp
438
-
439
- self.enc_p = TextEncoder(n_vocab,
440
- inter_channels,
441
- hidden_channels,
442
- filter_channels,
443
- n_heads,
444
- n_layers,
445
- kernel_size,
446
- p_dropout)
447
- self.dec = Generator(inter_channels, resblock, resblock_kernel_sizes, resblock_dilation_sizes, upsample_rates, upsample_initial_channel, upsample_kernel_sizes, gin_channels=gin_channels)
448
- self.enc_q = PosteriorEncoder(spec_channels, inter_channels, hidden_channels, 5, 1, 16, gin_channels=gin_channels)
449
- self.flow = ResidualCouplingBlock(inter_channels, hidden_channels, 5, 1, 4, gin_channels=gin_channels)
450
-
451
- if use_sdp:
452
- self.dp = StochasticDurationPredictor(hidden_channels, 192, 3, 0.5, 4, gin_channels=gin_channels)
453
- else:
454
- self.dp = DurationPredictor(hidden_channels, 256, 3, 0.5, gin_channels=gin_channels)
455
-
456
- if n_speakers > 1:
457
- self.emb_g = nn.Embedding(n_speakers, gin_channels)
458
-
459
- def forward(self, x, x_lengths, y, y_lengths, sid=None):
460
-
461
- x, m_p, logs_p, x_mask = self.enc_p(x, x_lengths)
462
- if self.n_speakers > 0:
463
- g = self.emb_g(sid).unsqueeze(-1) # [b, h, 1]
464
- else:
465
- g = None
466
-
467
- z, m_q, logs_q, y_mask = self.enc_q(y, y_lengths, g=g)
468
- z_p = self.flow(z, y_mask, g=g)
469
-
470
- with torch.no_grad():
471
- # negative cross-entropy
472
- s_p_sq_r = torch.exp(-2 * logs_p) # [b, d, t]
473
- neg_cent1 = torch.sum(-0.5 * math.log(2 * math.pi) - logs_p, [1], keepdim=True) # [b, 1, t_s]
474
- neg_cent2 = torch.matmul(-0.5 * (z_p ** 2).transpose(1, 2), s_p_sq_r) # [b, t_t, d] x [b, d, t_s] = [b, t_t, t_s]
475
- neg_cent3 = torch.matmul(z_p.transpose(1, 2), (m_p * s_p_sq_r)) # [b, t_t, d] x [b, d, t_s] = [b, t_t, t_s]
476
- neg_cent4 = torch.sum(-0.5 * (m_p ** 2) * s_p_sq_r, [1], keepdim=True) # [b, 1, t_s]
477
- neg_cent = neg_cent1 + neg_cent2 + neg_cent3 + neg_cent4
478
-
479
- attn_mask = torch.unsqueeze(x_mask, 2) * torch.unsqueeze(y_mask, -1)
480
- attn = monotonic_align.maximum_path(neg_cent, attn_mask.squeeze(1)).unsqueeze(1).detach()
481
-
482
- w = attn.sum(2)
483
- if self.use_sdp:
484
- l_length = self.dp(x, x_mask, w, g=g)
485
- l_length = l_length / torch.sum(x_mask)
486
- else:
487
- logw_ = torch.log(w + 1e-6) * x_mask
488
- logw = self.dp(x, x_mask, g=g)
489
- l_length = torch.sum((logw - logw_)**2, [1,2]) / torch.sum(x_mask) # for averaging
490
-
491
- # expand prior
492
- m_p = torch.matmul(attn.squeeze(1), m_p.transpose(1, 2)).transpose(1, 2)
493
- logs_p = torch.matmul(attn.squeeze(1), logs_p.transpose(1, 2)).transpose(1, 2)
494
-
495
- z_slice, ids_slice = commons.rand_slice_segments(z, y_lengths, self.segment_size)
496
- o = self.dec(z_slice, g=g)
497
- return o, l_length, attn, ids_slice, x_mask, y_mask, (z, z_p, m_p, logs_p, m_q, logs_q)
498
-
499
- def infer(self, x, x_lengths, sid=None, noise_scale=1, length_scale=1, noise_scale_w=1., max_len=None):
500
- x, m_p, logs_p, x_mask = self.enc_p(x, x_lengths)
501
- if self.n_speakers > 0:
502
- g = self.emb_g(sid).unsqueeze(-1) # [b, h, 1]
503
- else:
504
- g = None
505
-
506
- if self.use_sdp:
507
- logw = self.dp(x, x_mask, g=g, reverse=True, noise_scale=noise_scale_w)
508
- else:
509
- logw = self.dp(x, x_mask, g=g)
510
- w = torch.exp(logw) * x_mask * length_scale
511
- w_ceil = torch.ceil(w)
512
- y_lengths = torch.clamp_min(torch.sum(w_ceil, [1, 2]), 1).long()
513
- y_mask = torch.unsqueeze(commons.sequence_mask(y_lengths, None), 1).to(x_mask.dtype)
514
- attn_mask = torch.unsqueeze(x_mask, 2) * torch.unsqueeze(y_mask, -1)
515
- attn = commons.generate_path(w_ceil, attn_mask)
516
-
517
- m_p = torch.matmul(attn.squeeze(1), m_p.transpose(1, 2)).transpose(1, 2) # [b, t', t], [b, t, d] -> [b, d, t']
518
- logs_p = torch.matmul(attn.squeeze(1), logs_p.transpose(1, 2)).transpose(1, 2) # [b, t', t], [b, t, d] -> [b, d, t']
519
-
520
- z_p = m_p + torch.randn_like(m_p) * torch.exp(logs_p) * noise_scale
521
- z = self.flow(z_p, y_mask, g=g, reverse=True)
522
- o = self.dec((z * y_mask)[:,:,:max_len], g=g)
523
- return o, attn, y_mask, (z, z_p, m_p, logs_p)
524
-
525
- def voice_conversion(self, y, y_lengths, sid_src, sid_tgt):
526
- assert self.n_speakers > 0, "n_speakers have to be larger than 0."
527
- g_src = self.emb_g(sid_src).unsqueeze(-1)
528
- g_tgt = self.emb_g(sid_tgt).unsqueeze(-1)
529
- z, m_q, logs_q, y_mask = self.enc_q(y, y_lengths, g=g_src)
530
- z_p = self.flow(z, y_mask, g=g_src)
531
- z_hat = self.flow(z_p, y_mask, g=g_tgt, reverse=True)
532
- o_hat = self.dec(z_hat * y_mask, g=g_tgt)
533
- return o_hat, y_mask, (z, z_p, z_hat)
534
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import copy
2
+ import math
3
+ import torch
4
+ from torch import nn
5
+ from torch.nn import functional as F
6
+
7
+ import commons
8
+ import modules
9
+ from inflect_alias_free import AliasFreeActivation1d, AliasFreeResBlock1, SnakeBeta
10
+ import attentions
11
+ import monotonic_align
12
+
13
+ from torch.nn import Conv1d, ConvTranspose1d, AvgPool1d, Conv2d
14
+ from torch.nn.utils import weight_norm, remove_weight_norm, spectral_norm
15
+ from commons import init_weights, get_padding
16
+
17
+
18
+ class StochasticDurationPredictor(nn.Module):
19
+ def __init__(self, in_channels, filter_channels, kernel_size, p_dropout, n_flows=4, gin_channels=0):
20
+ super().__init__()
21
+ filter_channels = in_channels # it needs to be removed from future version.
22
+ self.in_channels = in_channels
23
+ self.filter_channels = filter_channels
24
+ self.kernel_size = kernel_size
25
+ self.p_dropout = p_dropout
26
+ self.n_flows = n_flows
27
+ self.gin_channels = gin_channels
28
+
29
+ self.log_flow = modules.Log()
30
+ self.flows = nn.ModuleList()
31
+ self.flows.append(modules.ElementwiseAffine(2))
32
+ for i in range(n_flows):
33
+ self.flows.append(modules.ConvFlow(2, filter_channels, kernel_size, n_layers=3))
34
+ self.flows.append(modules.Flip())
35
+
36
+ self.post_pre = nn.Conv1d(1, filter_channels, 1)
37
+ self.post_proj = nn.Conv1d(filter_channels, filter_channels, 1)
38
+ self.post_convs = modules.DDSConv(filter_channels, kernel_size, n_layers=3, p_dropout=p_dropout)
39
+ self.post_flows = nn.ModuleList()
40
+ self.post_flows.append(modules.ElementwiseAffine(2))
41
+ for i in range(4):
42
+ self.post_flows.append(modules.ConvFlow(2, filter_channels, kernel_size, n_layers=3))
43
+ self.post_flows.append(modules.Flip())
44
+
45
+ self.pre = nn.Conv1d(in_channels, filter_channels, 1)
46
+ self.proj = nn.Conv1d(filter_channels, filter_channels, 1)
47
+ self.convs = modules.DDSConv(filter_channels, kernel_size, n_layers=3, p_dropout=p_dropout)
48
+ if gin_channels != 0:
49
+ self.cond = nn.Conv1d(gin_channels, filter_channels, 1)
50
+
51
+ def forward(self, x, x_mask, w=None, g=None, reverse=False, noise_scale=1.0):
52
+ x = torch.detach(x)
53
+ x = self.pre(x)
54
+ if g is not None:
55
+ g = torch.detach(g)
56
+ x = x + self.cond(g)
57
+ x = self.convs(x, x_mask)
58
+ x = self.proj(x) * x_mask
59
+
60
+ if not reverse:
61
+ flows = self.flows
62
+ assert w is not None
63
+
64
+ logdet_tot_q = 0
65
+ h_w = self.post_pre(w)
66
+ h_w = self.post_convs(h_w, x_mask)
67
+ h_w = self.post_proj(h_w) * x_mask
68
+ e_q = torch.randn(w.size(0), 2, w.size(2)).to(device=x.device, dtype=x.dtype) * x_mask
69
+ z_q = e_q
70
+ for flow in self.post_flows:
71
+ z_q, logdet_q = flow(z_q, x_mask, g=(x + h_w))
72
+ logdet_tot_q += logdet_q
73
+ z_u, z1 = torch.split(z_q, [1, 1], 1)
74
+ u = torch.sigmoid(z_u) * x_mask
75
+ z0 = (w - u) * x_mask
76
+ logdet_tot_q += torch.sum((F.logsigmoid(z_u) + F.logsigmoid(-z_u)) * x_mask, [1,2])
77
+ logq = torch.sum(-0.5 * (math.log(2*math.pi) + (e_q**2)) * x_mask, [1,2]) - logdet_tot_q
78
+
79
+ logdet_tot = 0
80
+ z0, logdet = self.log_flow(z0, x_mask)
81
+ logdet_tot += logdet
82
+ z = torch.cat([z0, z1], 1)
83
+ for flow in flows:
84
+ z, logdet = flow(z, x_mask, g=x, reverse=reverse)
85
+ logdet_tot = logdet_tot + logdet
86
+ nll = torch.sum(0.5 * (math.log(2*math.pi) + (z**2)) * x_mask, [1,2]) - logdet_tot
87
+ return nll + logq # [b]
88
+ else:
89
+ flows = list(reversed(self.flows))
90
+ flows = flows[:-2] + [flows[-1]] # remove a useless vflow
91
+ z = torch.randn(x.size(0), 2, x.size(2)).to(device=x.device, dtype=x.dtype) * noise_scale
92
+ for flow in flows:
93
+ z = flow(z, x_mask, g=x, reverse=reverse)
94
+ z0, z1 = torch.split(z, [1, 1], 1)
95
+ logw = z0
96
+ return logw
97
+
98
+
99
+ class DurationPredictor(nn.Module):
100
+ def __init__(self, in_channels, filter_channels, kernel_size, p_dropout, gin_channels=0):
101
+ super().__init__()
102
+
103
+ self.in_channels = in_channels
104
+ self.filter_channels = filter_channels
105
+ self.kernel_size = kernel_size
106
+ self.p_dropout = p_dropout
107
+ self.gin_channels = gin_channels
108
+
109
+ self.drop = nn.Dropout(p_dropout)
110
+ self.conv_1 = nn.Conv1d(in_channels, filter_channels, kernel_size, padding=kernel_size//2)
111
+ self.norm_1 = modules.LayerNorm(filter_channels)
112
+ self.conv_2 = nn.Conv1d(filter_channels, filter_channels, kernel_size, padding=kernel_size//2)
113
+ self.norm_2 = modules.LayerNorm(filter_channels)
114
+ self.proj = nn.Conv1d(filter_channels, 1, 1)
115
+
116
+ if gin_channels != 0:
117
+ self.cond = nn.Conv1d(gin_channels, in_channels, 1)
118
+
119
+ def forward(self, x, x_mask, g=None):
120
+ x = torch.detach(x)
121
+ if g is not None:
122
+ g = torch.detach(g)
123
+ x = x + self.cond(g)
124
+ x = self.conv_1(x * x_mask)
125
+ x = torch.relu(x)
126
+ x = self.norm_1(x)
127
+ x = self.drop(x)
128
+ x = self.conv_2(x * x_mask)
129
+ x = torch.relu(x)
130
+ x = self.norm_2(x)
131
+ x = self.drop(x)
132
+ x = self.proj(x * x_mask)
133
+ return x * x_mask
134
+
135
+
136
+ class TextEncoder(nn.Module):
137
+ def __init__(self,
138
+ n_vocab,
139
+ out_channels,
140
+ hidden_channels,
141
+ filter_channels,
142
+ n_heads,
143
+ n_layers,
144
+ kernel_size,
145
+ p_dropout):
146
+ super().__init__()
147
+ self.n_vocab = n_vocab
148
+ self.out_channels = out_channels
149
+ self.hidden_channels = hidden_channels
150
+ self.filter_channels = filter_channels
151
+ self.n_heads = n_heads
152
+ self.n_layers = n_layers
153
+ self.kernel_size = kernel_size
154
+ self.p_dropout = p_dropout
155
+
156
+ self.emb = nn.Embedding(n_vocab, hidden_channels)
157
+ nn.init.normal_(self.emb.weight, 0.0, hidden_channels**-0.5)
158
+
159
+ self.encoder = attentions.Encoder(
160
+ hidden_channels,
161
+ filter_channels,
162
+ n_heads,
163
+ n_layers,
164
+ kernel_size,
165
+ p_dropout)
166
+ self.proj= nn.Conv1d(hidden_channels, out_channels * 2, 1)
167
+
168
+ def forward(self, x, x_lengths):
169
+ x = self.emb(x) * math.sqrt(self.hidden_channels) # [b, t, h]
170
+ x = torch.transpose(x, 1, -1) # [b, h, t]
171
+ x_mask = torch.unsqueeze(commons.sequence_mask(x_lengths, x.size(2)), 1).to(x.dtype)
172
+
173
+ x = self.encoder(x * x_mask, x_mask)
174
+ stats = self.proj(x) * x_mask
175
+
176
+ m, logs = torch.split(stats, self.out_channels, dim=1)
177
+ return x, m, logs, x_mask
178
+
179
+
180
+ class ResidualCouplingBlock(nn.Module):
181
+ def __init__(self,
182
+ channels,
183
+ hidden_channels,
184
+ kernel_size,
185
+ dilation_rate,
186
+ n_layers,
187
+ n_flows=4,
188
+ gin_channels=0):
189
+ super().__init__()
190
+ self.channels = channels
191
+ self.hidden_channels = hidden_channels
192
+ self.kernel_size = kernel_size
193
+ self.dilation_rate = dilation_rate
194
+ self.n_layers = n_layers
195
+ self.n_flows = n_flows
196
+ self.gin_channels = gin_channels
197
+
198
+ self.flows = nn.ModuleList()
199
+ for i in range(n_flows):
200
+ self.flows.append(modules.ResidualCouplingLayer(channels, hidden_channels, kernel_size, dilation_rate, n_layers, gin_channels=gin_channels, mean_only=True))
201
+ self.flows.append(modules.Flip())
202
+
203
+ def forward(self, x, x_mask, g=None, reverse=False):
204
+ if not reverse:
205
+ for flow in self.flows:
206
+ x, _ = flow(x, x_mask, g=g, reverse=reverse)
207
+ else:
208
+ for flow in reversed(self.flows):
209
+ x = flow(x, x_mask, g=g, reverse=reverse)
210
+ return x
211
+
212
+
213
+ class PosteriorEncoder(nn.Module):
214
+ def __init__(self,
215
+ in_channels,
216
+ out_channels,
217
+ hidden_channels,
218
+ kernel_size,
219
+ dilation_rate,
220
+ n_layers,
221
+ gin_channels=0):
222
+ super().__init__()
223
+ self.in_channels = in_channels
224
+ self.out_channels = out_channels
225
+ self.hidden_channels = hidden_channels
226
+ self.kernel_size = kernel_size
227
+ self.dilation_rate = dilation_rate
228
+ self.n_layers = n_layers
229
+ self.gin_channels = gin_channels
230
+
231
+ self.pre = nn.Conv1d(in_channels, hidden_channels, 1)
232
+ self.enc = modules.WN(hidden_channels, kernel_size, dilation_rate, n_layers, gin_channels=gin_channels)
233
+ self.proj = nn.Conv1d(hidden_channels, out_channels * 2, 1)
234
+
235
+ def forward(self, x, x_lengths, g=None):
236
+ x_mask = torch.unsqueeze(commons.sequence_mask(x_lengths, x.size(2)), 1).to(x.dtype)
237
+ x = self.pre(x) * x_mask
238
+ x = self.enc(x, x_mask, g=g)
239
+ stats = self.proj(x) * x_mask
240
+ m, logs = torch.split(stats, self.out_channels, dim=1)
241
+ z = (m + torch.randn_like(m) * torch.exp(logs)) * x_mask
242
+ return z, m, logs, x_mask
243
+
244
+
245
+ class Generator(torch.nn.Module):
246
+ def __init__(self, initial_channel, resblock, resblock_kernel_sizes, resblock_dilation_sizes, upsample_rates, upsample_initial_channel, upsample_kernel_sizes, gin_channels=0, decoder_alias_free=False, decoder_alias_free_start_stage=2, decoder_snake_logscale=True):
247
+ super(Generator, self).__init__()
248
+ self.num_kernels = len(resblock_kernel_sizes)
249
+ self.num_upsamples = len(upsample_rates)
250
+ self.conv_pre = Conv1d(initial_channel, upsample_initial_channel, 7, 1, padding=3)
251
+ resblock_class = modules.ResBlock1 if resblock == '1' else modules.ResBlock2
252
+ self.decoder_alias_free = bool(decoder_alias_free)
253
+ self.decoder_alias_free_start_stage = int(decoder_alias_free_start_stage)
254
+
255
+ self.ups = nn.ModuleList()
256
+ for i, (u, k) in enumerate(zip(upsample_rates, upsample_kernel_sizes)):
257
+ self.ups.append(weight_norm(
258
+ ConvTranspose1d(upsample_initial_channel//(2**i), upsample_initial_channel//(2**(i+1)),
259
+ k, u, padding=(k-u)//2)))
260
+
261
+ self.resblocks = nn.ModuleList()
262
+ for i in range(len(self.ups)):
263
+ ch = upsample_initial_channel//(2**(i+1))
264
+ for j, (k, d) in enumerate(zip(resblock_kernel_sizes, resblock_dilation_sizes)):
265
+ if self.decoder_alias_free and i >= self.decoder_alias_free_start_stage:
266
+ self.resblocks.append(AliasFreeResBlock1(
267
+ ch, k, d, logscale=decoder_snake_logscale))
268
+ else:
269
+ self.resblocks.append(resblock_class(ch, k, d))
270
+
271
+ self.alias_free_pre_activations = nn.ModuleList()
272
+ if self.decoder_alias_free:
273
+ for i in range(self.num_upsamples):
274
+ channels = upsample_initial_channel // (2 ** i)
275
+ if i >= self.decoder_alias_free_start_stage:
276
+ self.alias_free_pre_activations.append(
277
+ AliasFreeActivation1d(nn.LeakyReLU(modules.LRELU_SLOPE)))
278
+ else:
279
+ self.alias_free_pre_activations.append(nn.Identity())
280
+ self.alias_free_post_activation = AliasFreeActivation1d(
281
+ SnakeBeta(ch, logscale=decoder_snake_logscale))
282
+
283
+ self.conv_post = Conv1d(ch, 1, 7, 1, padding=3, bias=False)
284
+ self.ups.apply(init_weights)
285
+
286
+ if gin_channels != 0:
287
+ self.cond = nn.Conv1d(gin_channels, upsample_initial_channel, 1)
288
+
289
+ def forward(self, x, g=None):
290
+ x = self.conv_pre(x)
291
+ if g is not None:
292
+ x = x + self.cond(g)
293
+
294
+ for i in range(self.num_upsamples):
295
+ if self.decoder_alias_free and i >= self.decoder_alias_free_start_stage:
296
+ x = self.alias_free_pre_activations[i](x)
297
+ else:
298
+ x = F.leaky_relu(x, modules.LRELU_SLOPE)
299
+ x = self.ups[i](x)
300
+ xs = None
301
+ for j in range(self.num_kernels):
302
+ if xs is None:
303
+ xs = self.resblocks[i*self.num_kernels+j](x)
304
+ else:
305
+ xs += self.resblocks[i*self.num_kernels+j](x)
306
+ x = xs / self.num_kernels
307
+ if self.decoder_alias_free:
308
+ x = self.alias_free_post_activation(x)
309
+ else:
310
+ x = F.leaky_relu(x)
311
+ x = self.conv_post(x)
312
+ x = torch.tanh(x)
313
+
314
+ return x
315
+
316
+ def remove_weight_norm(self):
317
+ print('Removing weight norm...')
318
+ for l in self.ups:
319
+ remove_weight_norm(l)
320
+ for l in self.resblocks:
321
+ l.remove_weight_norm()
322
+
323
+
324
+ class DiscriminatorP(torch.nn.Module):
325
+ def __init__(self, period, kernel_size=5, stride=3, use_spectral_norm=False):
326
+ super(DiscriminatorP, self).__init__()
327
+ self.period = period
328
+ self.use_spectral_norm = use_spectral_norm
329
+ norm_f = weight_norm if use_spectral_norm == False else spectral_norm
330
+ self.convs = nn.ModuleList([
331
+ norm_f(Conv2d(1, 32, (kernel_size, 1), (stride, 1), padding=(get_padding(kernel_size, 1), 0))),
332
+ norm_f(Conv2d(32, 128, (kernel_size, 1), (stride, 1), padding=(get_padding(kernel_size, 1), 0))),
333
+ norm_f(Conv2d(128, 512, (kernel_size, 1), (stride, 1), padding=(get_padding(kernel_size, 1), 0))),
334
+ norm_f(Conv2d(512, 1024, (kernel_size, 1), (stride, 1), padding=(get_padding(kernel_size, 1), 0))),
335
+ norm_f(Conv2d(1024, 1024, (kernel_size, 1), 1, padding=(get_padding(kernel_size, 1), 0))),
336
+ ])
337
+ self.conv_post = norm_f(Conv2d(1024, 1, (3, 1), 1, padding=(1, 0)))
338
+
339
+ def forward(self, x):
340
+ fmap = []
341
+
342
+ # 1d to 2d
343
+ b, c, t = x.shape
344
+ if t % self.period != 0: # pad first
345
+ n_pad = self.period - (t % self.period)
346
+ x = F.pad(x, (0, n_pad), "reflect")
347
+ t = t + n_pad
348
+ x = x.view(b, c, t // self.period, self.period)
349
+
350
+ for l in self.convs:
351
+ x = l(x)
352
+ x = F.leaky_relu(x, modules.LRELU_SLOPE)
353
+ fmap.append(x)
354
+ x = self.conv_post(x)
355
+ fmap.append(x)
356
+ x = torch.flatten(x, 1, -1)
357
+
358
+ return x, fmap
359
+
360
+
361
+ class DiscriminatorS(torch.nn.Module):
362
+ def __init__(self, use_spectral_norm=False):
363
+ super(DiscriminatorS, self).__init__()
364
+ norm_f = weight_norm if use_spectral_norm == False else spectral_norm
365
+ self.convs = nn.ModuleList([
366
+ norm_f(Conv1d(1, 16, 15, 1, padding=7)),
367
+ norm_f(Conv1d(16, 64, 41, 4, groups=4, padding=20)),
368
+ norm_f(Conv1d(64, 256, 41, 4, groups=16, padding=20)),
369
+ norm_f(Conv1d(256, 1024, 41, 4, groups=64, padding=20)),
370
+ norm_f(Conv1d(1024, 1024, 41, 4, groups=256, padding=20)),
371
+ norm_f(Conv1d(1024, 1024, 5, 1, padding=2)),
372
+ ])
373
+ self.conv_post = norm_f(Conv1d(1024, 1, 3, 1, padding=1))
374
+
375
+ def forward(self, x):
376
+ fmap = []
377
+
378
+ for l in self.convs:
379
+ x = l(x)
380
+ x = F.leaky_relu(x, modules.LRELU_SLOPE)
381
+ fmap.append(x)
382
+ x = self.conv_post(x)
383
+ fmap.append(x)
384
+ x = torch.flatten(x, 1, -1)
385
+
386
+ return x, fmap
387
+
388
+
389
+ class MultiPeriodDiscriminator(torch.nn.Module):
390
+ def __init__(self, use_spectral_norm=False):
391
+ super(MultiPeriodDiscriminator, self).__init__()
392
+ periods = [2,3,5,7,11]
393
+
394
+ discs = [DiscriminatorS(use_spectral_norm=use_spectral_norm)]
395
+ discs = discs + [DiscriminatorP(i, use_spectral_norm=use_spectral_norm) for i in periods]
396
+ self.discriminators = nn.ModuleList(discs)
397
+
398
+ def forward(self, y, y_hat):
399
+ y_d_rs = []
400
+ y_d_gs = []
401
+ fmap_rs = []
402
+ fmap_gs = []
403
+ for i, d in enumerate(self.discriminators):
404
+ y_d_r, fmap_r = d(y)
405
+ y_d_g, fmap_g = d(y_hat)
406
+ y_d_rs.append(y_d_r)
407
+ y_d_gs.append(y_d_g)
408
+ fmap_rs.append(fmap_r)
409
+ fmap_gs.append(fmap_g)
410
+
411
+ return y_d_rs, y_d_gs, fmap_rs, fmap_gs
412
+
413
+
414
+
415
+ class SynthesizerTrn(nn.Module):
416
+ """
417
+ Synthesizer for Training
418
+ """
419
+
420
+ def __init__(self,
421
+ n_vocab,
422
+ spec_channels,
423
+ segment_size,
424
+ inter_channels,
425
+ hidden_channels,
426
+ filter_channels,
427
+ n_heads,
428
+ n_layers,
429
+ kernel_size,
430
+ p_dropout,
431
+ resblock,
432
+ resblock_kernel_sizes,
433
+ resblock_dilation_sizes,
434
+ upsample_rates,
435
+ upsample_initial_channel,
436
+ upsample_kernel_sizes,
437
+ n_speakers=0,
438
+ gin_channels=0,
439
+ use_sdp=True,
440
+ **kwargs):
441
+
442
+ super().__init__()
443
+ self.n_vocab = n_vocab
444
+ self.spec_channels = spec_channels
445
+ self.inter_channels = inter_channels
446
+ self.hidden_channels = hidden_channels
447
+ self.filter_channels = filter_channels
448
+ self.n_heads = n_heads
449
+ self.n_layers = n_layers
450
+ self.kernel_size = kernel_size
451
+ self.p_dropout = p_dropout
452
+ self.resblock = resblock
453
+ self.resblock_kernel_sizes = resblock_kernel_sizes
454
+ self.resblock_dilation_sizes = resblock_dilation_sizes
455
+ self.upsample_rates = upsample_rates
456
+ self.upsample_initial_channel = upsample_initial_channel
457
+ self.upsample_kernel_sizes = upsample_kernel_sizes
458
+ self.segment_size = segment_size
459
+ self.n_speakers = n_speakers
460
+ self.gin_channels = gin_channels
461
+
462
+ self.use_sdp = use_sdp
463
+
464
+ self.enc_p = TextEncoder(n_vocab,
465
+ inter_channels,
466
+ hidden_channels,
467
+ filter_channels,
468
+ n_heads,
469
+ n_layers,
470
+ kernel_size,
471
+ p_dropout)
472
+ self.dec = Generator(
473
+ inter_channels, resblock, resblock_kernel_sizes,
474
+ resblock_dilation_sizes, upsample_rates, upsample_initial_channel,
475
+ upsample_kernel_sizes, gin_channels=gin_channels,
476
+ decoder_alias_free=kwargs.get("decoder_alias_free", False),
477
+ decoder_alias_free_start_stage=kwargs.get("decoder_alias_free_start_stage", 2),
478
+ decoder_snake_logscale=kwargs.get("decoder_snake_logscale", True))
479
+ self.enc_q = PosteriorEncoder(spec_channels, inter_channels, hidden_channels, 5, 1, 16, gin_channels=gin_channels)
480
+ self.flow = ResidualCouplingBlock(inter_channels, hidden_channels, 5, 1, 4, gin_channels=gin_channels)
481
+
482
+ if use_sdp:
483
+ self.dp = StochasticDurationPredictor(hidden_channels, 192, 3, 0.5, 4, gin_channels=gin_channels)
484
+ else:
485
+ self.dp = DurationPredictor(hidden_channels, 256, 3, 0.5, gin_channels=gin_channels)
486
+
487
+ if n_speakers > 1:
488
+ self.emb_g = nn.Embedding(n_speakers, gin_channels)
489
+
490
+ def forward(self, x, x_lengths, y, y_lengths, sid=None):
491
+
492
+ x, m_p, logs_p, x_mask = self.enc_p(x, x_lengths)
493
+ if self.n_speakers > 0:
494
+ g = self.emb_g(sid).unsqueeze(-1) # [b, h, 1]
495
+ else:
496
+ g = None
497
+
498
+ z, m_q, logs_q, y_mask = self.enc_q(y, y_lengths, g=g)
499
+ z_p = self.flow(z, y_mask, g=g)
500
+
501
+ with torch.no_grad():
502
+ # negative cross-entropy
503
+ s_p_sq_r = torch.exp(-2 * logs_p) # [b, d, t]
504
+ neg_cent1 = torch.sum(-0.5 * math.log(2 * math.pi) - logs_p, [1], keepdim=True) # [b, 1, t_s]
505
+ neg_cent2 = torch.matmul(-0.5 * (z_p ** 2).transpose(1, 2), s_p_sq_r) # [b, t_t, d] x [b, d, t_s] = [b, t_t, t_s]
506
+ neg_cent3 = torch.matmul(z_p.transpose(1, 2), (m_p * s_p_sq_r)) # [b, t_t, d] x [b, d, t_s] = [b, t_t, t_s]
507
+ neg_cent4 = torch.sum(-0.5 * (m_p ** 2) * s_p_sq_r, [1], keepdim=True) # [b, 1, t_s]
508
+ neg_cent = neg_cent1 + neg_cent2 + neg_cent3 + neg_cent4
509
+
510
+ attn_mask = torch.unsqueeze(x_mask, 2) * torch.unsqueeze(y_mask, -1)
511
+ attn = monotonic_align.maximum_path(neg_cent, attn_mask.squeeze(1)).unsqueeze(1).detach()
512
+
513
+ w = attn.sum(2)
514
+ if self.use_sdp:
515
+ l_length = self.dp(x, x_mask, w, g=g)
516
+ l_length = l_length / torch.sum(x_mask)
517
+ else:
518
+ logw_ = torch.log(w + 1e-6) * x_mask
519
+ logw = self.dp(x, x_mask, g=g)
520
+ l_length = torch.sum((logw - logw_)**2, [1,2]) / torch.sum(x_mask) # for averaging
521
+
522
+ # expand prior
523
+ m_p = torch.matmul(attn.squeeze(1), m_p.transpose(1, 2)).transpose(1, 2)
524
+ logs_p = torch.matmul(attn.squeeze(1), logs_p.transpose(1, 2)).transpose(1, 2)
525
+
526
+ z_slice, ids_slice = commons.rand_slice_segments(z, y_lengths, self.segment_size)
527
+ o = self.dec(z_slice, g=g)
528
+ return o, l_length, attn, ids_slice, x_mask, y_mask, (z, z_p, m_p, logs_p, m_q, logs_q)
529
+
530
+ def infer(self, x, x_lengths, sid=None, noise_scale=1, length_scale=1, noise_scale_w=1., max_len=None):
531
+ x, m_p, logs_p, x_mask = self.enc_p(x, x_lengths)
532
+ if self.n_speakers > 0:
533
+ g = self.emb_g(sid).unsqueeze(-1) # [b, h, 1]
534
+ else:
535
+ g = None
536
+
537
+ if self.use_sdp:
538
+ logw = self.dp(x, x_mask, g=g, reverse=True, noise_scale=noise_scale_w)
539
+ else:
540
+ logw = self.dp(x, x_mask, g=g)
541
+ w = torch.exp(logw) * x_mask * length_scale
542
+ w_ceil = torch.ceil(w)
543
+ y_lengths = torch.clamp_min(torch.sum(w_ceil, [1, 2]), 1).long()
544
+ y_mask = torch.unsqueeze(commons.sequence_mask(y_lengths, None), 1).to(x_mask.dtype)
545
+ attn_mask = torch.unsqueeze(x_mask, 2) * torch.unsqueeze(y_mask, -1)
546
+ attn = commons.generate_path(w_ceil, attn_mask)
547
+
548
+ m_p = torch.matmul(attn.squeeze(1), m_p.transpose(1, 2)).transpose(1, 2) # [b, t', t], [b, t, d] -> [b, d, t']
549
+ logs_p = torch.matmul(attn.squeeze(1), logs_p.transpose(1, 2)).transpose(1, 2) # [b, t', t], [b, t, d] -> [b, d, t']
550
+
551
+ z_p = m_p + torch.randn_like(m_p) * torch.exp(logs_p) * noise_scale
552
+ z = self.flow(z_p, y_mask, g=g, reverse=True)
553
+ o = self.dec((z * y_mask)[:,:,:max_len], g=g)
554
+ return o, attn, y_mask, (z, z_p, m_p, logs_p)
555
+
556
+ def voice_conversion(self, y, y_lengths, sid_src, sid_tgt):
557
+ assert self.n_speakers > 0, "n_speakers have to be larger than 0."
558
+ g_src = self.emb_g(sid_src).unsqueeze(-1)
559
+ g_tgt = self.emb_g(sid_tgt).unsqueeze(-1)
560
+ z, m_q, logs_q, y_mask = self.enc_q(y, y_lengths, g=g_src)
561
+ z_p = self.flow(z, y_mask, g=g_src)
562
+ z_hat = self.flow(z_p, y_mask, g=g_tgt, reverse=True)
563
+ o_hat = self.dec(z_hat * y_mask, g=g_tgt)
564
+ return o_hat, y_mask, (z, z_p, z_hat)
runtime/modules.py CHANGED
@@ -1,390 +1,390 @@
1
- import copy
2
- import math
3
- import numpy as np
4
- import scipy
5
- import torch
6
- from torch import nn
7
- from torch.nn import functional as F
8
-
9
- from torch.nn import Conv1d, ConvTranspose1d, AvgPool1d, Conv2d
10
- from torch.nn.utils import weight_norm, remove_weight_norm
11
-
12
- import commons
13
- from commons import init_weights, get_padding
14
- from transforms import piecewise_rational_quadratic_transform
15
-
16
-
17
- LRELU_SLOPE = 0.1
18
-
19
-
20
- class LayerNorm(nn.Module):
21
- def __init__(self, channels, eps=1e-5):
22
- super().__init__()
23
- self.channels = channels
24
- self.eps = eps
25
-
26
- self.gamma = nn.Parameter(torch.ones(channels))
27
- self.beta = nn.Parameter(torch.zeros(channels))
28
-
29
- def forward(self, x):
30
- x = x.transpose(1, -1)
31
- x = F.layer_norm(x, (self.channels,), self.gamma, self.beta, self.eps)
32
- return x.transpose(1, -1)
33
-
34
-
35
- class ConvReluNorm(nn.Module):
36
- def __init__(self, in_channels, hidden_channels, out_channels, kernel_size, n_layers, p_dropout):
37
- super().__init__()
38
- self.in_channels = in_channels
39
- self.hidden_channels = hidden_channels
40
- self.out_channels = out_channels
41
- self.kernel_size = kernel_size
42
- self.n_layers = n_layers
43
- self.p_dropout = p_dropout
44
- assert n_layers > 1, "Number of layers should be larger than 0."
45
-
46
- self.conv_layers = nn.ModuleList()
47
- self.norm_layers = nn.ModuleList()
48
- self.conv_layers.append(nn.Conv1d(in_channels, hidden_channels, kernel_size, padding=kernel_size//2))
49
- self.norm_layers.append(LayerNorm(hidden_channels))
50
- self.relu_drop = nn.Sequential(
51
- nn.ReLU(),
52
- nn.Dropout(p_dropout))
53
- for _ in range(n_layers-1):
54
- self.conv_layers.append(nn.Conv1d(hidden_channels, hidden_channels, kernel_size, padding=kernel_size//2))
55
- self.norm_layers.append(LayerNorm(hidden_channels))
56
- self.proj = nn.Conv1d(hidden_channels, out_channels, 1)
57
- self.proj.weight.data.zero_()
58
- self.proj.bias.data.zero_()
59
-
60
- def forward(self, x, x_mask):
61
- x_org = x
62
- for i in range(self.n_layers):
63
- x = self.conv_layers[i](x * x_mask)
64
- x = self.norm_layers[i](x)
65
- x = self.relu_drop(x)
66
- x = x_org + self.proj(x)
67
- return x * x_mask
68
-
69
-
70
- class DDSConv(nn.Module):
71
- """
72
- Dialted and Depth-Separable Convolution
73
- """
74
- def __init__(self, channels, kernel_size, n_layers, p_dropout=0.):
75
- super().__init__()
76
- self.channels = channels
77
- self.kernel_size = kernel_size
78
- self.n_layers = n_layers
79
- self.p_dropout = p_dropout
80
-
81
- self.drop = nn.Dropout(p_dropout)
82
- self.convs_sep = nn.ModuleList()
83
- self.convs_1x1 = nn.ModuleList()
84
- self.norms_1 = nn.ModuleList()
85
- self.norms_2 = nn.ModuleList()
86
- for i in range(n_layers):
87
- dilation = kernel_size ** i
88
- padding = (kernel_size * dilation - dilation) // 2
89
- self.convs_sep.append(nn.Conv1d(channels, channels, kernel_size,
90
- groups=channels, dilation=dilation, padding=padding
91
- ))
92
- self.convs_1x1.append(nn.Conv1d(channels, channels, 1))
93
- self.norms_1.append(LayerNorm(channels))
94
- self.norms_2.append(LayerNorm(channels))
95
-
96
- def forward(self, x, x_mask, g=None):
97
- if g is not None:
98
- x = x + g
99
- for i in range(self.n_layers):
100
- y = self.convs_sep[i](x * x_mask)
101
- y = self.norms_1[i](y)
102
- y = F.gelu(y)
103
- y = self.convs_1x1[i](y)
104
- y = self.norms_2[i](y)
105
- y = F.gelu(y)
106
- y = self.drop(y)
107
- x = x + y
108
- return x * x_mask
109
-
110
-
111
- class WN(torch.nn.Module):
112
- def __init__(self, hidden_channels, kernel_size, dilation_rate, n_layers, gin_channels=0, p_dropout=0):
113
- super(WN, self).__init__()
114
- assert(kernel_size % 2 == 1)
115
- self.hidden_channels =hidden_channels
116
- self.kernel_size = kernel_size,
117
- self.dilation_rate = dilation_rate
118
- self.n_layers = n_layers
119
- self.gin_channels = gin_channels
120
- self.p_dropout = p_dropout
121
-
122
- self.in_layers = torch.nn.ModuleList()
123
- self.res_skip_layers = torch.nn.ModuleList()
124
- self.drop = nn.Dropout(p_dropout)
125
-
126
- if gin_channels != 0:
127
- cond_layer = torch.nn.Conv1d(gin_channels, 2*hidden_channels*n_layers, 1)
128
- self.cond_layer = torch.nn.utils.weight_norm(cond_layer, name='weight')
129
-
130
- for i in range(n_layers):
131
- dilation = dilation_rate ** i
132
- padding = int((kernel_size * dilation - dilation) / 2)
133
- in_layer = torch.nn.Conv1d(hidden_channels, 2*hidden_channels, kernel_size,
134
- dilation=dilation, padding=padding)
135
- in_layer = torch.nn.utils.weight_norm(in_layer, name='weight')
136
- self.in_layers.append(in_layer)
137
-
138
- # last one is not necessary
139
- if i < n_layers - 1:
140
- res_skip_channels = 2 * hidden_channels
141
- else:
142
- res_skip_channels = hidden_channels
143
-
144
- res_skip_layer = torch.nn.Conv1d(hidden_channels, res_skip_channels, 1)
145
- res_skip_layer = torch.nn.utils.weight_norm(res_skip_layer, name='weight')
146
- self.res_skip_layers.append(res_skip_layer)
147
-
148
- def forward(self, x, x_mask, g=None, **kwargs):
149
- output = torch.zeros_like(x)
150
- n_channels_tensor = torch.IntTensor([self.hidden_channels])
151
-
152
- if g is not None:
153
- g = self.cond_layer(g)
154
-
155
- for i in range(self.n_layers):
156
- x_in = self.in_layers[i](x)
157
- if g is not None:
158
- cond_offset = i * 2 * self.hidden_channels
159
- g_l = g[:,cond_offset:cond_offset+2*self.hidden_channels,:]
160
- else:
161
- g_l = torch.zeros_like(x_in)
162
-
163
- acts = commons.fused_add_tanh_sigmoid_multiply(
164
- x_in,
165
- g_l,
166
- n_channels_tensor)
167
- acts = self.drop(acts)
168
-
169
- res_skip_acts = self.res_skip_layers[i](acts)
170
- if i < self.n_layers - 1:
171
- res_acts = res_skip_acts[:,:self.hidden_channels,:]
172
- x = (x + res_acts) * x_mask
173
- output = output + res_skip_acts[:,self.hidden_channels:,:]
174
- else:
175
- output = output + res_skip_acts
176
- return output * x_mask
177
-
178
- def remove_weight_norm(self):
179
- if self.gin_channels != 0:
180
- torch.nn.utils.remove_weight_norm(self.cond_layer)
181
- for l in self.in_layers:
182
- torch.nn.utils.remove_weight_norm(l)
183
- for l in self.res_skip_layers:
184
- torch.nn.utils.remove_weight_norm(l)
185
-
186
-
187
- class ResBlock1(torch.nn.Module):
188
- def __init__(self, channels, kernel_size=3, dilation=(1, 3, 5)):
189
- super(ResBlock1, self).__init__()
190
- self.convs1 = nn.ModuleList([
191
- weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[0],
192
- padding=get_padding(kernel_size, dilation[0]))),
193
- weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[1],
194
- padding=get_padding(kernel_size, dilation[1]))),
195
- weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[2],
196
- padding=get_padding(kernel_size, dilation[2])))
197
- ])
198
- self.convs1.apply(init_weights)
199
-
200
- self.convs2 = nn.ModuleList([
201
- weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=1,
202
- padding=get_padding(kernel_size, 1))),
203
- weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=1,
204
- padding=get_padding(kernel_size, 1))),
205
- weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=1,
206
- padding=get_padding(kernel_size, 1)))
207
- ])
208
- self.convs2.apply(init_weights)
209
-
210
- def forward(self, x, x_mask=None):
211
- for c1, c2 in zip(self.convs1, self.convs2):
212
- xt = F.leaky_relu(x, LRELU_SLOPE)
213
- if x_mask is not None:
214
- xt = xt * x_mask
215
- xt = c1(xt)
216
- xt = F.leaky_relu(xt, LRELU_SLOPE)
217
- if x_mask is not None:
218
- xt = xt * x_mask
219
- xt = c2(xt)
220
- x = xt + x
221
- if x_mask is not None:
222
- x = x * x_mask
223
- return x
224
-
225
- def remove_weight_norm(self):
226
- for l in self.convs1:
227
- remove_weight_norm(l)
228
- for l in self.convs2:
229
- remove_weight_norm(l)
230
-
231
-
232
- class ResBlock2(torch.nn.Module):
233
- def __init__(self, channels, kernel_size=3, dilation=(1, 3)):
234
- super(ResBlock2, self).__init__()
235
- self.convs = nn.ModuleList([
236
- weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[0],
237
- padding=get_padding(kernel_size, dilation[0]))),
238
- weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[1],
239
- padding=get_padding(kernel_size, dilation[1])))
240
- ])
241
- self.convs.apply(init_weights)
242
-
243
- def forward(self, x, x_mask=None):
244
- for c in self.convs:
245
- xt = F.leaky_relu(x, LRELU_SLOPE)
246
- if x_mask is not None:
247
- xt = xt * x_mask
248
- xt = c(xt)
249
- x = xt + x
250
- if x_mask is not None:
251
- x = x * x_mask
252
- return x
253
-
254
- def remove_weight_norm(self):
255
- for l in self.convs:
256
- remove_weight_norm(l)
257
-
258
-
259
- class Log(nn.Module):
260
- def forward(self, x, x_mask, reverse=False, **kwargs):
261
- if not reverse:
262
- y = torch.log(torch.clamp_min(x, 1e-5)) * x_mask
263
- logdet = torch.sum(-y, [1, 2])
264
- return y, logdet
265
- else:
266
- x = torch.exp(x) * x_mask
267
- return x
268
-
269
-
270
- class Flip(nn.Module):
271
- def forward(self, x, *args, reverse=False, **kwargs):
272
- x = torch.flip(x, [1])
273
- if not reverse:
274
- logdet = torch.zeros(x.size(0)).to(dtype=x.dtype, device=x.device)
275
- return x, logdet
276
- else:
277
- return x
278
-
279
-
280
- class ElementwiseAffine(nn.Module):
281
- def __init__(self, channels):
282
- super().__init__()
283
- self.channels = channels
284
- self.m = nn.Parameter(torch.zeros(channels,1))
285
- self.logs = nn.Parameter(torch.zeros(channels,1))
286
-
287
- def forward(self, x, x_mask, reverse=False, **kwargs):
288
- if not reverse:
289
- y = self.m + torch.exp(self.logs) * x
290
- y = y * x_mask
291
- logdet = torch.sum(self.logs * x_mask, [1,2])
292
- return y, logdet
293
- else:
294
- x = (x - self.m) * torch.exp(-self.logs) * x_mask
295
- return x
296
-
297
-
298
- class ResidualCouplingLayer(nn.Module):
299
- def __init__(self,
300
- channels,
301
- hidden_channels,
302
- kernel_size,
303
- dilation_rate,
304
- n_layers,
305
- p_dropout=0,
306
- gin_channels=0,
307
- mean_only=False):
308
- assert channels % 2 == 0, "channels should be divisible by 2"
309
- super().__init__()
310
- self.channels = channels
311
- self.hidden_channels = hidden_channels
312
- self.kernel_size = kernel_size
313
- self.dilation_rate = dilation_rate
314
- self.n_layers = n_layers
315
- self.half_channels = channels // 2
316
- self.mean_only = mean_only
317
-
318
- self.pre = nn.Conv1d(self.half_channels, hidden_channels, 1)
319
- self.enc = WN(hidden_channels, kernel_size, dilation_rate, n_layers, p_dropout=p_dropout, gin_channels=gin_channels)
320
- self.post = nn.Conv1d(hidden_channels, self.half_channels * (2 - mean_only), 1)
321
- self.post.weight.data.zero_()
322
- self.post.bias.data.zero_()
323
-
324
- def forward(self, x, x_mask, g=None, reverse=False):
325
- x0, x1 = torch.split(x, [self.half_channels]*2, 1)
326
- h = self.pre(x0) * x_mask
327
- h = self.enc(h, x_mask, g=g)
328
- stats = self.post(h) * x_mask
329
- if not self.mean_only:
330
- m, logs = torch.split(stats, [self.half_channels]*2, 1)
331
- else:
332
- m = stats
333
- logs = torch.zeros_like(m)
334
-
335
- if not reverse:
336
- x1 = m + x1 * torch.exp(logs) * x_mask
337
- x = torch.cat([x0, x1], 1)
338
- logdet = torch.sum(logs, [1,2])
339
- return x, logdet
340
- else:
341
- x1 = (x1 - m) * torch.exp(-logs) * x_mask
342
- x = torch.cat([x0, x1], 1)
343
- return x
344
-
345
-
346
- class ConvFlow(nn.Module):
347
- def __init__(self, in_channels, filter_channels, kernel_size, n_layers, num_bins=10, tail_bound=5.0):
348
- super().__init__()
349
- self.in_channels = in_channels
350
- self.filter_channels = filter_channels
351
- self.kernel_size = kernel_size
352
- self.n_layers = n_layers
353
- self.num_bins = num_bins
354
- self.tail_bound = tail_bound
355
- self.half_channels = in_channels // 2
356
-
357
- self.pre = nn.Conv1d(self.half_channels, filter_channels, 1)
358
- self.convs = DDSConv(filter_channels, kernel_size, n_layers, p_dropout=0.)
359
- self.proj = nn.Conv1d(filter_channels, self.half_channels * (num_bins * 3 - 1), 1)
360
- self.proj.weight.data.zero_()
361
- self.proj.bias.data.zero_()
362
-
363
- def forward(self, x, x_mask, g=None, reverse=False):
364
- x0, x1 = torch.split(x, [self.half_channels]*2, 1)
365
- h = self.pre(x0)
366
- h = self.convs(h, x_mask, g=g)
367
- h = self.proj(h) * x_mask
368
-
369
- b, c, t = x0.shape
370
- h = h.reshape(b, c, -1, t).permute(0, 1, 3, 2) # [b, cx?, t] -> [b, c, t, ?]
371
-
372
- unnormalized_widths = h[..., :self.num_bins] / math.sqrt(self.filter_channels)
373
- unnormalized_heights = h[..., self.num_bins:2*self.num_bins] / math.sqrt(self.filter_channels)
374
- unnormalized_derivatives = h[..., 2 * self.num_bins:]
375
-
376
- x1, logabsdet = piecewise_rational_quadratic_transform(x1,
377
- unnormalized_widths,
378
- unnormalized_heights,
379
- unnormalized_derivatives,
380
- inverse=reverse,
381
- tails='linear',
382
- tail_bound=self.tail_bound
383
- )
384
-
385
- x = torch.cat([x0, x1], 1) * x_mask
386
- logdet = torch.sum(logabsdet * x_mask, [1,2])
387
- if not reverse:
388
- return x, logdet
389
- else:
390
- return x
 
1
+ import copy
2
+ import math
3
+ import numpy as np
4
+ import scipy
5
+ import torch
6
+ from torch import nn
7
+ from torch.nn import functional as F
8
+
9
+ from torch.nn import Conv1d, ConvTranspose1d, AvgPool1d, Conv2d
10
+ from torch.nn.utils import weight_norm, remove_weight_norm
11
+
12
+ import commons
13
+ from commons import init_weights, get_padding
14
+ from transforms import piecewise_rational_quadratic_transform
15
+
16
+
17
+ LRELU_SLOPE = 0.1
18
+
19
+
20
+ class LayerNorm(nn.Module):
21
+ def __init__(self, channels, eps=1e-5):
22
+ super().__init__()
23
+ self.channels = channels
24
+ self.eps = eps
25
+
26
+ self.gamma = nn.Parameter(torch.ones(channels))
27
+ self.beta = nn.Parameter(torch.zeros(channels))
28
+
29
+ def forward(self, x):
30
+ x = x.transpose(1, -1)
31
+ x = F.layer_norm(x, (self.channels,), self.gamma, self.beta, self.eps)
32
+ return x.transpose(1, -1)
33
+
34
+
35
+ class ConvReluNorm(nn.Module):
36
+ def __init__(self, in_channels, hidden_channels, out_channels, kernel_size, n_layers, p_dropout):
37
+ super().__init__()
38
+ self.in_channels = in_channels
39
+ self.hidden_channels = hidden_channels
40
+ self.out_channels = out_channels
41
+ self.kernel_size = kernel_size
42
+ self.n_layers = n_layers
43
+ self.p_dropout = p_dropout
44
+ assert n_layers > 1, "Number of layers should be larger than 0."
45
+
46
+ self.conv_layers = nn.ModuleList()
47
+ self.norm_layers = nn.ModuleList()
48
+ self.conv_layers.append(nn.Conv1d(in_channels, hidden_channels, kernel_size, padding=kernel_size//2))
49
+ self.norm_layers.append(LayerNorm(hidden_channels))
50
+ self.relu_drop = nn.Sequential(
51
+ nn.ReLU(),
52
+ nn.Dropout(p_dropout))
53
+ for _ in range(n_layers-1):
54
+ self.conv_layers.append(nn.Conv1d(hidden_channels, hidden_channels, kernel_size, padding=kernel_size//2))
55
+ self.norm_layers.append(LayerNorm(hidden_channels))
56
+ self.proj = nn.Conv1d(hidden_channels, out_channels, 1)
57
+ self.proj.weight.data.zero_()
58
+ self.proj.bias.data.zero_()
59
+
60
+ def forward(self, x, x_mask):
61
+ x_org = x
62
+ for i in range(self.n_layers):
63
+ x = self.conv_layers[i](x * x_mask)
64
+ x = self.norm_layers[i](x)
65
+ x = self.relu_drop(x)
66
+ x = x_org + self.proj(x)
67
+ return x * x_mask
68
+
69
+
70
+ class DDSConv(nn.Module):
71
+ """
72
+ Dialted and Depth-Separable Convolution
73
+ """
74
+ def __init__(self, channels, kernel_size, n_layers, p_dropout=0.):
75
+ super().__init__()
76
+ self.channels = channels
77
+ self.kernel_size = kernel_size
78
+ self.n_layers = n_layers
79
+ self.p_dropout = p_dropout
80
+
81
+ self.drop = nn.Dropout(p_dropout)
82
+ self.convs_sep = nn.ModuleList()
83
+ self.convs_1x1 = nn.ModuleList()
84
+ self.norms_1 = nn.ModuleList()
85
+ self.norms_2 = nn.ModuleList()
86
+ for i in range(n_layers):
87
+ dilation = kernel_size ** i
88
+ padding = (kernel_size * dilation - dilation) // 2
89
+ self.convs_sep.append(nn.Conv1d(channels, channels, kernel_size,
90
+ groups=channels, dilation=dilation, padding=padding
91
+ ))
92
+ self.convs_1x1.append(nn.Conv1d(channels, channels, 1))
93
+ self.norms_1.append(LayerNorm(channels))
94
+ self.norms_2.append(LayerNorm(channels))
95
+
96
+ def forward(self, x, x_mask, g=None):
97
+ if g is not None:
98
+ x = x + g
99
+ for i in range(self.n_layers):
100
+ y = self.convs_sep[i](x * x_mask)
101
+ y = self.norms_1[i](y)
102
+ y = F.gelu(y)
103
+ y = self.convs_1x1[i](y)
104
+ y = self.norms_2[i](y)
105
+ y = F.gelu(y)
106
+ y = self.drop(y)
107
+ x = x + y
108
+ return x * x_mask
109
+
110
+
111
+ class WN(torch.nn.Module):
112
+ def __init__(self, hidden_channels, kernel_size, dilation_rate, n_layers, gin_channels=0, p_dropout=0):
113
+ super(WN, self).__init__()
114
+ assert(kernel_size % 2 == 1)
115
+ self.hidden_channels =hidden_channels
116
+ self.kernel_size = kernel_size,
117
+ self.dilation_rate = dilation_rate
118
+ self.n_layers = n_layers
119
+ self.gin_channels = gin_channels
120
+ self.p_dropout = p_dropout
121
+
122
+ self.in_layers = torch.nn.ModuleList()
123
+ self.res_skip_layers = torch.nn.ModuleList()
124
+ self.drop = nn.Dropout(p_dropout)
125
+
126
+ if gin_channels != 0:
127
+ cond_layer = torch.nn.Conv1d(gin_channels, 2*hidden_channels*n_layers, 1)
128
+ self.cond_layer = torch.nn.utils.weight_norm(cond_layer, name='weight')
129
+
130
+ for i in range(n_layers):
131
+ dilation = dilation_rate ** i
132
+ padding = int((kernel_size * dilation - dilation) / 2)
133
+ in_layer = torch.nn.Conv1d(hidden_channels, 2*hidden_channels, kernel_size,
134
+ dilation=dilation, padding=padding)
135
+ in_layer = torch.nn.utils.weight_norm(in_layer, name='weight')
136
+ self.in_layers.append(in_layer)
137
+
138
+ # last one is not necessary
139
+ if i < n_layers - 1:
140
+ res_skip_channels = 2 * hidden_channels
141
+ else:
142
+ res_skip_channels = hidden_channels
143
+
144
+ res_skip_layer = torch.nn.Conv1d(hidden_channels, res_skip_channels, 1)
145
+ res_skip_layer = torch.nn.utils.weight_norm(res_skip_layer, name='weight')
146
+ self.res_skip_layers.append(res_skip_layer)
147
+
148
+ def forward(self, x, x_mask, g=None, **kwargs):
149
+ output = torch.zeros_like(x)
150
+ n_channels_tensor = torch.IntTensor([self.hidden_channels])
151
+
152
+ if g is not None:
153
+ g = self.cond_layer(g)
154
+
155
+ for i in range(self.n_layers):
156
+ x_in = self.in_layers[i](x)
157
+ if g is not None:
158
+ cond_offset = i * 2 * self.hidden_channels
159
+ g_l = g[:,cond_offset:cond_offset+2*self.hidden_channels,:]
160
+ else:
161
+ g_l = torch.zeros_like(x_in)
162
+
163
+ acts = commons.fused_add_tanh_sigmoid_multiply(
164
+ x_in,
165
+ g_l,
166
+ n_channels_tensor)
167
+ acts = self.drop(acts)
168
+
169
+ res_skip_acts = self.res_skip_layers[i](acts)
170
+ if i < self.n_layers - 1:
171
+ res_acts = res_skip_acts[:,:self.hidden_channels,:]
172
+ x = (x + res_acts) * x_mask
173
+ output = output + res_skip_acts[:,self.hidden_channels:,:]
174
+ else:
175
+ output = output + res_skip_acts
176
+ return output * x_mask
177
+
178
+ def remove_weight_norm(self):
179
+ if self.gin_channels != 0:
180
+ torch.nn.utils.remove_weight_norm(self.cond_layer)
181
+ for l in self.in_layers:
182
+ torch.nn.utils.remove_weight_norm(l)
183
+ for l in self.res_skip_layers:
184
+ torch.nn.utils.remove_weight_norm(l)
185
+
186
+
187
+ class ResBlock1(torch.nn.Module):
188
+ def __init__(self, channels, kernel_size=3, dilation=(1, 3, 5)):
189
+ super(ResBlock1, self).__init__()
190
+ self.convs1 = nn.ModuleList([
191
+ weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[0],
192
+ padding=get_padding(kernel_size, dilation[0]))),
193
+ weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[1],
194
+ padding=get_padding(kernel_size, dilation[1]))),
195
+ weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[2],
196
+ padding=get_padding(kernel_size, dilation[2])))
197
+ ])
198
+ self.convs1.apply(init_weights)
199
+
200
+ self.convs2 = nn.ModuleList([
201
+ weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=1,
202
+ padding=get_padding(kernel_size, 1))),
203
+ weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=1,
204
+ padding=get_padding(kernel_size, 1))),
205
+ weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=1,
206
+ padding=get_padding(kernel_size, 1)))
207
+ ])
208
+ self.convs2.apply(init_weights)
209
+
210
+ def forward(self, x, x_mask=None):
211
+ for c1, c2 in zip(self.convs1, self.convs2):
212
+ xt = F.leaky_relu(x, LRELU_SLOPE)
213
+ if x_mask is not None:
214
+ xt = xt * x_mask
215
+ xt = c1(xt)
216
+ xt = F.leaky_relu(xt, LRELU_SLOPE)
217
+ if x_mask is not None:
218
+ xt = xt * x_mask
219
+ xt = c2(xt)
220
+ x = xt + x
221
+ if x_mask is not None:
222
+ x = x * x_mask
223
+ return x
224
+
225
+ def remove_weight_norm(self):
226
+ for l in self.convs1:
227
+ remove_weight_norm(l)
228
+ for l in self.convs2:
229
+ remove_weight_norm(l)
230
+
231
+
232
+ class ResBlock2(torch.nn.Module):
233
+ def __init__(self, channels, kernel_size=3, dilation=(1, 3)):
234
+ super(ResBlock2, self).__init__()
235
+ self.convs = nn.ModuleList([
236
+ weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[0],
237
+ padding=get_padding(kernel_size, dilation[0]))),
238
+ weight_norm(Conv1d(channels, channels, kernel_size, 1, dilation=dilation[1],
239
+ padding=get_padding(kernel_size, dilation[1])))
240
+ ])
241
+ self.convs.apply(init_weights)
242
+
243
+ def forward(self, x, x_mask=None):
244
+ for c in self.convs:
245
+ xt = F.leaky_relu(x, LRELU_SLOPE)
246
+ if x_mask is not None:
247
+ xt = xt * x_mask
248
+ xt = c(xt)
249
+ x = xt + x
250
+ if x_mask is not None:
251
+ x = x * x_mask
252
+ return x
253
+
254
+ def remove_weight_norm(self):
255
+ for l in self.convs:
256
+ remove_weight_norm(l)
257
+
258
+
259
+ class Log(nn.Module):
260
+ def forward(self, x, x_mask, reverse=False, **kwargs):
261
+ if not reverse:
262
+ y = torch.log(torch.clamp_min(x, 1e-5)) * x_mask
263
+ logdet = torch.sum(-y, [1, 2])
264
+ return y, logdet
265
+ else:
266
+ x = torch.exp(x) * x_mask
267
+ return x
268
+
269
+
270
+ class Flip(nn.Module):
271
+ def forward(self, x, *args, reverse=False, **kwargs):
272
+ x = torch.flip(x, [1])
273
+ if not reverse:
274
+ logdet = torch.zeros(x.size(0)).to(dtype=x.dtype, device=x.device)
275
+ return x, logdet
276
+ else:
277
+ return x
278
+
279
+
280
+ class ElementwiseAffine(nn.Module):
281
+ def __init__(self, channels):
282
+ super().__init__()
283
+ self.channels = channels
284
+ self.m = nn.Parameter(torch.zeros(channels,1))
285
+ self.logs = nn.Parameter(torch.zeros(channels,1))
286
+
287
+ def forward(self, x, x_mask, reverse=False, **kwargs):
288
+ if not reverse:
289
+ y = self.m + torch.exp(self.logs) * x
290
+ y = y * x_mask
291
+ logdet = torch.sum(self.logs * x_mask, [1,2])
292
+ return y, logdet
293
+ else:
294
+ x = (x - self.m) * torch.exp(-self.logs) * x_mask
295
+ return x
296
+
297
+
298
+ class ResidualCouplingLayer(nn.Module):
299
+ def __init__(self,
300
+ channels,
301
+ hidden_channels,
302
+ kernel_size,
303
+ dilation_rate,
304
+ n_layers,
305
+ p_dropout=0,
306
+ gin_channels=0,
307
+ mean_only=False):
308
+ assert channels % 2 == 0, "channels should be divisible by 2"
309
+ super().__init__()
310
+ self.channels = channels
311
+ self.hidden_channels = hidden_channels
312
+ self.kernel_size = kernel_size
313
+ self.dilation_rate = dilation_rate
314
+ self.n_layers = n_layers
315
+ self.half_channels = channels // 2
316
+ self.mean_only = mean_only
317
+
318
+ self.pre = nn.Conv1d(self.half_channels, hidden_channels, 1)
319
+ self.enc = WN(hidden_channels, kernel_size, dilation_rate, n_layers, p_dropout=p_dropout, gin_channels=gin_channels)
320
+ self.post = nn.Conv1d(hidden_channels, self.half_channels * (2 - mean_only), 1)
321
+ self.post.weight.data.zero_()
322
+ self.post.bias.data.zero_()
323
+
324
+ def forward(self, x, x_mask, g=None, reverse=False):
325
+ x0, x1 = torch.split(x, [self.half_channels]*2, 1)
326
+ h = self.pre(x0) * x_mask
327
+ h = self.enc(h, x_mask, g=g)
328
+ stats = self.post(h) * x_mask
329
+ if not self.mean_only:
330
+ m, logs = torch.split(stats, [self.half_channels]*2, 1)
331
+ else:
332
+ m = stats
333
+ logs = torch.zeros_like(m)
334
+
335
+ if not reverse:
336
+ x1 = m + x1 * torch.exp(logs) * x_mask
337
+ x = torch.cat([x0, x1], 1)
338
+ logdet = torch.sum(logs, [1,2])
339
+ return x, logdet
340
+ else:
341
+ x1 = (x1 - m) * torch.exp(-logs) * x_mask
342
+ x = torch.cat([x0, x1], 1)
343
+ return x
344
+
345
+
346
+ class ConvFlow(nn.Module):
347
+ def __init__(self, in_channels, filter_channels, kernel_size, n_layers, num_bins=10, tail_bound=5.0):
348
+ super().__init__()
349
+ self.in_channels = in_channels
350
+ self.filter_channels = filter_channels
351
+ self.kernel_size = kernel_size
352
+ self.n_layers = n_layers
353
+ self.num_bins = num_bins
354
+ self.tail_bound = tail_bound
355
+ self.half_channels = in_channels // 2
356
+
357
+ self.pre = nn.Conv1d(self.half_channels, filter_channels, 1)
358
+ self.convs = DDSConv(filter_channels, kernel_size, n_layers, p_dropout=0.)
359
+ self.proj = nn.Conv1d(filter_channels, self.half_channels * (num_bins * 3 - 1), 1)
360
+ self.proj.weight.data.zero_()
361
+ self.proj.bias.data.zero_()
362
+
363
+ def forward(self, x, x_mask, g=None, reverse=False):
364
+ x0, x1 = torch.split(x, [self.half_channels]*2, 1)
365
+ h = self.pre(x0)
366
+ h = self.convs(h, x_mask, g=g)
367
+ h = self.proj(h) * x_mask
368
+
369
+ b, c, t = x0.shape
370
+ h = h.reshape(b, c, -1, t).permute(0, 1, 3, 2) # [b, cx?, t] -> [b, c, t, ?]
371
+
372
+ unnormalized_widths = h[..., :self.num_bins] / math.sqrt(self.filter_channels)
373
+ unnormalized_heights = h[..., self.num_bins:2*self.num_bins] / math.sqrt(self.filter_channels)
374
+ unnormalized_derivatives = h[..., 2 * self.num_bins:]
375
+
376
+ x1, logabsdet = piecewise_rational_quadratic_transform(x1,
377
+ unnormalized_widths,
378
+ unnormalized_heights,
379
+ unnormalized_derivatives,
380
+ inverse=reverse,
381
+ tails='linear',
382
+ tail_bound=self.tail_bound
383
+ )
384
+
385
+ x = torch.cat([x0, x1], 1) * x_mask
386
+ logdet = torch.sum(logabsdet * x_mask, [1,2])
387
+ if not reverse:
388
+ return x, logdet
389
+ else:
390
+ return x
runtime/monotonic_align.py CHANGED
@@ -1,9 +1,4 @@
1
- """Training-only alignment stub.
2
-
3
- The deployable VITS inference path never calls maximum_path, but models.py imports
4
- the training alignment module at startup.
5
- """
6
-
7
 
8
  def maximum_path(*args, **kwargs):
9
- raise RuntimeError("Monotonic alignment is unavailable in the inference-only Space.")
 
1
+ """Training-only alignment stub; deployable inference never calls maximum_path."""
 
 
 
 
 
2
 
3
  def maximum_path(*args, **kwargs):
4
+ raise RuntimeError("Monotonic alignment is unavailable in the inference package.")
runtime/text/LICENSE ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Copyright (c) 2017 Keith Ito
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
runtime/text/__init__.py CHANGED
@@ -1,54 +1,54 @@
1
- """ from https://github.com/keithito/tacotron """
2
- from text import cleaners
3
- from text.symbols import symbols
4
-
5
-
6
- # Mappings from symbol to numeric ID and vice versa:
7
- _symbol_to_id = {s: i for i, s in enumerate(symbols)}
8
- _id_to_symbol = {i: s for i, s in enumerate(symbols)}
9
-
10
-
11
- def text_to_sequence(text, cleaner_names):
12
- '''Converts a string of text to a sequence of IDs corresponding to the symbols in the text.
13
- Args:
14
- text: string to convert to a sequence
15
- cleaner_names: names of the cleaner functions to run the text through
16
- Returns:
17
- List of integers corresponding to the symbols in the text
18
- '''
19
- sequence = []
20
-
21
- clean_text = _clean_text(text, cleaner_names)
22
- for symbol in clean_text:
23
- symbol_id = _symbol_to_id[symbol]
24
- sequence += [symbol_id]
25
- return sequence
26
-
27
-
28
- def cleaned_text_to_sequence(cleaned_text):
29
- '''Converts a string of text to a sequence of IDs corresponding to the symbols in the text.
30
- Args:
31
- text: string to convert to a sequence
32
- Returns:
33
- List of integers corresponding to the symbols in the text
34
- '''
35
- sequence = [_symbol_to_id[symbol] for symbol in cleaned_text]
36
- return sequence
37
-
38
-
39
- def sequence_to_text(sequence):
40
- '''Converts a sequence of IDs back to a string'''
41
- result = ''
42
- for symbol_id in sequence:
43
- s = _id_to_symbol[symbol_id]
44
- result += s
45
- return result
46
-
47
-
48
- def _clean_text(text, cleaner_names):
49
- for name in cleaner_names:
50
- cleaner = getattr(cleaners, name)
51
- if not cleaner:
52
- raise Exception('Unknown cleaner: %s' % name)
53
- text = cleaner(text)
54
- return text
 
1
+ """ from https://github.com/keithito/tacotron """
2
+ from text import cleaners
3
+ from text.symbols import symbols
4
+
5
+
6
+ # Mappings from symbol to numeric ID and vice versa:
7
+ _symbol_to_id = {s: i for i, s in enumerate(symbols)}
8
+ _id_to_symbol = {i: s for i, s in enumerate(symbols)}
9
+
10
+
11
+ def text_to_sequence(text, cleaner_names):
12
+ '''Converts a string of text to a sequence of IDs corresponding to the symbols in the text.
13
+ Args:
14
+ text: string to convert to a sequence
15
+ cleaner_names: names of the cleaner functions to run the text through
16
+ Returns:
17
+ List of integers corresponding to the symbols in the text
18
+ '''
19
+ sequence = []
20
+
21
+ clean_text = _clean_text(text, cleaner_names)
22
+ for symbol in clean_text:
23
+ symbol_id = _symbol_to_id[symbol]
24
+ sequence += [symbol_id]
25
+ return sequence
26
+
27
+
28
+ def cleaned_text_to_sequence(cleaned_text):
29
+ '''Converts a string of text to a sequence of IDs corresponding to the symbols in the text.
30
+ Args:
31
+ text: string to convert to a sequence
32
+ Returns:
33
+ List of integers corresponding to the symbols in the text
34
+ '''
35
+ sequence = [_symbol_to_id[symbol] for symbol in cleaned_text]
36
+ return sequence
37
+
38
+
39
+ def sequence_to_text(sequence):
40
+ '''Converts a sequence of IDs back to a string'''
41
+ result = ''
42
+ for symbol_id in sequence:
43
+ s = _id_to_symbol[symbol_id]
44
+ result += s
45
+ return result
46
+
47
+
48
+ def _clean_text(text, cleaner_names):
49
+ for name in cleaner_names:
50
+ cleaner = getattr(cleaners, name)
51
+ if not cleaner:
52
+ raise Exception('Unknown cleaner: %s' % name)
53
+ text = cleaner(text)
54
+ return text
runtime/text/cleaners.py CHANGED
@@ -1,100 +1,100 @@
1
- """ from https://github.com/keithito/tacotron """
2
-
3
- '''
4
- Cleaners are transformations that run over the input text at both training and eval time.
5
-
6
- Cleaners can be selected by passing a comma-delimited list of cleaner names as the "cleaners"
7
- hyperparameter. Some cleaners are English-specific. You'll typically want to use:
8
- 1. "english_cleaners" for English text
9
- 2. "transliteration_cleaners" for non-English text that can be transliterated to ASCII using
10
- the Unidecode library (https://pypi.python.org/pypi/Unidecode)
11
- 3. "basic_cleaners" if you do not want to transliterate (in this case, you should also update
12
- the symbols in symbols.py to match your data).
13
- '''
14
-
15
- import re
16
- from unidecode import unidecode
17
- from phonemizer import phonemize
18
-
19
-
20
- # Regular expression matching whitespace:
21
- _whitespace_re = re.compile(r'\s+')
22
-
23
- # List of (regular expression, replacement) pairs for abbreviations:
24
- _abbreviations = [(re.compile('\\b%s\\.' % x[0], re.IGNORECASE), x[1]) for x in [
25
- ('mrs', 'misess'),
26
- ('mr', 'mister'),
27
- ('dr', 'doctor'),
28
- ('st', 'saint'),
29
- ('co', 'company'),
30
- ('jr', 'junior'),
31
- ('maj', 'major'),
32
- ('gen', 'general'),
33
- ('drs', 'doctors'),
34
- ('rev', 'reverend'),
35
- ('lt', 'lieutenant'),
36
- ('hon', 'honorable'),
37
- ('sgt', 'sergeant'),
38
- ('capt', 'captain'),
39
- ('esq', 'esquire'),
40
- ('ltd', 'limited'),
41
- ('col', 'colonel'),
42
- ('ft', 'fort'),
43
- ]]
44
-
45
-
46
- def expand_abbreviations(text):
47
- for regex, replacement in _abbreviations:
48
- text = re.sub(regex, replacement, text)
49
- return text
50
-
51
-
52
- def expand_numbers(text):
53
- return normalize_numbers(text)
54
-
55
-
56
- def lowercase(text):
57
- return text.lower()
58
-
59
-
60
- def collapse_whitespace(text):
61
- return re.sub(_whitespace_re, ' ', text)
62
-
63
-
64
- def convert_to_ascii(text):
65
- return unidecode(text)
66
-
67
-
68
- def basic_cleaners(text):
69
- '''Basic pipeline that lowercases and collapses whitespace without transliteration.'''
70
- text = lowercase(text)
71
- text = collapse_whitespace(text)
72
- return text
73
-
74
-
75
- def transliteration_cleaners(text):
76
- '''Pipeline for non-English text that transliterates to ASCII.'''
77
- text = convert_to_ascii(text)
78
- text = lowercase(text)
79
- text = collapse_whitespace(text)
80
- return text
81
-
82
-
83
- def english_cleaners(text):
84
- '''Pipeline for English text, including abbreviation expansion.'''
85
- text = convert_to_ascii(text)
86
- text = lowercase(text)
87
- text = expand_abbreviations(text)
88
- phonemes = phonemize(text, language='en-us', backend='espeak', strip=True)
89
- phonemes = collapse_whitespace(phonemes)
90
- return phonemes
91
-
92
-
93
- def english_cleaners2(text):
94
- '''Pipeline for English text, including abbreviation expansion. + punctuation + stress'''
95
- text = convert_to_ascii(text)
96
- text = lowercase(text)
97
- text = expand_abbreviations(text)
98
- phonemes = phonemize(text, language='en-us', backend='espeak', strip=True, preserve_punctuation=True, with_stress=True)
99
- phonemes = collapse_whitespace(phonemes)
100
- return phonemes
 
1
+ """ from https://github.com/keithito/tacotron """
2
+
3
+ '''
4
+ Cleaners are transformations that run over the input text at both training and eval time.
5
+
6
+ Cleaners can be selected by passing a comma-delimited list of cleaner names as the "cleaners"
7
+ hyperparameter. Some cleaners are English-specific. You'll typically want to use:
8
+ 1. "english_cleaners" for English text
9
+ 2. "transliteration_cleaners" for non-English text that can be transliterated to ASCII using
10
+ the Unidecode library (https://pypi.python.org/pypi/Unidecode)
11
+ 3. "basic_cleaners" if you do not want to transliterate (in this case, you should also update
12
+ the symbols in symbols.py to match your data).
13
+ '''
14
+
15
+ import re
16
+ from unidecode import unidecode
17
+ from phonemizer import phonemize
18
+
19
+
20
+ # Regular expression matching whitespace:
21
+ _whitespace_re = re.compile(r'\s+')
22
+
23
+ # List of (regular expression, replacement) pairs for abbreviations:
24
+ _abbreviations = [(re.compile('\\b%s\\.' % x[0], re.IGNORECASE), x[1]) for x in [
25
+ ('mrs', 'misess'),
26
+ ('mr', 'mister'),
27
+ ('dr', 'doctor'),
28
+ ('st', 'saint'),
29
+ ('co', 'company'),
30
+ ('jr', 'junior'),
31
+ ('maj', 'major'),
32
+ ('gen', 'general'),
33
+ ('drs', 'doctors'),
34
+ ('rev', 'reverend'),
35
+ ('lt', 'lieutenant'),
36
+ ('hon', 'honorable'),
37
+ ('sgt', 'sergeant'),
38
+ ('capt', 'captain'),
39
+ ('esq', 'esquire'),
40
+ ('ltd', 'limited'),
41
+ ('col', 'colonel'),
42
+ ('ft', 'fort'),
43
+ ]]
44
+
45
+
46
+ def expand_abbreviations(text):
47
+ for regex, replacement in _abbreviations:
48
+ text = re.sub(regex, replacement, text)
49
+ return text
50
+
51
+
52
+ def expand_numbers(text):
53
+ return normalize_numbers(text)
54
+
55
+
56
+ def lowercase(text):
57
+ return text.lower()
58
+
59
+
60
+ def collapse_whitespace(text):
61
+ return re.sub(_whitespace_re, ' ', text)
62
+
63
+
64
+ def convert_to_ascii(text):
65
+ return unidecode(text)
66
+
67
+
68
+ def basic_cleaners(text):
69
+ '''Basic pipeline that lowercases and collapses whitespace without transliteration.'''
70
+ text = lowercase(text)
71
+ text = collapse_whitespace(text)
72
+ return text
73
+
74
+
75
+ def transliteration_cleaners(text):
76
+ '''Pipeline for non-English text that transliterates to ASCII.'''
77
+ text = convert_to_ascii(text)
78
+ text = lowercase(text)
79
+ text = collapse_whitespace(text)
80
+ return text
81
+
82
+
83
+ def english_cleaners(text):
84
+ '''Pipeline for English text, including abbreviation expansion.'''
85
+ text = convert_to_ascii(text)
86
+ text = lowercase(text)
87
+ text = expand_abbreviations(text)
88
+ phonemes = phonemize(text, language='en-us', backend='espeak', strip=True)
89
+ phonemes = collapse_whitespace(phonemes)
90
+ return phonemes
91
+
92
+
93
+ def english_cleaners2(text):
94
+ '''Pipeline for English text, including abbreviation expansion. + punctuation + stress'''
95
+ text = convert_to_ascii(text)
96
+ text = lowercase(text)
97
+ text = expand_abbreviations(text)
98
+ phonemes = phonemize(text, language='en-us', backend='espeak', strip=True, preserve_punctuation=True, with_stress=True)
99
+ phonemes = collapse_whitespace(phonemes)
100
+ return phonemes
runtime/text/symbols.py CHANGED
@@ -1,16 +1,16 @@
1
- """ from https://github.com/keithito/tacotron """
2
-
3
- '''
4
- Defines the set of symbols used in text input to the model.
5
- '''
6
- _pad = '_'
7
- _punctuation = ';:,.!?¡¿—…"«»“” '
8
- _letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
9
- _letters_ipa = "ɑɐɒæɓʙβɔɕçɗɖðʤəɘɚɛɜɝɞɟʄɡɠɢʛɦɧħɥʜɨɪʝɭɬɫɮʟɱɯɰŋɳɲɴøɵɸθœɶʘɹɺɾɻʀʁɽʂʃʈʧʉʊʋⱱʌɣɤʍχʎʏʑʐʒʔʡʕʢǀǁǂǃˈˌːˑʼʴʰʱʲʷˠˤ˞↓↑→↗↘'̩'ᵻ"
10
-
11
-
12
- # Export all symbols:
13
- symbols = [_pad] + list(_punctuation) + list(_letters) + list(_letters_ipa)
14
-
15
- # Special symbol ids
16
- SPACE_ID = symbols.index(" ")
 
1
+ """ from https://github.com/keithito/tacotron """
2
+
3
+ '''
4
+ Defines the set of symbols used in text input to the model.
5
+ '''
6
+ _pad = '_'
7
+ _punctuation = ';:,.!?¡¿—…"«»“” '
8
+ _letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
9
+ _letters_ipa = "ɑɐɒæɓʙβɔɕçɗɖðʤəɘɚɛɜɝɞɟʄɡɠɢʛɦɧħɥʜɨɪʝɭɬɫɮʟɱɯɰŋɳɲɴøɵɸθœɶʘɹɺɾɻʀʁɽʂʃʈʧʉʊʋⱱʌɣɤʍχʎʏʑʐʒʔʡʕʢǀǁǂǃˈˌːˑʼʴʰʱʲʷˠˤ˞↓↑→↗↘'̩'ᵻ"
10
+
11
+
12
+ # Export all symbols:
13
+ symbols = [_pad] + list(_punctuation) + list(_letters) + list(_letters_ipa)
14
+
15
+ # Special symbol ids
16
+ SPACE_ID = symbols.index(" ")
runtime/transforms.py CHANGED
@@ -1,193 +1,193 @@
1
- import torch
2
- from torch.nn import functional as F
3
-
4
- import numpy as np
5
-
6
-
7
- DEFAULT_MIN_BIN_WIDTH = 1e-3
8
- DEFAULT_MIN_BIN_HEIGHT = 1e-3
9
- DEFAULT_MIN_DERIVATIVE = 1e-3
10
-
11
-
12
- def piecewise_rational_quadratic_transform(inputs,
13
- unnormalized_widths,
14
- unnormalized_heights,
15
- unnormalized_derivatives,
16
- inverse=False,
17
- tails=None,
18
- tail_bound=1.,
19
- min_bin_width=DEFAULT_MIN_BIN_WIDTH,
20
- min_bin_height=DEFAULT_MIN_BIN_HEIGHT,
21
- min_derivative=DEFAULT_MIN_DERIVATIVE):
22
-
23
- if tails is None:
24
- spline_fn = rational_quadratic_spline
25
- spline_kwargs = {}
26
- else:
27
- spline_fn = unconstrained_rational_quadratic_spline
28
- spline_kwargs = {
29
- 'tails': tails,
30
- 'tail_bound': tail_bound
31
- }
32
-
33
- outputs, logabsdet = spline_fn(
34
- inputs=inputs,
35
- unnormalized_widths=unnormalized_widths,
36
- unnormalized_heights=unnormalized_heights,
37
- unnormalized_derivatives=unnormalized_derivatives,
38
- inverse=inverse,
39
- min_bin_width=min_bin_width,
40
- min_bin_height=min_bin_height,
41
- min_derivative=min_derivative,
42
- **spline_kwargs
43
- )
44
- return outputs, logabsdet
45
-
46
-
47
- def searchsorted(bin_locations, inputs, eps=1e-6):
48
- bin_locations[..., -1] += eps
49
- return torch.sum(
50
- inputs[..., None] >= bin_locations,
51
- dim=-1
52
- ) - 1
53
-
54
-
55
- def unconstrained_rational_quadratic_spline(inputs,
56
- unnormalized_widths,
57
- unnormalized_heights,
58
- unnormalized_derivatives,
59
- inverse=False,
60
- tails='linear',
61
- tail_bound=1.,
62
- min_bin_width=DEFAULT_MIN_BIN_WIDTH,
63
- min_bin_height=DEFAULT_MIN_BIN_HEIGHT,
64
- min_derivative=DEFAULT_MIN_DERIVATIVE):
65
- inside_interval_mask = (inputs >= -tail_bound) & (inputs <= tail_bound)
66
- outside_interval_mask = ~inside_interval_mask
67
-
68
- outputs = torch.zeros_like(inputs)
69
- logabsdet = torch.zeros_like(inputs)
70
-
71
- if tails == 'linear':
72
- unnormalized_derivatives = F.pad(unnormalized_derivatives, pad=(1, 1))
73
- constant = np.log(np.exp(1 - min_derivative) - 1)
74
- unnormalized_derivatives[..., 0] = constant
75
- unnormalized_derivatives[..., -1] = constant
76
-
77
- outputs[outside_interval_mask] = inputs[outside_interval_mask]
78
- logabsdet[outside_interval_mask] = 0
79
- else:
80
- raise RuntimeError('{} tails are not implemented.'.format(tails))
81
-
82
- outputs[inside_interval_mask], logabsdet[inside_interval_mask] = rational_quadratic_spline(
83
- inputs=inputs[inside_interval_mask],
84
- unnormalized_widths=unnormalized_widths[inside_interval_mask, :],
85
- unnormalized_heights=unnormalized_heights[inside_interval_mask, :],
86
- unnormalized_derivatives=unnormalized_derivatives[inside_interval_mask, :],
87
- inverse=inverse,
88
- left=-tail_bound, right=tail_bound, bottom=-tail_bound, top=tail_bound,
89
- min_bin_width=min_bin_width,
90
- min_bin_height=min_bin_height,
91
- min_derivative=min_derivative
92
- )
93
-
94
- return outputs, logabsdet
95
-
96
- def rational_quadratic_spline(inputs,
97
- unnormalized_widths,
98
- unnormalized_heights,
99
- unnormalized_derivatives,
100
- inverse=False,
101
- left=0., right=1., bottom=0., top=1.,
102
- min_bin_width=DEFAULT_MIN_BIN_WIDTH,
103
- min_bin_height=DEFAULT_MIN_BIN_HEIGHT,
104
- min_derivative=DEFAULT_MIN_DERIVATIVE):
105
- if torch.min(inputs) < left or torch.max(inputs) > right:
106
- raise ValueError('Input to a transform is not within its domain')
107
-
108
- num_bins = unnormalized_widths.shape[-1]
109
-
110
- if min_bin_width * num_bins > 1.0:
111
- raise ValueError('Minimal bin width too large for the number of bins')
112
- if min_bin_height * num_bins > 1.0:
113
- raise ValueError('Minimal bin height too large for the number of bins')
114
-
115
- widths = F.softmax(unnormalized_widths, dim=-1)
116
- widths = min_bin_width + (1 - min_bin_width * num_bins) * widths
117
- cumwidths = torch.cumsum(widths, dim=-1)
118
- cumwidths = F.pad(cumwidths, pad=(1, 0), mode='constant', value=0.0)
119
- cumwidths = (right - left) * cumwidths + left
120
- cumwidths[..., 0] = left
121
- cumwidths[..., -1] = right
122
- widths = cumwidths[..., 1:] - cumwidths[..., :-1]
123
-
124
- derivatives = min_derivative + F.softplus(unnormalized_derivatives)
125
-
126
- heights = F.softmax(unnormalized_heights, dim=-1)
127
- heights = min_bin_height + (1 - min_bin_height * num_bins) * heights
128
- cumheights = torch.cumsum(heights, dim=-1)
129
- cumheights = F.pad(cumheights, pad=(1, 0), mode='constant', value=0.0)
130
- cumheights = (top - bottom) * cumheights + bottom
131
- cumheights[..., 0] = bottom
132
- cumheights[..., -1] = top
133
- heights = cumheights[..., 1:] - cumheights[..., :-1]
134
-
135
- if inverse:
136
- bin_idx = searchsorted(cumheights, inputs)[..., None]
137
- else:
138
- bin_idx = searchsorted(cumwidths, inputs)[..., None]
139
-
140
- input_cumwidths = cumwidths.gather(-1, bin_idx)[..., 0]
141
- input_bin_widths = widths.gather(-1, bin_idx)[..., 0]
142
-
143
- input_cumheights = cumheights.gather(-1, bin_idx)[..., 0]
144
- delta = heights / widths
145
- input_delta = delta.gather(-1, bin_idx)[..., 0]
146
-
147
- input_derivatives = derivatives.gather(-1, bin_idx)[..., 0]
148
- input_derivatives_plus_one = derivatives[..., 1:].gather(-1, bin_idx)[..., 0]
149
-
150
- input_heights = heights.gather(-1, bin_idx)[..., 0]
151
-
152
- if inverse:
153
- a = (((inputs - input_cumheights) * (input_derivatives
154
- + input_derivatives_plus_one
155
- - 2 * input_delta)
156
- + input_heights * (input_delta - input_derivatives)))
157
- b = (input_heights * input_derivatives
158
- - (inputs - input_cumheights) * (input_derivatives
159
- + input_derivatives_plus_one
160
- - 2 * input_delta))
161
- c = - input_delta * (inputs - input_cumheights)
162
-
163
- discriminant = b.pow(2) - 4 * a * c
164
- assert (discriminant >= 0).all()
165
-
166
- root = (2 * c) / (-b - torch.sqrt(discriminant))
167
- outputs = root * input_bin_widths + input_cumwidths
168
-
169
- theta_one_minus_theta = root * (1 - root)
170
- denominator = input_delta + ((input_derivatives + input_derivatives_plus_one - 2 * input_delta)
171
- * theta_one_minus_theta)
172
- derivative_numerator = input_delta.pow(2) * (input_derivatives_plus_one * root.pow(2)
173
- + 2 * input_delta * theta_one_minus_theta
174
- + input_derivatives * (1 - root).pow(2))
175
- logabsdet = torch.log(derivative_numerator) - 2 * torch.log(denominator)
176
-
177
- return outputs, -logabsdet
178
- else:
179
- theta = (inputs - input_cumwidths) / input_bin_widths
180
- theta_one_minus_theta = theta * (1 - theta)
181
-
182
- numerator = input_heights * (input_delta * theta.pow(2)
183
- + input_derivatives * theta_one_minus_theta)
184
- denominator = input_delta + ((input_derivatives + input_derivatives_plus_one - 2 * input_delta)
185
- * theta_one_minus_theta)
186
- outputs = input_cumheights + numerator / denominator
187
-
188
- derivative_numerator = input_delta.pow(2) * (input_derivatives_plus_one * theta.pow(2)
189
- + 2 * input_delta * theta_one_minus_theta
190
- + input_derivatives * (1 - theta).pow(2))
191
- logabsdet = torch.log(derivative_numerator) - 2 * torch.log(denominator)
192
-
193
- return outputs, logabsdet
 
1
+ import torch
2
+ from torch.nn import functional as F
3
+
4
+ import numpy as np
5
+
6
+
7
+ DEFAULT_MIN_BIN_WIDTH = 1e-3
8
+ DEFAULT_MIN_BIN_HEIGHT = 1e-3
9
+ DEFAULT_MIN_DERIVATIVE = 1e-3
10
+
11
+
12
+ def piecewise_rational_quadratic_transform(inputs,
13
+ unnormalized_widths,
14
+ unnormalized_heights,
15
+ unnormalized_derivatives,
16
+ inverse=False,
17
+ tails=None,
18
+ tail_bound=1.,
19
+ min_bin_width=DEFAULT_MIN_BIN_WIDTH,
20
+ min_bin_height=DEFAULT_MIN_BIN_HEIGHT,
21
+ min_derivative=DEFAULT_MIN_DERIVATIVE):
22
+
23
+ if tails is None:
24
+ spline_fn = rational_quadratic_spline
25
+ spline_kwargs = {}
26
+ else:
27
+ spline_fn = unconstrained_rational_quadratic_spline
28
+ spline_kwargs = {
29
+ 'tails': tails,
30
+ 'tail_bound': tail_bound
31
+ }
32
+
33
+ outputs, logabsdet = spline_fn(
34
+ inputs=inputs,
35
+ unnormalized_widths=unnormalized_widths,
36
+ unnormalized_heights=unnormalized_heights,
37
+ unnormalized_derivatives=unnormalized_derivatives,
38
+ inverse=inverse,
39
+ min_bin_width=min_bin_width,
40
+ min_bin_height=min_bin_height,
41
+ min_derivative=min_derivative,
42
+ **spline_kwargs
43
+ )
44
+ return outputs, logabsdet
45
+
46
+
47
+ def searchsorted(bin_locations, inputs, eps=1e-6):
48
+ bin_locations[..., -1] += eps
49
+ return torch.sum(
50
+ inputs[..., None] >= bin_locations,
51
+ dim=-1
52
+ ) - 1
53
+
54
+
55
+ def unconstrained_rational_quadratic_spline(inputs,
56
+ unnormalized_widths,
57
+ unnormalized_heights,
58
+ unnormalized_derivatives,
59
+ inverse=False,
60
+ tails='linear',
61
+ tail_bound=1.,
62
+ min_bin_width=DEFAULT_MIN_BIN_WIDTH,
63
+ min_bin_height=DEFAULT_MIN_BIN_HEIGHT,
64
+ min_derivative=DEFAULT_MIN_DERIVATIVE):
65
+ inside_interval_mask = (inputs >= -tail_bound) & (inputs <= tail_bound)
66
+ outside_interval_mask = ~inside_interval_mask
67
+
68
+ outputs = torch.zeros_like(inputs)
69
+ logabsdet = torch.zeros_like(inputs)
70
+
71
+ if tails == 'linear':
72
+ unnormalized_derivatives = F.pad(unnormalized_derivatives, pad=(1, 1))
73
+ constant = np.log(np.exp(1 - min_derivative) - 1)
74
+ unnormalized_derivatives[..., 0] = constant
75
+ unnormalized_derivatives[..., -1] = constant
76
+
77
+ outputs[outside_interval_mask] = inputs[outside_interval_mask]
78
+ logabsdet[outside_interval_mask] = 0
79
+ else:
80
+ raise RuntimeError('{} tails are not implemented.'.format(tails))
81
+
82
+ outputs[inside_interval_mask], logabsdet[inside_interval_mask] = rational_quadratic_spline(
83
+ inputs=inputs[inside_interval_mask],
84
+ unnormalized_widths=unnormalized_widths[inside_interval_mask, :],
85
+ unnormalized_heights=unnormalized_heights[inside_interval_mask, :],
86
+ unnormalized_derivatives=unnormalized_derivatives[inside_interval_mask, :],
87
+ inverse=inverse,
88
+ left=-tail_bound, right=tail_bound, bottom=-tail_bound, top=tail_bound,
89
+ min_bin_width=min_bin_width,
90
+ min_bin_height=min_bin_height,
91
+ min_derivative=min_derivative
92
+ )
93
+
94
+ return outputs, logabsdet
95
+
96
+ def rational_quadratic_spline(inputs,
97
+ unnormalized_widths,
98
+ unnormalized_heights,
99
+ unnormalized_derivatives,
100
+ inverse=False,
101
+ left=0., right=1., bottom=0., top=1.,
102
+ min_bin_width=DEFAULT_MIN_BIN_WIDTH,
103
+ min_bin_height=DEFAULT_MIN_BIN_HEIGHT,
104
+ min_derivative=DEFAULT_MIN_DERIVATIVE):
105
+ if torch.min(inputs) < left or torch.max(inputs) > right:
106
+ raise ValueError('Input to a transform is not within its domain')
107
+
108
+ num_bins = unnormalized_widths.shape[-1]
109
+
110
+ if min_bin_width * num_bins > 1.0:
111
+ raise ValueError('Minimal bin width too large for the number of bins')
112
+ if min_bin_height * num_bins > 1.0:
113
+ raise ValueError('Minimal bin height too large for the number of bins')
114
+
115
+ widths = F.softmax(unnormalized_widths, dim=-1)
116
+ widths = min_bin_width + (1 - min_bin_width * num_bins) * widths
117
+ cumwidths = torch.cumsum(widths, dim=-1)
118
+ cumwidths = F.pad(cumwidths, pad=(1, 0), mode='constant', value=0.0)
119
+ cumwidths = (right - left) * cumwidths + left
120
+ cumwidths[..., 0] = left
121
+ cumwidths[..., -1] = right
122
+ widths = cumwidths[..., 1:] - cumwidths[..., :-1]
123
+
124
+ derivatives = min_derivative + F.softplus(unnormalized_derivatives)
125
+
126
+ heights = F.softmax(unnormalized_heights, dim=-1)
127
+ heights = min_bin_height + (1 - min_bin_height * num_bins) * heights
128
+ cumheights = torch.cumsum(heights, dim=-1)
129
+ cumheights = F.pad(cumheights, pad=(1, 0), mode='constant', value=0.0)
130
+ cumheights = (top - bottom) * cumheights + bottom
131
+ cumheights[..., 0] = bottom
132
+ cumheights[..., -1] = top
133
+ heights = cumheights[..., 1:] - cumheights[..., :-1]
134
+
135
+ if inverse:
136
+ bin_idx = searchsorted(cumheights, inputs)[..., None]
137
+ else:
138
+ bin_idx = searchsorted(cumwidths, inputs)[..., None]
139
+
140
+ input_cumwidths = cumwidths.gather(-1, bin_idx)[..., 0]
141
+ input_bin_widths = widths.gather(-1, bin_idx)[..., 0]
142
+
143
+ input_cumheights = cumheights.gather(-1, bin_idx)[..., 0]
144
+ delta = heights / widths
145
+ input_delta = delta.gather(-1, bin_idx)[..., 0]
146
+
147
+ input_derivatives = derivatives.gather(-1, bin_idx)[..., 0]
148
+ input_derivatives_plus_one = derivatives[..., 1:].gather(-1, bin_idx)[..., 0]
149
+
150
+ input_heights = heights.gather(-1, bin_idx)[..., 0]
151
+
152
+ if inverse:
153
+ a = (((inputs - input_cumheights) * (input_derivatives
154
+ + input_derivatives_plus_one
155
+ - 2 * input_delta)
156
+ + input_heights * (input_delta - input_derivatives)))
157
+ b = (input_heights * input_derivatives
158
+ - (inputs - input_cumheights) * (input_derivatives
159
+ + input_derivatives_plus_one
160
+ - 2 * input_delta))
161
+ c = - input_delta * (inputs - input_cumheights)
162
+
163
+ discriminant = b.pow(2) - 4 * a * c
164
+ assert (discriminant >= 0).all()
165
+
166
+ root = (2 * c) / (-b - torch.sqrt(discriminant))
167
+ outputs = root * input_bin_widths + input_cumwidths
168
+
169
+ theta_one_minus_theta = root * (1 - root)
170
+ denominator = input_delta + ((input_derivatives + input_derivatives_plus_one - 2 * input_delta)
171
+ * theta_one_minus_theta)
172
+ derivative_numerator = input_delta.pow(2) * (input_derivatives_plus_one * root.pow(2)
173
+ + 2 * input_delta * theta_one_minus_theta
174
+ + input_derivatives * (1 - root).pow(2))
175
+ logabsdet = torch.log(derivative_numerator) - 2 * torch.log(denominator)
176
+
177
+ return outputs, -logabsdet
178
+ else:
179
+ theta = (inputs - input_cumwidths) / input_bin_widths
180
+ theta_one_minus_theta = theta * (1 - theta)
181
+
182
+ numerator = input_heights * (input_delta * theta.pow(2)
183
+ + input_derivatives * theta_one_minus_theta)
184
+ denominator = input_delta + ((input_derivatives + input_derivatives_plus_one - 2 * input_delta)
185
+ * theta_one_minus_theta)
186
+ outputs = input_cumheights + numerator / denominator
187
+
188
+ derivative_numerator = input_delta.pow(2) * (input_derivatives_plus_one * theta.pow(2)
189
+ + 2 * input_delta * theta_one_minus_theta
190
+ + input_derivatives * (1 - theta).pow(2))
191
+ logabsdet = torch.log(derivative_numerator) - 2 * torch.log(denominator)
192
+
193
+ return outputs, logabsdet