austinroy commited on
Commit
b9e3af9
·
1 Parent(s): f75899b

Initial commit

Browse files
echobox/src/echobox/tts.py CHANGED
@@ -100,7 +100,7 @@ class Conditionals:
100
  return cls(T3Cond(**kwargs['t3']), kwargs['gen'])
101
 
102
 
103
- class ChatterboxTTS:
104
  ENC_COND_LEN = 6 * S3_SR
105
  DEC_COND_LEN = 10 * S3GEN_SR
106
 
 
100
  return cls(T3Cond(**kwargs['t3']), kwargs['gen'])
101
 
102
 
103
+ class EchoBoxTTS:
104
  ENC_COND_LEN = 6 * S3_SR
105
  DEC_COND_LEN = 10 * S3GEN_SR
106
 
echobox/src/echobox/vc.py CHANGED
@@ -9,7 +9,7 @@ from .models.s3tokenizer import S3_SR
9
  from .models.s3gen import S3GEN_SR, S3Gen
10
 
11
 
12
- REPO_ID = "ResembleAI/chatterbox"
13
 
14
 
15
  class ChatterboxVC:
 
9
  from .models.s3gen import S3GEN_SR, S3Gen
10
 
11
 
12
+ REPO_ID = "Lookingsoft-team/EchoBoxTTS"
13
 
14
 
15
  class ChatterboxVC: