robinwitch commited on
Commit
279199b
·
1 Parent(s): 5092a01
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -524,6 +524,7 @@ class BaseTrainer(object):
524
 
525
  def _create_cuda_model(self):
526
  args = self.args
 
527
  args.num_quantizers = 6
528
  args.shared_codebook = False
529
  args.quantize_dropout_prob = 0.2
@@ -731,8 +732,6 @@ def syntalker(audio_path,sample_stratege):
731
 
732
  # return one intance of trainer
733
  trainer = BaseTrainer(args, ap = audio_path)
734
- other_tools.load_checkpoints(trainer.model, args.test_ckpt, args.g_name)
735
-
736
  result = trainer.test_demo(999)
737
  return result
738
 
 
524
 
525
  def _create_cuda_model(self):
526
  args = self.args
527
+ other_tools.load_checkpoints(self.model, args.test_ckpt, args.g_name)
528
  args.num_quantizers = 6
529
  args.shared_codebook = False
530
  args.quantize_dropout_prob = 0.2
 
732
 
733
  # return one intance of trainer
734
  trainer = BaseTrainer(args, ap = audio_path)
 
 
735
  result = trainer.test_demo(999)
736
  return result
737