Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
albertz committed Jan 13, 2025
1 parent c1574bb commit f66f6e3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions users/zeyer/experiments/exp2024_04_23_baselines/ctc_recog_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,29 @@ def py():
"lm_state_lru_initial_cache_size": 2**16,
},
),
(
"beam4-beamToken16-cache1024",
{
"n_best": 16,
"beam_size": 4,
"beam_size_token": 16,
"beam_threshold": 14,
"batch_size": 5_000 * ctc_model.definition.batch_size_factor,
"torch_amp": {"dtype": "bfloat16"},
"lm_state_lru_initial_cache_size": 1024,
},
),
(
"beam4-beamToken16-cache1024-f32",
{
"n_best": 16,
"beam_size": 4,
"beam_size_token": 16,
"beam_threshold": 14,
"batch_size": 5_000 * ctc_model.definition.batch_size_factor,
"lm_state_lru_initial_cache_size": 1024,
},
),
]:
res = recog_model(
task=task,
Expand Down

0 comments on commit f66f6e3

Please sign in to comment.