Skip to content

Commit

Permalink
whisper: fix typo on alignment heads enum
Browse files Browse the repository at this point in the history
  • Loading branch information
denersc committed Jan 25, 2024
1 parent 825387a commit 2684bcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion whisper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ static const std::map<whisper_alignment_heads_preset, whisper_aheads> g_aheads {
{ WHISPER_AHEADS_MEDIUM_EN, {18, g_aheads_medium_en} },
{ WHISPER_AHEADS_MEDIUM, {6, g_aheads_medium} },
{ WHISPER_AHEADS_LARGE_V1, {9, g_aheads_large_v1} },
{ WHISPER_AHEADS_LARVE_V2, {23, g_aheads_large_v2} },
{ WHISPER_AHEADS_LARGE_V2, {23, g_aheads_large_v2} },
{ WHISPER_AHEADS_LARGE_V3, {10, g_aheads_large_v3} },
};

Expand Down
2 changes: 1 addition & 1 deletion whisper.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ extern "C" {
WHISPER_AHEADS_MEDIUM_EN,
WHISPER_AHEADS_MEDIUM,
WHISPER_AHEADS_LARGE_V1,
WHISPER_AHEADS_LARVE_V2,
WHISPER_AHEADS_LARGE_V2,
WHISPER_AHEADS_LARGE_V3,
};

Expand Down

0 comments on commit 2684bcf

Please sign in to comment.