Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jstzwj committed Nov 17, 2022
1 parent b6ad005 commit 7d528ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configs/48k.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"eval_interval": 1000,
"seed": 1234,
"max_epochs": 20000,
"learning_rate": 8e-4,
"learning_rate": 4e-4,
"betas": [0.8, 0.99],
"eps": 1e-9,
"batch_size": 32,
Expand Down
2 changes: 1 addition & 1 deletion hifigan/hub/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CKPT_URLS = {
"hifigan-48k": "https://github.com/vtuber-plan/hifi-gan/releases/download/v0.1.2/hifigan-48k-20DAC6A62B1508F62BA33A66CC125BBB.pt",
"hifigan-48k": "https://github.com/vtuber-plan/hifi-gan/releases/download/v0.1.3/hifigan-48k-59CB718B329ED0167F3BBD9DDC47F443.pt",
}
import torch
from ..model.generators.generator import Generator
Expand Down
2 changes: 1 addition & 1 deletion save_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ def main():
ckpt_path = last_ckpt

print(ckpt_path)
save("logs/lightning_logs_v1/version_8/checkpoints/last.ckpt")
save(ckpt_path)
if __name__ == "__main__":
main()

0 comments on commit 7d528ae

Please sign in to comment.