Skip to content

Commit

Permalink
allow for attending to nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Jul 15, 2024
1 parent 9629967 commit 37c7ff7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion e2_tts_pytorch/e2_tts.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ def __init__(
dim_head = 64,
num_gateloop_layers = 1,
dropout = 0.1,
attn_kwargs: dict = dict(),
attn_kwargs: dict = dict(
gate_value_heads = True
),
ff_kwargs: dict = dict()
):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "e2-tts-pytorch"
version = "0.0.30"
version = "0.0.31"
description = "E2-TTS in Pytorch"
authors = [
{ name = "Phil Wang", email = "[email protected]" }
Expand Down

0 comments on commit 37c7ff7

Please sign in to comment.