Skip to content

Commit

Permalink
Fix block size (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
loubbrad authored Aug 30, 2024
1 parent 774e342 commit c137ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amt/inference/transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
torch._inductor.config.fx_graph_cache = True

MAX_SEQ_LEN = 4096
MAX_BLOCK_LEN = 2048
MAX_BLOCK_LEN = 4096
LEN_MS = 30000
STRIDE_FACTOR = 3
CHUNK_LEN_MS = LEN_MS // STRIDE_FACTOR
Expand Down

0 comments on commit c137ce7

Please sign in to comment.