Skip to content

Commit de7c5dd

Browse files
committedJun 11, 2022
Typofix
1 parent fc4a310 commit de7c5dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎scripts/tortoise_tts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
device=args.device, autoregressive_batch_size=args.batch_size)
211211
gen_settings = {
212212
'use_deterministic_seed': seed,
213-
'varbose': not args.quiet,
213+
'verbose': not args.quiet,
214214
'k': args.candidates,
215215
'preset': args.preset,
216216
}

‎tortoise/api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def get_conditioning_latents(self, voice_samples, return_mels=False):
270270
if not isinstance(voice_samples, list):
271271
voice_samples = [voice_samples]
272272
for vs in voice_samples:
273-
auto_conds.append(format_conditioning(vs, self.device))
273+
auto_conds.append(format_conditioning(vs, device=self.device))
274274
auto_conds = torch.stack(auto_conds, dim=1)
275275
self.autoregressive = self.autoregressive.to(self.device)
276276
auto_latent = self.autoregressive.get_conditioning(auto_conds)

0 commit comments

Comments
 (0)
Please sign in to comment.