-
Notifications
You must be signed in to change notification settings - Fork 568
Add AESDD dataset #2437
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
Closed
Closed
Add AESDD dataset #2437
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7bcfe5a
Add AESDD dataset
mina-parham af689db
fix dataset not visible
isaac-chung 21e4fb9
Merge branch 'maeb' into AddDataset/AESDD
isaac-chung ce19376
Update dataset path and revision
30253a2
Merge branch 'maeb' into AddDataset/AESDD
isaac-chung 833f60e
format citation
isaac-chung f7b5e25
clean up
isaac-chung f80abb8
Add trust_remote_code: True
45a5a3e
Merge branch 'AddDataset/AESDD' of https://github.com/embeddings-benc…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| from __future__ import annotations | ||
|
|
||
| from mteb.abstasks.Audio.AbsTaskAudioClassification import ( | ||
| AbsTaskAudioClassification, | ||
| ) | ||
| from mteb.abstasks.TaskMetadata import TaskMetadata | ||
|
|
||
|
|
||
| class AESDDClassification(AbsTaskAudioClassification): | ||
| metadata = TaskMetadata( | ||
| name="AESDD", | ||
| description="Speech Emotion Recognition Dataset.", | ||
| reference="https://m3c.web.auth.gr/research/aesdd-speech-emotion-recognition/", | ||
| dataset={ | ||
| "path": "EdwardLin2023/AESDD", | ||
| "revision": "5ecde28811adf538a7699b76291a99503e3734f5", | ||
| "trust_remote_code": True, | ||
| }, | ||
| type="AudioClassification", | ||
| category="a2t", | ||
| eval_splits=["train"], | ||
| eval_langs=["eng-Latn"], | ||
| main_score="accuracy", | ||
| date=("2018-01-01", "2019-01-01"), | ||
| domains=["Spoken"], | ||
| task_subtypes=["Emotion recognition"], | ||
| license="cc-by-sa-4.0", | ||
| annotations_creators="human-annotated", | ||
| dialect=[], | ||
| modalities=["audio"], | ||
| sample_creation="found", | ||
| bibtex_citation=r""" | ||
| @article{vryzas2018speech, | ||
| author = {Vryzas, Nikolaos and Kotsakis, Rigas and Liatsou, Aikaterini and Dimoulas, Charalampos A and Kalliris, George}, | ||
| journal = {Journal of the Audio Engineering Society}, | ||
| number = {6}, | ||
| pages = {457--467}, | ||
| publisher = {Audio Engineering Society}, | ||
| title = {Speech emotion recognition for performance interaction}, | ||
| volume = {66}, | ||
| year = {2018}, | ||
| } | ||
| """, | ||
| descriptive_stats={ | ||
| "n_samples": {"train": 604}, | ||
| }, | ||
| ) | ||
|
|
||
| label_column_name: str = "label" | ||
| is_cross_validation: bool = True | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.