Skip to content

Commit c137ce7

Browse files
authored
Fix block size (#54)
1 parent 774e342 commit c137ce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

amt/inference/transcribe.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
torch._inductor.config.fx_graph_cache = True
3636

3737
MAX_SEQ_LEN = 4096
38-
MAX_BLOCK_LEN = 2048
38+
MAX_BLOCK_LEN = 4096
3939
LEN_MS = 30000
4040
STRIDE_FACTOR = 3
4141
CHUNK_LEN_MS = LEN_MS // STRIDE_FACTOR

0 commit comments

Comments
 (0)