-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteract.py
36 lines (26 loc) · 881 Bytes
/
interact.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
def main():
import config
from model import load_model
model = load_model()
while not model:
config.model_path = input('valid model: ')
model = load_model()
if config.do_fourier:
import data_fourier as data
else: import data_direct as data
d = data.load_data(with_meta=True)
d, _ = data.split_data(d)
from random import shuffle
#shuffle(d)
d = d[:config.hm_wav_gen]
for i,(seq,meta) in enumerate(d):
from model import respond_to
_, seq = respond_to(model, [seq], training_run=False, extra_steps=config.hm_extra_steps)
seq = seq.detach()
if config.use_gpu:
seq = seq.cpu()
seq = seq.numpy()
seq = data.data_to_audio(seq, meta)
data.write(f'{config.output_file}{i}.wav', config.sample_rate, seq)
if __name__ == '__main__':
main()