Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion mteb/tasks/audio/any_2_any_retrieval/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from .jl_corpus import JLCorpusA2TRetrieval, JLCorpusT2ARetrieval
from .libri_tts import LibriTTSA2TRetrieval, LibriTTST2ARetrieval
from .macs import MACSA2TRetrieval, MACST2ARetrieval
from .multilingual import *
from .multilingual import JamAltArtist, JamAltLyricsA2T, JamAltLyricsT2A
from .music_caps import MusicCapsA2TRetrieval, MusicCapsT2ARetrieval
from .sound_descs import SoundDescsA2TRetrieval, SoundDescsT2ARetrieval
from .spoken_s_qu_ad import SpokenSQuADT2ARetrieval
Expand Down Expand Up @@ -44,6 +44,9 @@
"HiFiTTST2ARetrieval",
"JLCorpusA2TRetrieval",
"JLCorpusT2ARetrieval",
"JamAltArtist",
"JamAltLyricsA2T",
"JamAltLyricsT2A",
"LibriTTSA2TRetrieval",
"LibriTTST2ARetrieval",
"MACSA2TRetrieval",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
from .esc50 import ESC50ZeroshotClassification
from .ravdess import RavdessZeroshotClassification
from .speech_commands import SpeechCommandsZeroshotClassificationV01
from .speech_commands import (
SpeechCommandsZeroshotClassificationV01,
SpeechCommandsZeroshotClassificationv02,
)
from .urban_sound8k import UrbanSound8kZeroshotClassification

__all__ = [
"ESC50ZeroshotClassification",
"RavdessZeroshotClassification",
"SpeechCommandsZeroshotClassificationV01",
"SpeechCommandsZeroshotClassificationv02",
"UrbanSound8kZeroshotClassification",
]
1 change: 1 addition & 0 deletions tests/test_tasks/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ def test_all_metadata_is_filled_and_valid(task: AbsTask):

if task.metadata.name in (
"SpeechCommandsZeroshotv0.01",
"SpeechCommandsZeroshotv0.02",
"VoxPopuliGenderClustering",
"BirdSet",
):
Expand Down
Loading