Skip to content

Commit

Permalink
more realistic values
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains authored Jul 22, 2024
1 parent 96e4f72 commit 04b9c1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions train_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@

duration_predictor = DurationPredictor(
transformer = dict(
dim = 80,
depth = 2,
dim = 512,
depth = 6,
)
)

e2tts = E2TTS(
duration_predictor = duration_predictor,
transformer = dict(
dim = 80,
depth = 4,
dim = 512,
depth = 12,
skip_connect_type = 'concat'
),
)
Expand Down

0 comments on commit 04b9c1c

Please sign in to comment.