Skip to content

Commit a06c3ab

Browse files
committed
fix bug
1 parent 4386de1 commit a06c3ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/easevoice/soundstorm/auto_reg/models/t2s_lightning_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ def __init__(self, config, output_dir, is_train=True):
3232
if is_train:
3333
self.automatic_optimization = False
3434
self.save_hyperparameters()
35-
self.eval_dir.mkdir(parents=True, exist_ok=True)
3635
self.eval_dir = output_dir / "eval"
36+
self.eval_dir.mkdir(parents=True, exist_ok=True)
3737

3838
def training_step(self, batch: Dict, batch_idx: int): # pyright: ignore
3939
opt: Any = self.optimizers()

0 commit comments

Comments
 (0)