-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[VM] Add whisper feature extractor to Relax VM #280
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MLC local ci setup.
This PR adds CI for Windows and macOS building, which may take 90-100 mins. Co-authored-by: Siyuan Feng <[email protected]>
junrushao
force-pushed
the
mlc
branch
8 times, most recently
from
September 18, 2023 18:59
50a4dce
to
7bc1f84
Compare
junrushao
force-pushed
the
mlc
branch
2 times, most recently
from
September 24, 2023 15:58
b4a50df
to
10c3c4e
Compare
junrushao
force-pushed
the
mlc
branch
5 times, most recently
from
October 8, 2023 01:54
e5ca38d
to
62c0526
Compare
junrushao
force-pushed
the
mlc
branch
3 times, most recently
from
November 6, 2023 15:49
3001b20
to
2064d59
Compare
MasterJH5574
force-pushed
the
mlc
branch
2 times, most recently
from
November 16, 2023 15:55
5e06dab
to
d1074dc
Compare
MasterJH5574
force-pushed
the
mlc
branch
2 times, most recently
from
February 20, 2024 14:55
f8b2ff1
to
59c3556
Compare
MasterJH5574
force-pushed
the
mlc
branch
2 times, most recently
from
March 4, 2024 22:24
f178458
to
4b79ceb
Compare
MasterJH5574
force-pushed
the
mlc
branch
4 times, most recently
from
March 17, 2024 02:08
d20be8b
to
c06ec1f
Compare
MasterJH5574
force-pushed
the
mlc
branch
3 times, most recently
from
March 24, 2024 00:36
1ce4a34
to
dcdd541
Compare
MasterJH5574
force-pushed
the
mlc
branch
2 times, most recently
from
April 12, 2024 21:11
0c81069
to
ae057a2
Compare
MasterJH5574
force-pushed
the
mlc
branch
3 times, most recently
from
May 15, 2024 05:49
597664a
to
ce58d63
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pr brings Whisper's feature extractor to Relax VM. The feature extractor extracts mel-filter bank features from raw speech data. The deviation between the current implementation and huggingface's
WhisperFeatureExtractor._np_extract_fbank_features
is less than 1e-4.