diff --git a/api.py b/api.py index 204c91f..978358e 100644 --- a/api.py +++ b/api.py @@ -140,6 +140,13 @@ class TextToSpeech: average_conditioning_embeddings=True).cpu().eval() self.autoregressive.load_state_dict(torch.load('.models/autoregressive_diverse.pth')) + self.autoregressive_for_latents = UnifiedVoice(max_mel_tokens=604, max_text_tokens=402, max_conditioning_inputs=2, layers=30, + model_dim=1024, + heads=16, number_text_tokens=256, start_text_token=255, checkpointing=False, + train_solo_embeddings=False, + average_conditioning_embeddings=True).cpu().eval() + self.autoregressive_for_latents.load_state_dict(torch.load('.models/autoregressive_diverse.pth')) + self.clip = VoiceCLIP(dim_text=512, dim_speech=512, dim_latent=512, num_text_tokens=256, text_enc_depth=12, text_seq_len=350, text_heads=8, num_speech_tokens=8192, speech_enc_depth=12, speech_heads=8, speech_seq_len=430, @@ -221,11 +228,11 @@ class TextToSpeech: # The diffusion model actually wants the last hidden layer from the autoregressive model as conditioning # inputs. Re-produce those for the top results. This could be made more efficient by storing all of these # results, but will increase memory usage. - self.autoregressive = self.autoregressive.cuda() - best_latents = self.autoregressive(conds, text, torch.tensor([text.shape[-1]], device=conds.device), best_results, + self.autoregressive_for_latents = self.autoregressive_for_latents.cuda() + best_latents = self.autoregressive_for_latents(conds, text, torch.tensor([text.shape[-1]], device=conds.device), best_results, torch.tensor([best_results.shape[-1]*self.autoregressive.mel_length_compression], device=conds.device), return_latent=True, clip_inputs=False) - self.autoregressive = self.autoregressive.cpu() + self.autoregressive_for_latents = self.autoregressive_for_latents.cpu() print("Performing vocoding..") wav_candidates = [] diff --git a/eval_multiple.py b/eval_multiple.py index 9f1919d..529d3bd 100644 --- a/eval_multiple.py +++ b/eval_multiple.py @@ -6,32 +6,35 @@ from api import TextToSpeech from utils.audio import load_audio if __name__ == '__main__': - fname = 'Y:\\libritts\\test-clean\\transcribed-brief-w2v.tsv' - outpath = 'D:\\tmp\\tortoise-tts-eval\\diverse_new_decoder_1' + fname = 'Y:\\clips\\books2\\subset512-oco.tsv' + stop_after = 128 + outpath_base = 'D:\\tmp\\tortoise-tts-eval\\diverse' outpath_real = 'D:\\tmp\\tortoise-tts-eval\\real' - os.makedirs(outpath, exist_ok=True) os.makedirs(outpath_real, exist_ok=True) with open(fname, 'r', encoding='utf-8') as f: lines = [l.strip().split('\t') for l in f.readlines()] - recorder = open(os.path.join(outpath, 'transcript.tsv'), 'w', encoding='utf-8') tts = TextToSpeech() - for e, line in enumerate(lines): - transcript = line[0] - if len(transcript) > 120: - continue # We need to support this, but cannot yet. - path = os.path.join(os.path.dirname(fname), line[1]) - cond_audio = load_audio(path, 22050) - torchaudio.save(os.path.join(outpath_real, os.path.basename(line[1])), cond_audio, 22050) - sample = tts.tts(transcript, [cond_audio, cond_audio], num_autoregressive_samples=256, k=1, - repetition_penalty=2.0, length_penalty=2, temperature=.5, top_p=.5, - diffusion_temperature=.7, cond_free_k=2, diffusion_iterations=100) + for k in range(4): + outpath = f'{outpath_base}_{k}' + os.makedirs(outpath, exist_ok=True) + recorder = open(os.path.join(outpath, 'transcript.tsv'), 'w', encoding='utf-8') + for e, line in enumerate(lines): + if e >= stop_after: + break + transcript = line[0] + path = os.path.join(os.path.dirname(fname), line[1]) + cond_audio = load_audio(path, 22050) + torchaudio.save(os.path.join(outpath_real, os.path.basename(line[1])), cond_audio, 22050) + sample = tts.tts(transcript, [cond_audio, cond_audio], num_autoregressive_samples=128, k=1, + repetition_penalty=2.0, length_penalty=2, temperature=.5, top_p=.5, + diffusion_temperature=.7, cond_free_k=2, diffusion_iterations=70) - down = torchaudio.functional.resample(sample, 24000, 22050) - fout_path = os.path.join(outpath, os.path.basename(line[1])) - torchaudio.save(fout_path, down.squeeze(0), 22050) + down = torchaudio.functional.resample(sample, 24000, 22050) + fout_path = os.path.join(outpath, os.path.basename(line[1])) + torchaudio.save(fout_path, down.squeeze(0), 22050) - recorder.write(f'{transcript}\t{fout_path}\n') - recorder.flush() - recorder.close() \ No newline at end of file + recorder.write(f'{transcript}\t{fout_path}\n') + recorder.flush() + recorder.close() \ No newline at end of file diff --git a/read.py b/read.py index 08841f0..639dd7d 100644 --- a/read.py +++ b/read.py @@ -30,24 +30,13 @@ if __name__ == '__main__': # These are voices drawn randomly from the training set. You are free to substitute your own voices in, but testing # has shown that the model does not generalize to new voices very well. preselected_cond_voices = { - # Male voices - 'dotrice': ['voices/dotrice/1.wav', 'voices/dotrice/2.wav'], - 'harris': ['voices/harris/1.wav', 'voices/harris/2.wav'], - 'lescault': ['voices/lescault/1.wav', 'voices/lescault/2.wav'], - 'otto': ['voices/otto/1.wav', 'voices/otto/2.wav'], - 'obama': ['voices/obama/1.wav', 'voices/obama/2.wav'], - 'carlin': ['voices/carlin/1.wav', 'voices/carlin/2.wav'], - # Female voices - 'atkins': ['voices/atkins/1.wav', 'voices/atkins/2.wav'], - 'grace': ['voices/grace/1.wav', 'voices/grace/2.wav'], - 'kennard': ['voices/kennard/1.wav', 'voices/kennard/2.wav'], - 'mol': ['voices/mol/1.wav', 'voices/mol/2.wav'], - 'lj': ['voices/lj/1.wav', 'voices/lj/2.wav'], + 'emma_stone': ['voices/emma_stone/1.wav','voices/emma_stone/2.wav','voices/emma_stone/3.wav'], + 'tom_hanks': ['voices/tom_hanks/1.wav','voices/tom_hanks/2.wav','voices/tom_hanks/3.wav'], } parser = argparse.ArgumentParser() parser.add_argument('-textfile', type=str, help='A file containing the text to read.', default="data/riding_hood.txt") - parser.add_argument('-voice', type=str, help='Use a preset conditioning voice (defined above). Overrides cond_path.', default='dotrice') + parser.add_argument('-voice', type=str, help='Use a preset conditioning voice (defined above). Overrides cond_path.', default='emma_stone') parser.add_argument('-num_samples', type=int, help='How many total outputs the autoregressive transformer should produce.', default=512) parser.add_argument('-batch_size', type=int, help='How many samples to process at once in the autoregressive model.', default=16) parser.add_argument('-output_path', type=str, help='Where to store outputs.', default='results/longform/') diff --git a/results/atkins_0.wav b/results/atkins_0.wav deleted file mode 100644 index bd6fc91..0000000 Binary files a/results/atkins_0.wav and /dev/null differ diff --git a/results/atkins_1.wav b/results/atkins_1.wav deleted file mode 100644 index f264dd0..0000000 Binary files a/results/atkins_1.wav and /dev/null differ diff --git a/results/autoregressive_ml/atkins_0.wav b/results/autoregressive_ml/atkins_0.wav deleted file mode 100644 index bb3e123..0000000 Binary files a/results/autoregressive_ml/atkins_0.wav and /dev/null differ diff --git a/results/autoregressive_ml/atkins_1.wav b/results/autoregressive_ml/atkins_1.wav deleted file mode 100644 index 9a5fde8..0000000 Binary files a/results/autoregressive_ml/atkins_1.wav and /dev/null differ diff --git a/results/autoregressive_ml/dotrice_0.wav b/results/autoregressive_ml/dotrice_0.wav deleted file mode 100644 index b14cf3d..0000000 Binary files a/results/autoregressive_ml/dotrice_0.wav and /dev/null differ diff --git a/results/autoregressive_ml/dotrice_1.wav b/results/autoregressive_ml/dotrice_1.wav deleted file mode 100644 index c33d485..0000000 Binary files a/results/autoregressive_ml/dotrice_1.wav and /dev/null differ diff --git a/results/autoregressive_ml/grace_0.wav b/results/autoregressive_ml/grace_0.wav deleted file mode 100644 index f6c4dfe..0000000 Binary files a/results/autoregressive_ml/grace_0.wav and /dev/null differ diff --git a/results/autoregressive_ml/grace_1.wav b/results/autoregressive_ml/grace_1.wav deleted file mode 100644 index 807baf7..0000000 Binary files a/results/autoregressive_ml/grace_1.wav and /dev/null differ diff --git a/results/autoregressive_ml/harris_0.wav b/results/autoregressive_ml/harris_0.wav deleted file mode 100644 index 9e35966..0000000 Binary files a/results/autoregressive_ml/harris_0.wav and /dev/null differ diff --git a/results/autoregressive_ml/harris_1.wav b/results/autoregressive_ml/harris_1.wav deleted file mode 100644 index 210c8dd..0000000 Binary files a/results/autoregressive_ml/harris_1.wav and /dev/null differ diff --git a/results/autoregressive_ml/kennard_0.wav b/results/autoregressive_ml/kennard_0.wav deleted file mode 100644 index 666f93a..0000000 Binary files a/results/autoregressive_ml/kennard_0.wav and /dev/null differ diff --git a/results/autoregressive_ml/kennard_1.wav b/results/autoregressive_ml/kennard_1.wav deleted file mode 100644 index b94ba43..0000000 Binary files a/results/autoregressive_ml/kennard_1.wav and /dev/null differ diff --git a/results/autoregressive_ml/lescault_0.wav b/results/autoregressive_ml/lescault_0.wav deleted file mode 100644 index acfb63a..0000000 Binary files a/results/autoregressive_ml/lescault_0.wav and /dev/null differ diff --git a/results/autoregressive_ml/lescault_1.wav b/results/autoregressive_ml/lescault_1.wav deleted file mode 100644 index 49e36e5..0000000 Binary files a/results/autoregressive_ml/lescault_1.wav and /dev/null differ diff --git a/results/autoregressive_ml/mol_0.wav b/results/autoregressive_ml/mol_0.wav deleted file mode 100644 index 46d09d0..0000000 Binary files a/results/autoregressive_ml/mol_0.wav and /dev/null differ diff --git a/results/autoregressive_ml/mol_1.wav b/results/autoregressive_ml/mol_1.wav deleted file mode 100644 index 61c13ff..0000000 Binary files a/results/autoregressive_ml/mol_1.wav and /dev/null differ diff --git a/results/autoregressive_ml/otto_0.wav b/results/autoregressive_ml/otto_0.wav deleted file mode 100644 index 69e7349..0000000 Binary files a/results/autoregressive_ml/otto_0.wav and /dev/null differ diff --git a/results/autoregressive_ml/otto_1.wav b/results/autoregressive_ml/otto_1.wav deleted file mode 100644 index 58293ed..0000000 Binary files a/results/autoregressive_ml/otto_1.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/atkins_0.wav b/results/bengio_it_needs_to_know_what_is_bad/atkins_0.wav deleted file mode 100644 index 58494f3..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/atkins_0.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/atkins_1.wav b/results/bengio_it_needs_to_know_what_is_bad/atkins_1.wav deleted file mode 100644 index c44ad04..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/atkins_1.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/dotrice_0.wav b/results/bengio_it_needs_to_know_what_is_bad/dotrice_0.wav deleted file mode 100644 index 54acb87..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/dotrice_0.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/dotrice_1.wav b/results/bengio_it_needs_to_know_what_is_bad/dotrice_1.wav deleted file mode 100644 index 0221dea..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/dotrice_1.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/grace_0.wav b/results/bengio_it_needs_to_know_what_is_bad/grace_0.wav deleted file mode 100644 index 2468e7b..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/grace_0.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/grace_1.wav b/results/bengio_it_needs_to_know_what_is_bad/grace_1.wav deleted file mode 100644 index 2778035..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/grace_1.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/harris_0.wav b/results/bengio_it_needs_to_know_what_is_bad/harris_0.wav deleted file mode 100644 index 796f92d..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/harris_0.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/harris_1.wav b/results/bengio_it_needs_to_know_what_is_bad/harris_1.wav deleted file mode 100644 index 7aa62b1..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/harris_1.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/kennard_0.wav b/results/bengio_it_needs_to_know_what_is_bad/kennard_0.wav deleted file mode 100644 index b4e0d4e..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/kennard_0.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/kennard_1.wav b/results/bengio_it_needs_to_know_what_is_bad/kennard_1.wav deleted file mode 100644 index 546d33c..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/kennard_1.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/lescault_0.wav b/results/bengio_it_needs_to_know_what_is_bad/lescault_0.wav deleted file mode 100644 index bb16ae2..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/lescault_0.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/lescault_1.wav b/results/bengio_it_needs_to_know_what_is_bad/lescault_1.wav deleted file mode 100644 index 98c387c..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/lescault_1.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/mol_0.wav b/results/bengio_it_needs_to_know_what_is_bad/mol_0.wav deleted file mode 100644 index a2e6c90..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/mol_0.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/mol_1.wav b/results/bengio_it_needs_to_know_what_is_bad/mol_1.wav deleted file mode 100644 index 3d5314a..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/mol_1.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/otto_0.wav b/results/bengio_it_needs_to_know_what_is_bad/otto_0.wav deleted file mode 100644 index ca80c57..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/otto_0.wav and /dev/null differ diff --git a/results/bengio_it_needs_to_know_what_is_bad/otto_1.wav b/results/bengio_it_needs_to_know_what_is_bad/otto_1.wav deleted file mode 100644 index d96e3ed..0000000 Binary files a/results/bengio_it_needs_to_know_what_is_bad/otto_1.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/atkins_0.wav b/results/dickinson_stop_for_death/atkins_0.wav deleted file mode 100644 index da22a6f..0000000 Binary files a/results/dickinson_stop_for_death/atkins_0.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/atkins_1.wav b/results/dickinson_stop_for_death/atkins_1.wav deleted file mode 100644 index 6ad6567..0000000 Binary files a/results/dickinson_stop_for_death/atkins_1.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/dotrice_0.wav b/results/dickinson_stop_for_death/dotrice_0.wav deleted file mode 100644 index e09c3f4..0000000 Binary files a/results/dickinson_stop_for_death/dotrice_0.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/dotrice_1.wav b/results/dickinson_stop_for_death/dotrice_1.wav deleted file mode 100644 index 04b9735..0000000 Binary files a/results/dickinson_stop_for_death/dotrice_1.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/grace_0.wav b/results/dickinson_stop_for_death/grace_0.wav deleted file mode 100644 index 1e63a2a..0000000 Binary files a/results/dickinson_stop_for_death/grace_0.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/grace_1.wav b/results/dickinson_stop_for_death/grace_1.wav deleted file mode 100644 index 09c568e..0000000 Binary files a/results/dickinson_stop_for_death/grace_1.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/harris_0.wav b/results/dickinson_stop_for_death/harris_0.wav deleted file mode 100644 index 5ba77eb..0000000 Binary files a/results/dickinson_stop_for_death/harris_0.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/harris_1.wav b/results/dickinson_stop_for_death/harris_1.wav deleted file mode 100644 index cc6a518..0000000 Binary files a/results/dickinson_stop_for_death/harris_1.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/kennard_0.wav b/results/dickinson_stop_for_death/kennard_0.wav deleted file mode 100644 index 1bd5c30..0000000 Binary files a/results/dickinson_stop_for_death/kennard_0.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/kennard_1.wav b/results/dickinson_stop_for_death/kennard_1.wav deleted file mode 100644 index c9f8cd0..0000000 Binary files a/results/dickinson_stop_for_death/kennard_1.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/lescault_0.wav b/results/dickinson_stop_for_death/lescault_0.wav deleted file mode 100644 index 38e861e..0000000 Binary files a/results/dickinson_stop_for_death/lescault_0.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/lescault_1.wav b/results/dickinson_stop_for_death/lescault_1.wav deleted file mode 100644 index 255055c..0000000 Binary files a/results/dickinson_stop_for_death/lescault_1.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/mol_0.wav b/results/dickinson_stop_for_death/mol_0.wav deleted file mode 100644 index e3afe4f..0000000 Binary files a/results/dickinson_stop_for_death/mol_0.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/mol_1.wav b/results/dickinson_stop_for_death/mol_1.wav deleted file mode 100644 index 5f48888..0000000 Binary files a/results/dickinson_stop_for_death/mol_1.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/otto_0.wav b/results/dickinson_stop_for_death/otto_0.wav deleted file mode 100644 index d586a77..0000000 Binary files a/results/dickinson_stop_for_death/otto_0.wav and /dev/null differ diff --git a/results/dickinson_stop_for_death/otto_1.wav b/results/dickinson_stop_for_death/otto_1.wav deleted file mode 100644 index 461449d..0000000 Binary files a/results/dickinson_stop_for_death/otto_1.wav and /dev/null differ diff --git a/results/dotrice_0.wav b/results/dotrice_0.wav deleted file mode 100644 index 42862fc..0000000 Binary files a/results/dotrice_0.wav and /dev/null differ diff --git a/results/dotrice_1.wav b/results/dotrice_1.wav deleted file mode 100644 index fb94674..0000000 Binary files a/results/dotrice_1.wav and /dev/null differ diff --git a/results/espn_basketball/atkins_0.wav b/results/espn_basketball/atkins_0.wav deleted file mode 100644 index 99103f2..0000000 Binary files a/results/espn_basketball/atkins_0.wav and /dev/null differ diff --git a/results/espn_basketball/atkins_1.wav b/results/espn_basketball/atkins_1.wav deleted file mode 100644 index 44a26de..0000000 Binary files a/results/espn_basketball/atkins_1.wav and /dev/null differ diff --git a/results/espn_basketball/dotrice_0.wav b/results/espn_basketball/dotrice_0.wav deleted file mode 100644 index 177141d..0000000 Binary files a/results/espn_basketball/dotrice_0.wav and /dev/null differ diff --git a/results/espn_basketball/dotrice_1.wav b/results/espn_basketball/dotrice_1.wav deleted file mode 100644 index 0f67368..0000000 Binary files a/results/espn_basketball/dotrice_1.wav and /dev/null differ diff --git a/results/espn_basketball/grace_0.wav b/results/espn_basketball/grace_0.wav deleted file mode 100644 index 9ccc31b..0000000 Binary files a/results/espn_basketball/grace_0.wav and /dev/null differ diff --git a/results/espn_basketball/grace_1.wav b/results/espn_basketball/grace_1.wav deleted file mode 100644 index a05890d..0000000 Binary files a/results/espn_basketball/grace_1.wav and /dev/null differ diff --git a/results/espn_basketball/harris_0.wav b/results/espn_basketball/harris_0.wav deleted file mode 100644 index 5d44413..0000000 Binary files a/results/espn_basketball/harris_0.wav and /dev/null differ diff --git a/results/espn_basketball/harris_1.wav b/results/espn_basketball/harris_1.wav deleted file mode 100644 index 144b7f2..0000000 Binary files a/results/espn_basketball/harris_1.wav and /dev/null differ diff --git a/results/espn_basketball/kennard_0.wav b/results/espn_basketball/kennard_0.wav deleted file mode 100644 index 0a6c78f..0000000 Binary files a/results/espn_basketball/kennard_0.wav and /dev/null differ diff --git a/results/espn_basketball/kennard_1.wav b/results/espn_basketball/kennard_1.wav deleted file mode 100644 index 6ee67ed..0000000 Binary files a/results/espn_basketball/kennard_1.wav and /dev/null differ diff --git a/results/espn_basketball/lescault_0.wav b/results/espn_basketball/lescault_0.wav deleted file mode 100644 index e2c424b..0000000 Binary files a/results/espn_basketball/lescault_0.wav and /dev/null differ diff --git a/results/espn_basketball/lescault_1.wav b/results/espn_basketball/lescault_1.wav deleted file mode 100644 index c006d8a..0000000 Binary files a/results/espn_basketball/lescault_1.wav and /dev/null differ diff --git a/results/espn_basketball/mol_0.wav b/results/espn_basketball/mol_0.wav deleted file mode 100644 index ec3c723..0000000 Binary files a/results/espn_basketball/mol_0.wav and /dev/null differ diff --git a/results/espn_basketball/mol_1.wav b/results/espn_basketball/mol_1.wav deleted file mode 100644 index 473f856..0000000 Binary files a/results/espn_basketball/mol_1.wav and /dev/null differ diff --git a/results/espn_basketball/otto_0.wav b/results/espn_basketball/otto_0.wav deleted file mode 100644 index 55d0a83..0000000 Binary files a/results/espn_basketball/otto_0.wav and /dev/null differ diff --git a/results/espn_basketball/otto_1.wav b/results/espn_basketball/otto_1.wav deleted file mode 100644 index e493474..0000000 Binary files a/results/espn_basketball/otto_1.wav and /dev/null differ diff --git a/results/favorites/atkins_road_not_taken.wav b/results/favorites/atkins_road_not_taken.wav deleted file mode 100644 index 1f59a29..0000000 Binary files a/results/favorites/atkins_road_not_taken.wav and /dev/null differ diff --git a/results/favorites/dotrice_rollingstone.wav b/results/favorites/dotrice_rollingstone.wav deleted file mode 100644 index 9e56ced..0000000 Binary files a/results/favorites/dotrice_rollingstone.wav and /dev/null differ diff --git a/results/favorites/dotrice_tacotron_samp1.wav b/results/favorites/dotrice_tacotron_samp1.wav deleted file mode 100644 index 80911f9..0000000 Binary files a/results/favorites/dotrice_tacotron_samp1.wav and /dev/null differ diff --git a/results/favorites/kennard_tacotron_samp2.wav b/results/favorites/kennard_tacotron_samp2.wav deleted file mode 100644 index 789d3f7..0000000 Binary files a/results/favorites/kennard_tacotron_samp2.wav and /dev/null differ diff --git a/results/favorites/mol_dickenson.wav b/results/favorites/mol_dickenson.wav deleted file mode 100644 index 5f48888..0000000 Binary files a/results/favorites/mol_dickenson.wav and /dev/null differ diff --git a/results/favorites/mol_obama.wav b/results/favorites/mol_obama.wav deleted file mode 100644 index b36ea2c..0000000 Binary files a/results/favorites/mol_obama.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/atkins_0.wav b/results/frost_oar_to_oar/atkins_0.wav deleted file mode 100644 index 6920315..0000000 Binary files a/results/frost_oar_to_oar/atkins_0.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/atkins_1.wav b/results/frost_oar_to_oar/atkins_1.wav deleted file mode 100644 index bbf3cc3..0000000 Binary files a/results/frost_oar_to_oar/atkins_1.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/dotrice_0.wav b/results/frost_oar_to_oar/dotrice_0.wav deleted file mode 100644 index 01aa29a..0000000 Binary files a/results/frost_oar_to_oar/dotrice_0.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/dotrice_1.wav b/results/frost_oar_to_oar/dotrice_1.wav deleted file mode 100644 index ce96505..0000000 Binary files a/results/frost_oar_to_oar/dotrice_1.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/grace_0.wav b/results/frost_oar_to_oar/grace_0.wav deleted file mode 100644 index 282d78e..0000000 Binary files a/results/frost_oar_to_oar/grace_0.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/grace_1.wav b/results/frost_oar_to_oar/grace_1.wav deleted file mode 100644 index ded5c35..0000000 Binary files a/results/frost_oar_to_oar/grace_1.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/harris_0.wav b/results/frost_oar_to_oar/harris_0.wav deleted file mode 100644 index ebf6ff1..0000000 Binary files a/results/frost_oar_to_oar/harris_0.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/harris_1.wav b/results/frost_oar_to_oar/harris_1.wav deleted file mode 100644 index a3fb596..0000000 Binary files a/results/frost_oar_to_oar/harris_1.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/kennard_0.wav b/results/frost_oar_to_oar/kennard_0.wav deleted file mode 100644 index f4f8377..0000000 Binary files a/results/frost_oar_to_oar/kennard_0.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/kennard_1.wav b/results/frost_oar_to_oar/kennard_1.wav deleted file mode 100644 index b482acd..0000000 Binary files a/results/frost_oar_to_oar/kennard_1.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/lescault_0.wav b/results/frost_oar_to_oar/lescault_0.wav deleted file mode 100644 index 7daf7f5..0000000 Binary files a/results/frost_oar_to_oar/lescault_0.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/lescault_1.wav b/results/frost_oar_to_oar/lescault_1.wav deleted file mode 100644 index 0473dac..0000000 Binary files a/results/frost_oar_to_oar/lescault_1.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/mol_0.wav b/results/frost_oar_to_oar/mol_0.wav deleted file mode 100644 index 0c23daa..0000000 Binary files a/results/frost_oar_to_oar/mol_0.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/mol_1.wav b/results/frost_oar_to_oar/mol_1.wav deleted file mode 100644 index ce3e8c2..0000000 Binary files a/results/frost_oar_to_oar/mol_1.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/otto_0.wav b/results/frost_oar_to_oar/otto_0.wav deleted file mode 100644 index b58cdf1..0000000 Binary files a/results/frost_oar_to_oar/otto_0.wav and /dev/null differ diff --git a/results/frost_oar_to_oar/otto_1.wav b/results/frost_oar_to_oar/otto_1.wav deleted file mode 100644 index 985a291..0000000 Binary files a/results/frost_oar_to_oar/otto_1.wav and /dev/null differ diff --git a/results/frost_road_not_taken/atkins_0.wav b/results/frost_road_not_taken/atkins_0.wav deleted file mode 100644 index 1f59a29..0000000 Binary files a/results/frost_road_not_taken/atkins_0.wav and /dev/null differ diff --git a/results/frost_road_not_taken/atkins_1.wav b/results/frost_road_not_taken/atkins_1.wav deleted file mode 100644 index b8a487a..0000000 Binary files a/results/frost_road_not_taken/atkins_1.wav and /dev/null differ diff --git a/results/frost_road_not_taken/dotrice_0.wav b/results/frost_road_not_taken/dotrice_0.wav deleted file mode 100644 index fd7d4d8..0000000 Binary files a/results/frost_road_not_taken/dotrice_0.wav and /dev/null differ diff --git a/results/frost_road_not_taken/dotrice_1.wav b/results/frost_road_not_taken/dotrice_1.wav deleted file mode 100644 index 61af0f2..0000000 Binary files a/results/frost_road_not_taken/dotrice_1.wav and /dev/null differ diff --git a/results/frost_road_not_taken/grace_0.wav b/results/frost_road_not_taken/grace_0.wav deleted file mode 100644 index 8b22b6a..0000000 Binary files a/results/frost_road_not_taken/grace_0.wav and /dev/null differ diff --git a/results/frost_road_not_taken/grace_1.wav b/results/frost_road_not_taken/grace_1.wav deleted file mode 100644 index 2fe2123..0000000 Binary files a/results/frost_road_not_taken/grace_1.wav and /dev/null differ diff --git a/results/frost_road_not_taken/harris_0.wav b/results/frost_road_not_taken/harris_0.wav deleted file mode 100644 index 1080e06..0000000 Binary files a/results/frost_road_not_taken/harris_0.wav and /dev/null differ diff --git a/results/frost_road_not_taken/harris_1.wav b/results/frost_road_not_taken/harris_1.wav deleted file mode 100644 index 4dc45dd..0000000 Binary files a/results/frost_road_not_taken/harris_1.wav and /dev/null differ diff --git a/results/frost_road_not_taken/kennard_0.wav b/results/frost_road_not_taken/kennard_0.wav deleted file mode 100644 index a312170..0000000 Binary files a/results/frost_road_not_taken/kennard_0.wav and /dev/null differ diff --git a/results/frost_road_not_taken/kennard_1.wav b/results/frost_road_not_taken/kennard_1.wav deleted file mode 100644 index 3b8fe49..0000000 Binary files a/results/frost_road_not_taken/kennard_1.wav and /dev/null differ diff --git a/results/frost_road_not_taken/lescault_0.wav b/results/frost_road_not_taken/lescault_0.wav deleted file mode 100644 index 90680ca..0000000 Binary files a/results/frost_road_not_taken/lescault_0.wav and /dev/null differ diff --git a/results/frost_road_not_taken/lescault_1.wav b/results/frost_road_not_taken/lescault_1.wav deleted file mode 100644 index 3859fda..0000000 Binary files a/results/frost_road_not_taken/lescault_1.wav and /dev/null differ diff --git a/results/frost_road_not_taken/mol_0.wav b/results/frost_road_not_taken/mol_0.wav deleted file mode 100644 index 144d248..0000000 Binary files a/results/frost_road_not_taken/mol_0.wav and /dev/null differ diff --git a/results/frost_road_not_taken/mol_1.wav b/results/frost_road_not_taken/mol_1.wav deleted file mode 100644 index ea231e4..0000000 Binary files a/results/frost_road_not_taken/mol_1.wav and /dev/null differ diff --git a/results/frost_road_not_taken/otto_0.wav b/results/frost_road_not_taken/otto_0.wav deleted file mode 100644 index 2351d6f..0000000 Binary files a/results/frost_road_not_taken/otto_0.wav and /dev/null differ diff --git a/results/frost_road_not_taken/otto_1.wav b/results/frost_road_not_taken/otto_1.wav deleted file mode 100644 index 9976959..0000000 Binary files a/results/frost_road_not_taken/otto_1.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/atkins_0.wav b/results/gatsby_and_so_we_beat_on/atkins_0.wav deleted file mode 100644 index bf4e658..0000000 Binary files a/results/gatsby_and_so_we_beat_on/atkins_0.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/atkins_1.wav b/results/gatsby_and_so_we_beat_on/atkins_1.wav deleted file mode 100644 index 0b21eb4..0000000 Binary files a/results/gatsby_and_so_we_beat_on/atkins_1.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/dotrice_0.wav b/results/gatsby_and_so_we_beat_on/dotrice_0.wav deleted file mode 100644 index 211a009..0000000 Binary files a/results/gatsby_and_so_we_beat_on/dotrice_0.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/dotrice_1.wav b/results/gatsby_and_so_we_beat_on/dotrice_1.wav deleted file mode 100644 index 43a33ca..0000000 Binary files a/results/gatsby_and_so_we_beat_on/dotrice_1.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/grace_0.wav b/results/gatsby_and_so_we_beat_on/grace_0.wav deleted file mode 100644 index 3303787..0000000 Binary files a/results/gatsby_and_so_we_beat_on/grace_0.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/grace_1.wav b/results/gatsby_and_so_we_beat_on/grace_1.wav deleted file mode 100644 index 5a4c717..0000000 Binary files a/results/gatsby_and_so_we_beat_on/grace_1.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/harris_0.wav b/results/gatsby_and_so_we_beat_on/harris_0.wav deleted file mode 100644 index 8eb9e4d..0000000 Binary files a/results/gatsby_and_so_we_beat_on/harris_0.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/harris_1.wav b/results/gatsby_and_so_we_beat_on/harris_1.wav deleted file mode 100644 index ac68a47..0000000 Binary files a/results/gatsby_and_so_we_beat_on/harris_1.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/kennard_0.wav b/results/gatsby_and_so_we_beat_on/kennard_0.wav deleted file mode 100644 index 77b9a7f..0000000 Binary files a/results/gatsby_and_so_we_beat_on/kennard_0.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/kennard_1.wav b/results/gatsby_and_so_we_beat_on/kennard_1.wav deleted file mode 100644 index c6ea5af..0000000 Binary files a/results/gatsby_and_so_we_beat_on/kennard_1.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/lescault_0.wav b/results/gatsby_and_so_we_beat_on/lescault_0.wav deleted file mode 100644 index 3d9cd4a..0000000 Binary files a/results/gatsby_and_so_we_beat_on/lescault_0.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/lescault_1.wav b/results/gatsby_and_so_we_beat_on/lescault_1.wav deleted file mode 100644 index e8fefcc..0000000 Binary files a/results/gatsby_and_so_we_beat_on/lescault_1.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/mol_0.wav b/results/gatsby_and_so_we_beat_on/mol_0.wav deleted file mode 100644 index 2b5c428..0000000 Binary files a/results/gatsby_and_so_we_beat_on/mol_0.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/mol_1.wav b/results/gatsby_and_so_we_beat_on/mol_1.wav deleted file mode 100644 index 5a1d26b..0000000 Binary files a/results/gatsby_and_so_we_beat_on/mol_1.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/otto_0.wav b/results/gatsby_and_so_we_beat_on/otto_0.wav deleted file mode 100644 index 41c26ba..0000000 Binary files a/results/gatsby_and_so_we_beat_on/otto_0.wav and /dev/null differ diff --git a/results/gatsby_and_so_we_beat_on/otto_1.wav b/results/gatsby_and_so_we_beat_on/otto_1.wav deleted file mode 100644 index e305422..0000000 Binary files a/results/gatsby_and_so_we_beat_on/otto_1.wav and /dev/null differ diff --git a/results/grace_0.wav b/results/grace_0.wav deleted file mode 100644 index 20ce1e8..0000000 Binary files a/results/grace_0.wav and /dev/null differ diff --git a/results/grace_1.wav b/results/grace_1.wav deleted file mode 100644 index b47c19d..0000000 Binary files a/results/grace_1.wav and /dev/null differ diff --git a/results/harris_0.wav b/results/harris_0.wav deleted file mode 100644 index 9010c26..0000000 Binary files a/results/harris_0.wav and /dev/null differ diff --git a/results/harris_1.wav b/results/harris_1.wav deleted file mode 100644 index da2b2cf..0000000 Binary files a/results/harris_1.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/atkins_0.wav b/results/harrypotter_differences_of_habit_and_language/atkins_0.wav deleted file mode 100644 index 6c24dc4..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/atkins_0.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/atkins_1.wav b/results/harrypotter_differences_of_habit_and_language/atkins_1.wav deleted file mode 100644 index 46c576a..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/atkins_1.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/dotrice_0.wav b/results/harrypotter_differences_of_habit_and_language/dotrice_0.wav deleted file mode 100644 index 059b021..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/dotrice_0.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/dotrice_1.wav b/results/harrypotter_differences_of_habit_and_language/dotrice_1.wav deleted file mode 100644 index 87b6715..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/dotrice_1.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/grace_0.wav b/results/harrypotter_differences_of_habit_and_language/grace_0.wav deleted file mode 100644 index d95eded..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/grace_0.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/grace_1.wav b/results/harrypotter_differences_of_habit_and_language/grace_1.wav deleted file mode 100644 index b41d922..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/grace_1.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/harris_0.wav b/results/harrypotter_differences_of_habit_and_language/harris_0.wav deleted file mode 100644 index c8c9fb7..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/harris_0.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/harris_1.wav b/results/harrypotter_differences_of_habit_and_language/harris_1.wav deleted file mode 100644 index 43271ba..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/harris_1.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/kennard_0.wav b/results/harrypotter_differences_of_habit_and_language/kennard_0.wav deleted file mode 100644 index 0150630..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/kennard_0.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/kennard_1.wav b/results/harrypotter_differences_of_habit_and_language/kennard_1.wav deleted file mode 100644 index 3f73089..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/kennard_1.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/lescault_0.wav b/results/harrypotter_differences_of_habit_and_language/lescault_0.wav deleted file mode 100644 index 16a33b1..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/lescault_0.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/lescault_1.wav b/results/harrypotter_differences_of_habit_and_language/lescault_1.wav deleted file mode 100644 index 19f71a5..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/lescault_1.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/mol_0.wav b/results/harrypotter_differences_of_habit_and_language/mol_0.wav deleted file mode 100644 index 5153b34..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/mol_0.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/mol_1.wav b/results/harrypotter_differences_of_habit_and_language/mol_1.wav deleted file mode 100644 index 0e3588c..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/mol_1.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/otto_0.wav b/results/harrypotter_differences_of_habit_and_language/otto_0.wav deleted file mode 100644 index 0947c15..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/otto_0.wav and /dev/null differ diff --git a/results/harrypotter_differences_of_habit_and_language/otto_1.wav b/results/harrypotter_differences_of_habit_and_language/otto_1.wav deleted file mode 100644 index e07d28e..0000000 Binary files a/results/harrypotter_differences_of_habit_and_language/otto_1.wav and /dev/null differ diff --git a/results/i_am_a_language_model/atkins_0.wav b/results/i_am_a_language_model/atkins_0.wav deleted file mode 100644 index 973726b..0000000 Binary files a/results/i_am_a_language_model/atkins_0.wav and /dev/null differ diff --git a/results/i_am_a_language_model/atkins_1.wav b/results/i_am_a_language_model/atkins_1.wav deleted file mode 100644 index 9de9a3e..0000000 Binary files a/results/i_am_a_language_model/atkins_1.wav and /dev/null differ diff --git a/results/i_am_a_language_model/dotrice_0.wav b/results/i_am_a_language_model/dotrice_0.wav deleted file mode 100644 index 54f660d..0000000 Binary files a/results/i_am_a_language_model/dotrice_0.wav and /dev/null differ diff --git a/results/i_am_a_language_model/dotrice_1.wav b/results/i_am_a_language_model/dotrice_1.wav deleted file mode 100644 index 028d978..0000000 Binary files a/results/i_am_a_language_model/dotrice_1.wav and /dev/null differ diff --git a/results/i_am_a_language_model/grace_0.wav b/results/i_am_a_language_model/grace_0.wav deleted file mode 100644 index 5bfaf80..0000000 Binary files a/results/i_am_a_language_model/grace_0.wav and /dev/null differ diff --git a/results/i_am_a_language_model/grace_1.wav b/results/i_am_a_language_model/grace_1.wav deleted file mode 100644 index c57044b..0000000 Binary files a/results/i_am_a_language_model/grace_1.wav and /dev/null differ diff --git a/results/i_am_a_language_model/harris_0.wav b/results/i_am_a_language_model/harris_0.wav deleted file mode 100644 index 403857a..0000000 Binary files a/results/i_am_a_language_model/harris_0.wav and /dev/null differ diff --git a/results/i_am_a_language_model/harris_1.wav b/results/i_am_a_language_model/harris_1.wav deleted file mode 100644 index 5ad4499..0000000 Binary files a/results/i_am_a_language_model/harris_1.wav and /dev/null differ diff --git a/results/i_am_a_language_model/kennard_0.wav b/results/i_am_a_language_model/kennard_0.wav deleted file mode 100644 index 79d3f84..0000000 Binary files a/results/i_am_a_language_model/kennard_0.wav and /dev/null differ diff --git a/results/i_am_a_language_model/kennard_1.wav b/results/i_am_a_language_model/kennard_1.wav deleted file mode 100644 index d852e97..0000000 Binary files a/results/i_am_a_language_model/kennard_1.wav and /dev/null differ diff --git a/results/i_am_a_language_model/lescault_0.wav b/results/i_am_a_language_model/lescault_0.wav deleted file mode 100644 index 54aef2e..0000000 Binary files a/results/i_am_a_language_model/lescault_0.wav and /dev/null differ diff --git a/results/i_am_a_language_model/lescault_1.wav b/results/i_am_a_language_model/lescault_1.wav deleted file mode 100644 index 2eab982..0000000 Binary files a/results/i_am_a_language_model/lescault_1.wav and /dev/null differ diff --git a/results/i_am_a_language_model/mol_0.wav b/results/i_am_a_language_model/mol_0.wav deleted file mode 100644 index 0fd75de..0000000 Binary files a/results/i_am_a_language_model/mol_0.wav and /dev/null differ diff --git a/results/i_am_a_language_model/mol_1.wav b/results/i_am_a_language_model/mol_1.wav deleted file mode 100644 index 0cdc353..0000000 Binary files a/results/i_am_a_language_model/mol_1.wav and /dev/null differ diff --git a/results/i_am_a_language_model/otto_0.wav b/results/i_am_a_language_model/otto_0.wav deleted file mode 100644 index b7f9281..0000000 Binary files a/results/i_am_a_language_model/otto_0.wav and /dev/null differ diff --git a/results/i_am_a_language_model/otto_1.wav b/results/i_am_a_language_model/otto_1.wav deleted file mode 100644 index 7d188fc..0000000 Binary files a/results/i_am_a_language_model/otto_1.wav and /dev/null differ diff --git a/results/kennard_0.wav b/results/kennard_0.wav deleted file mode 100644 index 25c4750..0000000 Binary files a/results/kennard_0.wav and /dev/null differ diff --git a/results/kennard_1.wav b/results/kennard_1.wav deleted file mode 100644 index cbcc09d..0000000 Binary files a/results/kennard_1.wav and /dev/null differ diff --git a/results/lescault_0.wav b/results/lescault_0.wav deleted file mode 100644 index 09afb90..0000000 Binary files a/results/lescault_0.wav and /dev/null differ diff --git a/results/lescault_1.wav b/results/lescault_1.wav deleted file mode 100644 index 4712362..0000000 Binary files a/results/lescault_1.wav and /dev/null differ diff --git a/results/mol_0.wav b/results/mol_0.wav deleted file mode 100644 index be8f3b4..0000000 Binary files a/results/mol_0.wav and /dev/null differ diff --git a/results/mol_1.wav b/results/mol_1.wav deleted file mode 100644 index a9ef7bf..0000000 Binary files a/results/mol_1.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/atkins_0.wav b/results/nyt_omicron_ballooning_death_toll/atkins_0.wav deleted file mode 100644 index 29bdd25..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/atkins_0.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/atkins_1.wav b/results/nyt_omicron_ballooning_death_toll/atkins_1.wav deleted file mode 100644 index 3c5aba6..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/atkins_1.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/dotrice_0.wav b/results/nyt_omicron_ballooning_death_toll/dotrice_0.wav deleted file mode 100644 index 7065e68..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/dotrice_0.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/dotrice_1.wav b/results/nyt_omicron_ballooning_death_toll/dotrice_1.wav deleted file mode 100644 index a0beb1f..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/dotrice_1.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/grace_0.wav b/results/nyt_omicron_ballooning_death_toll/grace_0.wav deleted file mode 100644 index 16a68c7..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/grace_0.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/grace_1.wav b/results/nyt_omicron_ballooning_death_toll/grace_1.wav deleted file mode 100644 index ca733a3..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/grace_1.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/harris_0.wav b/results/nyt_omicron_ballooning_death_toll/harris_0.wav deleted file mode 100644 index 17c4e9f..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/harris_0.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/harris_1.wav b/results/nyt_omicron_ballooning_death_toll/harris_1.wav deleted file mode 100644 index 0ea94af..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/harris_1.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/kennard_0.wav b/results/nyt_omicron_ballooning_death_toll/kennard_0.wav deleted file mode 100644 index 22d1289..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/kennard_0.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/kennard_1.wav b/results/nyt_omicron_ballooning_death_toll/kennard_1.wav deleted file mode 100644 index 152754f..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/kennard_1.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/lescault_0.wav b/results/nyt_omicron_ballooning_death_toll/lescault_0.wav deleted file mode 100644 index 4a5dab6..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/lescault_0.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/lescault_1.wav b/results/nyt_omicron_ballooning_death_toll/lescault_1.wav deleted file mode 100644 index a1dd5b6..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/lescault_1.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/mol_0.wav b/results/nyt_omicron_ballooning_death_toll/mol_0.wav deleted file mode 100644 index e3831fb..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/mol_0.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/mol_1.wav b/results/nyt_omicron_ballooning_death_toll/mol_1.wav deleted file mode 100644 index 56df6e8..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/mol_1.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/otto_0.wav b/results/nyt_omicron_ballooning_death_toll/otto_0.wav deleted file mode 100644 index d1dabcb..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/otto_0.wav and /dev/null differ diff --git a/results/nyt_omicron_ballooning_death_toll/otto_1.wav b/results/nyt_omicron_ballooning_death_toll/otto_1.wav deleted file mode 100644 index 0d67e2d..0000000 Binary files a/results/nyt_omicron_ballooning_death_toll/otto_1.wav and /dev/null differ diff --git a/results/obama_govt/atkins_0.wav b/results/obama_govt/atkins_0.wav deleted file mode 100644 index 4e34345..0000000 Binary files a/results/obama_govt/atkins_0.wav and /dev/null differ diff --git a/results/obama_govt/atkins_1.wav b/results/obama_govt/atkins_1.wav deleted file mode 100644 index 054f438..0000000 Binary files a/results/obama_govt/atkins_1.wav and /dev/null differ diff --git a/results/obama_govt/dotrice_0.wav b/results/obama_govt/dotrice_0.wav deleted file mode 100644 index a6f5571..0000000 Binary files a/results/obama_govt/dotrice_0.wav and /dev/null differ diff --git a/results/obama_govt/dotrice_1.wav b/results/obama_govt/dotrice_1.wav deleted file mode 100644 index 6648d40..0000000 Binary files a/results/obama_govt/dotrice_1.wav and /dev/null differ diff --git a/results/obama_govt/grace_0.wav b/results/obama_govt/grace_0.wav deleted file mode 100644 index c68c38e..0000000 Binary files a/results/obama_govt/grace_0.wav and /dev/null differ diff --git a/results/obama_govt/grace_1.wav b/results/obama_govt/grace_1.wav deleted file mode 100644 index 69e3780..0000000 Binary files a/results/obama_govt/grace_1.wav and /dev/null differ diff --git a/results/obama_govt/harris_0.wav b/results/obama_govt/harris_0.wav deleted file mode 100644 index 5440ca9..0000000 Binary files a/results/obama_govt/harris_0.wav and /dev/null differ diff --git a/results/obama_govt/harris_1.wav b/results/obama_govt/harris_1.wav deleted file mode 100644 index cc0a55a..0000000 Binary files a/results/obama_govt/harris_1.wav and /dev/null differ diff --git a/results/obama_govt/kennard_0.wav b/results/obama_govt/kennard_0.wav deleted file mode 100644 index 5bfab3e..0000000 Binary files a/results/obama_govt/kennard_0.wav and /dev/null differ diff --git a/results/obama_govt/kennard_1.wav b/results/obama_govt/kennard_1.wav deleted file mode 100644 index 7fd6f7a..0000000 Binary files a/results/obama_govt/kennard_1.wav and /dev/null differ diff --git a/results/obama_govt/lescault_0.wav b/results/obama_govt/lescault_0.wav deleted file mode 100644 index b4ffa29..0000000 Binary files a/results/obama_govt/lescault_0.wav and /dev/null differ diff --git a/results/obama_govt/lescault_1.wav b/results/obama_govt/lescault_1.wav deleted file mode 100644 index 047706d..0000000 Binary files a/results/obama_govt/lescault_1.wav and /dev/null differ diff --git a/results/obama_govt/mol_0.wav b/results/obama_govt/mol_0.wav deleted file mode 100644 index b36ea2c..0000000 Binary files a/results/obama_govt/mol_0.wav and /dev/null differ diff --git a/results/obama_govt/mol_1.wav b/results/obama_govt/mol_1.wav deleted file mode 100644 index c2e0f6f..0000000 Binary files a/results/obama_govt/mol_1.wav and /dev/null differ diff --git a/results/obama_govt/otto_0.wav b/results/obama_govt/otto_0.wav deleted file mode 100644 index 0a188a4..0000000 Binary files a/results/obama_govt/otto_0.wav and /dev/null differ diff --git a/results/obama_govt/otto_1.wav b/results/obama_govt/otto_1.wav deleted file mode 100644 index fc45258..0000000 Binary files a/results/obama_govt/otto_1.wav and /dev/null differ diff --git a/results/otto_0.wav b/results/otto_0.wav deleted file mode 100644 index cae0d2c..0000000 Binary files a/results/otto_0.wav and /dev/null differ diff --git a/results/otto_1.wav b/results/otto_1.wav deleted file mode 100644 index 62cca42..0000000 Binary files a/results/otto_1.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/atkins_0.wav b/results/real_courage_is_when_you_know_your_licked/atkins_0.wav deleted file mode 100644 index 41aa30f..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/atkins_0.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/atkins_1.wav b/results/real_courage_is_when_you_know_your_licked/atkins_1.wav deleted file mode 100644 index bfe5384..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/atkins_1.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/dotrice_0.wav b/results/real_courage_is_when_you_know_your_licked/dotrice_0.wav deleted file mode 100644 index a260fb4..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/dotrice_0.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/dotrice_1.wav b/results/real_courage_is_when_you_know_your_licked/dotrice_1.wav deleted file mode 100644 index a4c221c..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/dotrice_1.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/grace_0.wav b/results/real_courage_is_when_you_know_your_licked/grace_0.wav deleted file mode 100644 index 948bf3f..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/grace_0.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/grace_1.wav b/results/real_courage_is_when_you_know_your_licked/grace_1.wav deleted file mode 100644 index 719a9ae..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/grace_1.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/harris_0.wav b/results/real_courage_is_when_you_know_your_licked/harris_0.wav deleted file mode 100644 index efbe48e..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/harris_0.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/harris_1.wav b/results/real_courage_is_when_you_know_your_licked/harris_1.wav deleted file mode 100644 index d5e30f9..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/harris_1.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/kennard_0.wav b/results/real_courage_is_when_you_know_your_licked/kennard_0.wav deleted file mode 100644 index d5be84d..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/kennard_0.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/kennard_1.wav b/results/real_courage_is_when_you_know_your_licked/kennard_1.wav deleted file mode 100644 index eeb928a..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/kennard_1.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/lescault_0.wav b/results/real_courage_is_when_you_know_your_licked/lescault_0.wav deleted file mode 100644 index 93cec8f..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/lescault_0.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/lescault_1.wav b/results/real_courage_is_when_you_know_your_licked/lescault_1.wav deleted file mode 100644 index c9c1b06..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/lescault_1.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/mol_0.wav b/results/real_courage_is_when_you_know_your_licked/mol_0.wav deleted file mode 100644 index b67a0b5..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/mol_0.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/mol_1.wav b/results/real_courage_is_when_you_know_your_licked/mol_1.wav deleted file mode 100644 index b5f317c..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/mol_1.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/otto_0.wav b/results/real_courage_is_when_you_know_your_licked/otto_0.wav deleted file mode 100644 index f8f0e32..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/otto_0.wav and /dev/null differ diff --git a/results/real_courage_is_when_you_know_your_licked/otto_1.wav b/results/real_courage_is_when_you_know_your_licked/otto_1.wav deleted file mode 100644 index 93e5698..0000000 Binary files a/results/real_courage_is_when_you_know_your_licked/otto_1.wav and /dev/null differ diff --git a/results/rolling_stone_review/atkins_0.wav b/results/rolling_stone_review/atkins_0.wav deleted file mode 100644 index 96eb892..0000000 Binary files a/results/rolling_stone_review/atkins_0.wav and /dev/null differ diff --git a/results/rolling_stone_review/atkins_1.wav b/results/rolling_stone_review/atkins_1.wav deleted file mode 100644 index dae7e2e..0000000 Binary files a/results/rolling_stone_review/atkins_1.wav and /dev/null differ diff --git a/results/rolling_stone_review/dotrice_0.wav b/results/rolling_stone_review/dotrice_0.wav deleted file mode 100644 index 4ba5628..0000000 Binary files a/results/rolling_stone_review/dotrice_0.wav and /dev/null differ diff --git a/results/rolling_stone_review/dotrice_1.wav b/results/rolling_stone_review/dotrice_1.wav deleted file mode 100644 index 9e56ced..0000000 Binary files a/results/rolling_stone_review/dotrice_1.wav and /dev/null differ diff --git a/results/rolling_stone_review/grace_0.wav b/results/rolling_stone_review/grace_0.wav deleted file mode 100644 index a6f2906..0000000 Binary files a/results/rolling_stone_review/grace_0.wav and /dev/null differ diff --git a/results/rolling_stone_review/grace_1.wav b/results/rolling_stone_review/grace_1.wav deleted file mode 100644 index b3034ba..0000000 Binary files a/results/rolling_stone_review/grace_1.wav and /dev/null differ diff --git a/results/rolling_stone_review/harris_0.wav b/results/rolling_stone_review/harris_0.wav deleted file mode 100644 index efd2a49..0000000 Binary files a/results/rolling_stone_review/harris_0.wav and /dev/null differ diff --git a/results/rolling_stone_review/harris_1.wav b/results/rolling_stone_review/harris_1.wav deleted file mode 100644 index 2b26577..0000000 Binary files a/results/rolling_stone_review/harris_1.wav and /dev/null differ diff --git a/results/rolling_stone_review/kennard_0.wav b/results/rolling_stone_review/kennard_0.wav deleted file mode 100644 index 1ccd4d7..0000000 Binary files a/results/rolling_stone_review/kennard_0.wav and /dev/null differ diff --git a/results/rolling_stone_review/kennard_1.wav b/results/rolling_stone_review/kennard_1.wav deleted file mode 100644 index ab901ad..0000000 Binary files a/results/rolling_stone_review/kennard_1.wav and /dev/null differ diff --git a/results/rolling_stone_review/lescault_0.wav b/results/rolling_stone_review/lescault_0.wav deleted file mode 100644 index 086814b..0000000 Binary files a/results/rolling_stone_review/lescault_0.wav and /dev/null differ diff --git a/results/rolling_stone_review/lescault_1.wav b/results/rolling_stone_review/lescault_1.wav deleted file mode 100644 index cdf1129..0000000 Binary files a/results/rolling_stone_review/lescault_1.wav and /dev/null differ diff --git a/results/rolling_stone_review/mol_0.wav b/results/rolling_stone_review/mol_0.wav deleted file mode 100644 index 6bfd20f..0000000 Binary files a/results/rolling_stone_review/mol_0.wav and /dev/null differ diff --git a/results/rolling_stone_review/mol_1.wav b/results/rolling_stone_review/mol_1.wav deleted file mode 100644 index c8edc13..0000000 Binary files a/results/rolling_stone_review/mol_1.wav and /dev/null differ diff --git a/results/rolling_stone_review/otto_0.wav b/results/rolling_stone_review/otto_0.wav deleted file mode 100644 index 36fd9a6..0000000 Binary files a/results/rolling_stone_review/otto_0.wav and /dev/null differ diff --git a/results/rolling_stone_review/otto_1.wav b/results/rolling_stone_review/otto_1.wav deleted file mode 100644 index 71b4460..0000000 Binary files a/results/rolling_stone_review/otto_1.wav and /dev/null differ diff --git a/results/spacecraft_interview/atkins_0.wav b/results/spacecraft_interview/atkins_0.wav deleted file mode 100644 index 17bf7aa..0000000 Binary files a/results/spacecraft_interview/atkins_0.wav and /dev/null differ diff --git a/results/spacecraft_interview/atkins_1.wav b/results/spacecraft_interview/atkins_1.wav deleted file mode 100644 index 0fb0e28..0000000 Binary files a/results/spacecraft_interview/atkins_1.wav and /dev/null differ diff --git a/results/spacecraft_interview/dotrice_0.wav b/results/spacecraft_interview/dotrice_0.wav deleted file mode 100644 index 38beeff..0000000 Binary files a/results/spacecraft_interview/dotrice_0.wav and /dev/null differ diff --git a/results/spacecraft_interview/dotrice_1.wav b/results/spacecraft_interview/dotrice_1.wav deleted file mode 100644 index a10f346..0000000 Binary files a/results/spacecraft_interview/dotrice_1.wav and /dev/null differ diff --git a/results/spacecraft_interview/grace_0.wav b/results/spacecraft_interview/grace_0.wav deleted file mode 100644 index 54270f3..0000000 Binary files a/results/spacecraft_interview/grace_0.wav and /dev/null differ diff --git a/results/spacecraft_interview/grace_1.wav b/results/spacecraft_interview/grace_1.wav deleted file mode 100644 index a5748ad..0000000 Binary files a/results/spacecraft_interview/grace_1.wav and /dev/null differ diff --git a/results/spacecraft_interview/harris_0.wav b/results/spacecraft_interview/harris_0.wav deleted file mode 100644 index bdd71fe..0000000 Binary files a/results/spacecraft_interview/harris_0.wav and /dev/null differ diff --git a/results/spacecraft_interview/harris_1.wav b/results/spacecraft_interview/harris_1.wav deleted file mode 100644 index 38f4f9b..0000000 Binary files a/results/spacecraft_interview/harris_1.wav and /dev/null differ diff --git a/results/spacecraft_interview/kennard_0.wav b/results/spacecraft_interview/kennard_0.wav deleted file mode 100644 index b4a6a43..0000000 Binary files a/results/spacecraft_interview/kennard_0.wav and /dev/null differ diff --git a/results/spacecraft_interview/kennard_1.wav b/results/spacecraft_interview/kennard_1.wav deleted file mode 100644 index 2398a60..0000000 Binary files a/results/spacecraft_interview/kennard_1.wav and /dev/null differ diff --git a/results/spacecraft_interview/lescault_0.wav b/results/spacecraft_interview/lescault_0.wav deleted file mode 100644 index 8787fb7..0000000 Binary files a/results/spacecraft_interview/lescault_0.wav and /dev/null differ diff --git a/results/spacecraft_interview/lescault_1.wav b/results/spacecraft_interview/lescault_1.wav deleted file mode 100644 index 4440c77..0000000 Binary files a/results/spacecraft_interview/lescault_1.wav and /dev/null differ diff --git a/results/spacecraft_interview/mol_0.wav b/results/spacecraft_interview/mol_0.wav deleted file mode 100644 index 0c22529..0000000 Binary files a/results/spacecraft_interview/mol_0.wav and /dev/null differ diff --git a/results/spacecraft_interview/mol_1.wav b/results/spacecraft_interview/mol_1.wav deleted file mode 100644 index 2a4244f..0000000 Binary files a/results/spacecraft_interview/mol_1.wav and /dev/null differ diff --git a/results/spacecraft_interview/otto_0.wav b/results/spacecraft_interview/otto_0.wav deleted file mode 100644 index c21b9dd..0000000 Binary files a/results/spacecraft_interview/otto_0.wav and /dev/null differ diff --git a/results/spacecraft_interview/otto_1.wav b/results/spacecraft_interview/otto_1.wav deleted file mode 100644 index 3971743..0000000 Binary files a/results/spacecraft_interview/otto_1.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/atkins_0.wav b/results/spongebob_stubbed_my_toe/atkins_0.wav deleted file mode 100644 index c6643cb..0000000 Binary files a/results/spongebob_stubbed_my_toe/atkins_0.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/atkins_1.wav b/results/spongebob_stubbed_my_toe/atkins_1.wav deleted file mode 100644 index 52771e0..0000000 Binary files a/results/spongebob_stubbed_my_toe/atkins_1.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/dotrice_0.wav b/results/spongebob_stubbed_my_toe/dotrice_0.wav deleted file mode 100644 index 34bd471..0000000 Binary files a/results/spongebob_stubbed_my_toe/dotrice_0.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/dotrice_1.wav b/results/spongebob_stubbed_my_toe/dotrice_1.wav deleted file mode 100644 index caaefe4..0000000 Binary files a/results/spongebob_stubbed_my_toe/dotrice_1.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/grace_0.wav b/results/spongebob_stubbed_my_toe/grace_0.wav deleted file mode 100644 index 55f5e9f..0000000 Binary files a/results/spongebob_stubbed_my_toe/grace_0.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/grace_1.wav b/results/spongebob_stubbed_my_toe/grace_1.wav deleted file mode 100644 index 60de0e0..0000000 Binary files a/results/spongebob_stubbed_my_toe/grace_1.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/harris_0.wav b/results/spongebob_stubbed_my_toe/harris_0.wav deleted file mode 100644 index df5024c..0000000 Binary files a/results/spongebob_stubbed_my_toe/harris_0.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/harris_1.wav b/results/spongebob_stubbed_my_toe/harris_1.wav deleted file mode 100644 index 6e59ed9..0000000 Binary files a/results/spongebob_stubbed_my_toe/harris_1.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/kennard_0.wav b/results/spongebob_stubbed_my_toe/kennard_0.wav deleted file mode 100644 index adf3962..0000000 Binary files a/results/spongebob_stubbed_my_toe/kennard_0.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/kennard_1.wav b/results/spongebob_stubbed_my_toe/kennard_1.wav deleted file mode 100644 index caddb9b..0000000 Binary files a/results/spongebob_stubbed_my_toe/kennard_1.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/lescault_0.wav b/results/spongebob_stubbed_my_toe/lescault_0.wav deleted file mode 100644 index ba316f0..0000000 Binary files a/results/spongebob_stubbed_my_toe/lescault_0.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/lescault_1.wav b/results/spongebob_stubbed_my_toe/lescault_1.wav deleted file mode 100644 index e2c5908..0000000 Binary files a/results/spongebob_stubbed_my_toe/lescault_1.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/mol_0.wav b/results/spongebob_stubbed_my_toe/mol_0.wav deleted file mode 100644 index d571e03..0000000 Binary files a/results/spongebob_stubbed_my_toe/mol_0.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/mol_1.wav b/results/spongebob_stubbed_my_toe/mol_1.wav deleted file mode 100644 index 2625fbf..0000000 Binary files a/results/spongebob_stubbed_my_toe/mol_1.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/otto_0.wav b/results/spongebob_stubbed_my_toe/otto_0.wav deleted file mode 100644 index 40e9f68..0000000 Binary files a/results/spongebob_stubbed_my_toe/otto_0.wav and /dev/null differ diff --git a/results/spongebob_stubbed_my_toe/otto_1.wav b/results/spongebob_stubbed_my_toe/otto_1.wav deleted file mode 100644 index e82b6b5..0000000 Binary files a/results/spongebob_stubbed_my_toe/otto_1.wav and /dev/null differ diff --git a/results/tacotron2_sample1/atkins_0.wav b/results/tacotron2_sample1/atkins_0.wav deleted file mode 100644 index 18c398c..0000000 Binary files a/results/tacotron2_sample1/atkins_0.wav and /dev/null differ diff --git a/results/tacotron2_sample1/atkins_1.wav b/results/tacotron2_sample1/atkins_1.wav deleted file mode 100644 index 7a5b4b2..0000000 Binary files a/results/tacotron2_sample1/atkins_1.wav and /dev/null differ diff --git a/results/tacotron2_sample1/dotrice_0.wav b/results/tacotron2_sample1/dotrice_0.wav deleted file mode 100644 index 80911f9..0000000 Binary files a/results/tacotron2_sample1/dotrice_0.wav and /dev/null differ diff --git a/results/tacotron2_sample1/dotrice_1.wav b/results/tacotron2_sample1/dotrice_1.wav deleted file mode 100644 index 877f4e6..0000000 Binary files a/results/tacotron2_sample1/dotrice_1.wav and /dev/null differ diff --git a/results/tacotron2_sample1/grace_0.wav b/results/tacotron2_sample1/grace_0.wav deleted file mode 100644 index ede35b3..0000000 Binary files a/results/tacotron2_sample1/grace_0.wav and /dev/null differ diff --git a/results/tacotron2_sample1/grace_1.wav b/results/tacotron2_sample1/grace_1.wav deleted file mode 100644 index faf3623..0000000 Binary files a/results/tacotron2_sample1/grace_1.wav and /dev/null differ diff --git a/results/tacotron2_sample1/harris_0.wav b/results/tacotron2_sample1/harris_0.wav deleted file mode 100644 index c944283..0000000 Binary files a/results/tacotron2_sample1/harris_0.wav and /dev/null differ diff --git a/results/tacotron2_sample1/harris_1.wav b/results/tacotron2_sample1/harris_1.wav deleted file mode 100644 index 10bcdf1..0000000 Binary files a/results/tacotron2_sample1/harris_1.wav and /dev/null differ diff --git a/results/tacotron2_sample1/kennard_0.wav b/results/tacotron2_sample1/kennard_0.wav deleted file mode 100644 index ca2481e..0000000 Binary files a/results/tacotron2_sample1/kennard_0.wav and /dev/null differ diff --git a/results/tacotron2_sample1/kennard_1.wav b/results/tacotron2_sample1/kennard_1.wav deleted file mode 100644 index c672ac2..0000000 Binary files a/results/tacotron2_sample1/kennard_1.wav and /dev/null differ diff --git a/results/tacotron2_sample1/lescault_0.wav b/results/tacotron2_sample1/lescault_0.wav deleted file mode 100644 index 38077e1..0000000 Binary files a/results/tacotron2_sample1/lescault_0.wav and /dev/null differ diff --git a/results/tacotron2_sample1/lescault_1.wav b/results/tacotron2_sample1/lescault_1.wav deleted file mode 100644 index 83c6f61..0000000 Binary files a/results/tacotron2_sample1/lescault_1.wav and /dev/null differ diff --git a/results/tacotron2_sample1/mol_0.wav b/results/tacotron2_sample1/mol_0.wav deleted file mode 100644 index 3eb0f10..0000000 Binary files a/results/tacotron2_sample1/mol_0.wav and /dev/null differ diff --git a/results/tacotron2_sample1/mol_1.wav b/results/tacotron2_sample1/mol_1.wav deleted file mode 100644 index cd580fe..0000000 Binary files a/results/tacotron2_sample1/mol_1.wav and /dev/null differ diff --git a/results/tacotron2_sample1/otto_0.wav b/results/tacotron2_sample1/otto_0.wav deleted file mode 100644 index 567ca58..0000000 Binary files a/results/tacotron2_sample1/otto_0.wav and /dev/null differ diff --git a/results/tacotron2_sample1/otto_1.wav b/results/tacotron2_sample1/otto_1.wav deleted file mode 100644 index b41c320..0000000 Binary files a/results/tacotron2_sample1/otto_1.wav and /dev/null differ diff --git a/results/tacotron2_sample2/atkins_0.wav b/results/tacotron2_sample2/atkins_0.wav deleted file mode 100644 index f4fee4c..0000000 Binary files a/results/tacotron2_sample2/atkins_0.wav and /dev/null differ diff --git a/results/tacotron2_sample2/atkins_1.wav b/results/tacotron2_sample2/atkins_1.wav deleted file mode 100644 index 99da680..0000000 Binary files a/results/tacotron2_sample2/atkins_1.wav and /dev/null differ diff --git a/results/tacotron2_sample2/dotrice_0.wav b/results/tacotron2_sample2/dotrice_0.wav deleted file mode 100644 index f3ae001..0000000 Binary files a/results/tacotron2_sample2/dotrice_0.wav and /dev/null differ diff --git a/results/tacotron2_sample2/dotrice_1.wav b/results/tacotron2_sample2/dotrice_1.wav deleted file mode 100644 index 3233e7e..0000000 Binary files a/results/tacotron2_sample2/dotrice_1.wav and /dev/null differ diff --git a/results/tacotron2_sample2/grace_0.wav b/results/tacotron2_sample2/grace_0.wav deleted file mode 100644 index aad4720..0000000 Binary files a/results/tacotron2_sample2/grace_0.wav and /dev/null differ diff --git a/results/tacotron2_sample2/grace_1.wav b/results/tacotron2_sample2/grace_1.wav deleted file mode 100644 index d9344d0..0000000 Binary files a/results/tacotron2_sample2/grace_1.wav and /dev/null differ diff --git a/results/tacotron2_sample2/harris_0.wav b/results/tacotron2_sample2/harris_0.wav deleted file mode 100644 index da6edba..0000000 Binary files a/results/tacotron2_sample2/harris_0.wav and /dev/null differ diff --git a/results/tacotron2_sample2/harris_1.wav b/results/tacotron2_sample2/harris_1.wav deleted file mode 100644 index 92ab839..0000000 Binary files a/results/tacotron2_sample2/harris_1.wav and /dev/null differ diff --git a/results/tacotron2_sample2/kennard_0.wav b/results/tacotron2_sample2/kennard_0.wav deleted file mode 100644 index 789d3f7..0000000 Binary files a/results/tacotron2_sample2/kennard_0.wav and /dev/null differ diff --git a/results/tacotron2_sample2/kennard_1.wav b/results/tacotron2_sample2/kennard_1.wav deleted file mode 100644 index efcfa16..0000000 Binary files a/results/tacotron2_sample2/kennard_1.wav and /dev/null differ diff --git a/results/tacotron2_sample2/lescault_0.wav b/results/tacotron2_sample2/lescault_0.wav deleted file mode 100644 index d83875e..0000000 Binary files a/results/tacotron2_sample2/lescault_0.wav and /dev/null differ diff --git a/results/tacotron2_sample2/lescault_1.wav b/results/tacotron2_sample2/lescault_1.wav deleted file mode 100644 index ae2bf2b..0000000 Binary files a/results/tacotron2_sample2/lescault_1.wav and /dev/null differ diff --git a/results/tacotron2_sample2/mol_0.wav b/results/tacotron2_sample2/mol_0.wav deleted file mode 100644 index 69dbfb9..0000000 Binary files a/results/tacotron2_sample2/mol_0.wav and /dev/null differ diff --git a/results/tacotron2_sample2/mol_1.wav b/results/tacotron2_sample2/mol_1.wav deleted file mode 100644 index 5cb1400..0000000 Binary files a/results/tacotron2_sample2/mol_1.wav and /dev/null differ diff --git a/results/tacotron2_sample2/otto_0.wav b/results/tacotron2_sample2/otto_0.wav deleted file mode 100644 index 7a6f510..0000000 Binary files a/results/tacotron2_sample2/otto_0.wav and /dev/null differ diff --git a/results/tacotron2_sample2/otto_1.wav b/results/tacotron2_sample2/otto_1.wav deleted file mode 100644 index f7eacfe..0000000 Binary files a/results/tacotron2_sample2/otto_1.wav and /dev/null differ diff --git a/results/tacotron2_sample3/atkins_0.wav b/results/tacotron2_sample3/atkins_0.wav deleted file mode 100644 index 815b9e3..0000000 Binary files a/results/tacotron2_sample3/atkins_0.wav and /dev/null differ diff --git a/results/tacotron2_sample3/atkins_1.wav b/results/tacotron2_sample3/atkins_1.wav deleted file mode 100644 index 6a63d19..0000000 Binary files a/results/tacotron2_sample3/atkins_1.wav and /dev/null differ diff --git a/results/tacotron2_sample3/dotrice_0.wav b/results/tacotron2_sample3/dotrice_0.wav deleted file mode 100644 index 69e4e9c..0000000 Binary files a/results/tacotron2_sample3/dotrice_0.wav and /dev/null differ diff --git a/results/tacotron2_sample3/dotrice_1.wav b/results/tacotron2_sample3/dotrice_1.wav deleted file mode 100644 index e469102..0000000 Binary files a/results/tacotron2_sample3/dotrice_1.wav and /dev/null differ diff --git a/results/tacotron2_sample3/grace_0.wav b/results/tacotron2_sample3/grace_0.wav deleted file mode 100644 index 7189ff6..0000000 Binary files a/results/tacotron2_sample3/grace_0.wav and /dev/null differ diff --git a/results/tacotron2_sample3/grace_1.wav b/results/tacotron2_sample3/grace_1.wav deleted file mode 100644 index 2aa4ac6..0000000 Binary files a/results/tacotron2_sample3/grace_1.wav and /dev/null differ diff --git a/results/tacotron2_sample3/harris_0.wav b/results/tacotron2_sample3/harris_0.wav deleted file mode 100644 index 4697b5f..0000000 Binary files a/results/tacotron2_sample3/harris_0.wav and /dev/null differ diff --git a/results/tacotron2_sample3/harris_1.wav b/results/tacotron2_sample3/harris_1.wav deleted file mode 100644 index 56d44a3..0000000 Binary files a/results/tacotron2_sample3/harris_1.wav and /dev/null differ diff --git a/results/tacotron2_sample3/kennard_0.wav b/results/tacotron2_sample3/kennard_0.wav deleted file mode 100644 index 5415352..0000000 Binary files a/results/tacotron2_sample3/kennard_0.wav and /dev/null differ diff --git a/results/tacotron2_sample3/kennard_1.wav b/results/tacotron2_sample3/kennard_1.wav deleted file mode 100644 index c8b34eb..0000000 Binary files a/results/tacotron2_sample3/kennard_1.wav and /dev/null differ diff --git a/results/tacotron2_sample3/lescault_0.wav b/results/tacotron2_sample3/lescault_0.wav deleted file mode 100644 index 92f12a9..0000000 Binary files a/results/tacotron2_sample3/lescault_0.wav and /dev/null differ diff --git a/results/tacotron2_sample3/lescault_1.wav b/results/tacotron2_sample3/lescault_1.wav deleted file mode 100644 index e3b3d1c..0000000 Binary files a/results/tacotron2_sample3/lescault_1.wav and /dev/null differ diff --git a/results/tacotron2_sample3/mol_0.wav b/results/tacotron2_sample3/mol_0.wav deleted file mode 100644 index 34fa184..0000000 Binary files a/results/tacotron2_sample3/mol_0.wav and /dev/null differ diff --git a/results/tacotron2_sample3/mol_1.wav b/results/tacotron2_sample3/mol_1.wav deleted file mode 100644 index df996b5..0000000 Binary files a/results/tacotron2_sample3/mol_1.wav and /dev/null differ diff --git a/results/tacotron2_sample3/otto_0.wav b/results/tacotron2_sample3/otto_0.wav deleted file mode 100644 index cae7fa2..0000000 Binary files a/results/tacotron2_sample3/otto_0.wav and /dev/null differ diff --git a/results/tacotron2_sample3/otto_1.wav b/results/tacotron2_sample3/otto_1.wav deleted file mode 100644 index cccf993..0000000 Binary files a/results/tacotron2_sample3/otto_1.wav and /dev/null differ diff --git a/results/tacotron2_sample4/atkins_0.wav b/results/tacotron2_sample4/atkins_0.wav deleted file mode 100644 index d2b74d4..0000000 Binary files a/results/tacotron2_sample4/atkins_0.wav and /dev/null differ diff --git a/results/tacotron2_sample4/atkins_1.wav b/results/tacotron2_sample4/atkins_1.wav deleted file mode 100644 index 8aab030..0000000 Binary files a/results/tacotron2_sample4/atkins_1.wav and /dev/null differ diff --git a/results/tacotron2_sample4/dotrice_0.wav b/results/tacotron2_sample4/dotrice_0.wav deleted file mode 100644 index 2788734..0000000 Binary files a/results/tacotron2_sample4/dotrice_0.wav and /dev/null differ diff --git a/results/tacotron2_sample4/dotrice_1.wav b/results/tacotron2_sample4/dotrice_1.wav deleted file mode 100644 index eb2f913..0000000 Binary files a/results/tacotron2_sample4/dotrice_1.wav and /dev/null differ diff --git a/results/tacotron2_sample4/grace_0.wav b/results/tacotron2_sample4/grace_0.wav deleted file mode 100644 index 25a655d..0000000 Binary files a/results/tacotron2_sample4/grace_0.wav and /dev/null differ diff --git a/results/tacotron2_sample4/grace_1.wav b/results/tacotron2_sample4/grace_1.wav deleted file mode 100644 index 3af7218..0000000 Binary files a/results/tacotron2_sample4/grace_1.wav and /dev/null differ diff --git a/results/tacotron2_sample4/harris_0.wav b/results/tacotron2_sample4/harris_0.wav deleted file mode 100644 index fec476d..0000000 Binary files a/results/tacotron2_sample4/harris_0.wav and /dev/null differ diff --git a/results/tacotron2_sample4/harris_1.wav b/results/tacotron2_sample4/harris_1.wav deleted file mode 100644 index 9f0c464..0000000 Binary files a/results/tacotron2_sample4/harris_1.wav and /dev/null differ diff --git a/results/tacotron2_sample4/kennard_0.wav b/results/tacotron2_sample4/kennard_0.wav deleted file mode 100644 index 3daee6d..0000000 Binary files a/results/tacotron2_sample4/kennard_0.wav and /dev/null differ diff --git a/results/tacotron2_sample4/kennard_1.wav b/results/tacotron2_sample4/kennard_1.wav deleted file mode 100644 index fc39ed4..0000000 Binary files a/results/tacotron2_sample4/kennard_1.wav and /dev/null differ diff --git a/results/tacotron2_sample4/lescault_0.wav b/results/tacotron2_sample4/lescault_0.wav deleted file mode 100644 index d119a62..0000000 Binary files a/results/tacotron2_sample4/lescault_0.wav and /dev/null differ diff --git a/results/tacotron2_sample4/lescault_1.wav b/results/tacotron2_sample4/lescault_1.wav deleted file mode 100644 index 53eb7dd..0000000 Binary files a/results/tacotron2_sample4/lescault_1.wav and /dev/null differ diff --git a/results/tacotron2_sample4/mol_0.wav b/results/tacotron2_sample4/mol_0.wav deleted file mode 100644 index 726bc72..0000000 Binary files a/results/tacotron2_sample4/mol_0.wav and /dev/null differ diff --git a/results/tacotron2_sample4/mol_1.wav b/results/tacotron2_sample4/mol_1.wav deleted file mode 100644 index bdb1578..0000000 Binary files a/results/tacotron2_sample4/mol_1.wav and /dev/null differ diff --git a/results/tacotron2_sample4/otto_0.wav b/results/tacotron2_sample4/otto_0.wav deleted file mode 100644 index 95fd213..0000000 Binary files a/results/tacotron2_sample4/otto_0.wav and /dev/null differ diff --git a/results/tacotron2_sample4/otto_1.wav b/results/tacotron2_sample4/otto_1.wav deleted file mode 100644 index 0863ab6..0000000 Binary files a/results/tacotron2_sample4/otto_1.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/atkins_0.wav b/results/watts_this_is_the_real_secret_of_life/atkins_0.wav deleted file mode 100644 index 70edb00..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/atkins_0.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/atkins_1.wav b/results/watts_this_is_the_real_secret_of_life/atkins_1.wav deleted file mode 100644 index 3d5b51c..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/atkins_1.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/dotrice_0.wav b/results/watts_this_is_the_real_secret_of_life/dotrice_0.wav deleted file mode 100644 index 4e07ffc..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/dotrice_0.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/dotrice_1.wav b/results/watts_this_is_the_real_secret_of_life/dotrice_1.wav deleted file mode 100644 index 364c274..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/dotrice_1.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/grace_0.wav b/results/watts_this_is_the_real_secret_of_life/grace_0.wav deleted file mode 100644 index bd57475..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/grace_0.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/grace_1.wav b/results/watts_this_is_the_real_secret_of_life/grace_1.wav deleted file mode 100644 index 00c977d..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/grace_1.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/harris_0.wav b/results/watts_this_is_the_real_secret_of_life/harris_0.wav deleted file mode 100644 index 813f8be..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/harris_0.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/harris_1.wav b/results/watts_this_is_the_real_secret_of_life/harris_1.wav deleted file mode 100644 index 2d7e2fb..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/harris_1.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/kennard_0.wav b/results/watts_this_is_the_real_secret_of_life/kennard_0.wav deleted file mode 100644 index f19e107..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/kennard_0.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/kennard_1.wav b/results/watts_this_is_the_real_secret_of_life/kennard_1.wav deleted file mode 100644 index 4c11736..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/kennard_1.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/lescault_0.wav b/results/watts_this_is_the_real_secret_of_life/lescault_0.wav deleted file mode 100644 index 0ed5b37..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/lescault_0.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/lescault_1.wav b/results/watts_this_is_the_real_secret_of_life/lescault_1.wav deleted file mode 100644 index f8e6882..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/lescault_1.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/mol_0.wav b/results/watts_this_is_the_real_secret_of_life/mol_0.wav deleted file mode 100644 index 3ba2973..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/mol_0.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/mol_1.wav b/results/watts_this_is_the_real_secret_of_life/mol_1.wav deleted file mode 100644 index 4202a14..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/mol_1.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/otto_0.wav b/results/watts_this_is_the_real_secret_of_life/otto_0.wav deleted file mode 100644 index 7e8562a..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/otto_0.wav and /dev/null differ diff --git a/results/watts_this_is_the_real_secret_of_life/otto_1.wav b/results/watts_this_is_the_real_secret_of_life/otto_1.wav deleted file mode 100644 index 3f36e75..0000000 Binary files a/results/watts_this_is_the_real_secret_of_life/otto_1.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/atkins_0.wav b/results/wilde_nowadays_people_know_the_price/atkins_0.wav deleted file mode 100644 index 1c20274..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/atkins_0.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/atkins_1.wav b/results/wilde_nowadays_people_know_the_price/atkins_1.wav deleted file mode 100644 index e6b1b3a..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/atkins_1.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/dotrice_0.wav b/results/wilde_nowadays_people_know_the_price/dotrice_0.wav deleted file mode 100644 index 3e5d25d..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/dotrice_0.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/dotrice_1.wav b/results/wilde_nowadays_people_know_the_price/dotrice_1.wav deleted file mode 100644 index 77a7b6e..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/dotrice_1.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/grace_0.wav b/results/wilde_nowadays_people_know_the_price/grace_0.wav deleted file mode 100644 index bc26046..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/grace_0.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/grace_1.wav b/results/wilde_nowadays_people_know_the_price/grace_1.wav deleted file mode 100644 index 82eef8e..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/grace_1.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/harris_0.wav b/results/wilde_nowadays_people_know_the_price/harris_0.wav deleted file mode 100644 index ee3be1a..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/harris_0.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/harris_1.wav b/results/wilde_nowadays_people_know_the_price/harris_1.wav deleted file mode 100644 index e8e0c61..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/harris_1.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/kennard_0.wav b/results/wilde_nowadays_people_know_the_price/kennard_0.wav deleted file mode 100644 index 3544274..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/kennard_0.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/kennard_1.wav b/results/wilde_nowadays_people_know_the_price/kennard_1.wav deleted file mode 100644 index 2407ade..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/kennard_1.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/lescault_0.wav b/results/wilde_nowadays_people_know_the_price/lescault_0.wav deleted file mode 100644 index 49f0c7d..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/lescault_0.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/lescault_1.wav b/results/wilde_nowadays_people_know_the_price/lescault_1.wav deleted file mode 100644 index 5211d79..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/lescault_1.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/mol_0.wav b/results/wilde_nowadays_people_know_the_price/mol_0.wav deleted file mode 100644 index 5cf0694..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/mol_0.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/mol_1.wav b/results/wilde_nowadays_people_know_the_price/mol_1.wav deleted file mode 100644 index 23d41a7..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/mol_1.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/otto_0.wav b/results/wilde_nowadays_people_know_the_price/otto_0.wav deleted file mode 100644 index d672e72..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/otto_0.wav and /dev/null differ diff --git a/results/wilde_nowadays_people_know_the_price/otto_1.wav b/results/wilde_nowadays_people_know_the_price/otto_1.wav deleted file mode 100644 index 8b424f5..0000000 Binary files a/results/wilde_nowadays_people_know_the_price/otto_1.wav and /dev/null differ diff --git a/sweep.py b/sweep.py index f62246d..13b40fc 100644 --- a/sweep.py +++ b/sweep.py @@ -24,19 +24,24 @@ def permutations(args): if __name__ == '__main__': - fname = 'Y:\\libritts\\test-clean\\transcribed-brief-w2v.tsv' - outpath_base = 'D:\\tmp\\tortoise-tts-eval\\std_sweep3' + fname = 'Y:\\clips\\books2\\subset512-oco.tsv' + stop_after = 128 + outpath_base = 'D:\\tmp\\tortoise-tts-eval\\sweep' outpath_real = 'D:\\tmp\\tortoise-tts-eval\\real' arg_ranges = { - 'top_p': [.3,.4,.5,.6], - 'temperature': [.5, .6], + 'top_p': [.5, 1], + 'temperature': [.5, 1], + 'diffusion_temperature': [.6, 1], + 'cond_free_k': [0, 1, 4], + 'repetition_penalty': [1.0, 2.0] } cfgs = permutations(arg_ranges) shuffle(cfgs) for cfg in cfgs: - outpath = os.path.join(outpath_base, f'{cfg["top_p"]}_{cfg["temperature"]}') + cfg_desc = '_'.join([f'{k}-{v}' for k,v in cfg.items()]) + outpath = os.path.join(outpath_base, f'{cfg_desc}') os.makedirs(outpath, exist_ok=True) os.makedirs(outpath_real, exist_ok=True) with open(fname, 'r', encoding='utf-8') as f: @@ -45,15 +50,14 @@ if __name__ == '__main__': recorder = open(os.path.join(outpath, 'transcript.tsv'), 'w', encoding='utf-8') tts = TextToSpeech() for e, line in enumerate(lines): + if e >= stop_after: + break transcript = line[0] - if len(transcript) > 120: - continue # We need to support this, but cannot yet. path = os.path.join(os.path.dirname(fname), line[1]) cond_audio = load_audio(path, 22050) torchaudio.save(os.path.join(outpath_real, os.path.basename(line[1])), cond_audio, 22050) - sample = tts.tts(transcript, [cond_audio, cond_audio], num_autoregressive_samples=256, k=1, diffusion_iterations=200, - repetition_penalty=2.0, length_penalty=2, temperature=.5, top_p=.5, - diffusion_temperature=.7, cond_free_k=2, **cfg) + sample = tts.tts(transcript, [cond_audio, cond_audio], num_autoregressive_samples=256, + k=1, diffusion_iterations=70, length_penalty=1.0, **cfg) down = torchaudio.functional.resample(sample, 24000, 22050) fout_path = os.path.join(outpath, os.path.basename(line[1])) torchaudio.save(fout_path, down.squeeze(0), 22050)