Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"test": {
"num_samples": 3000,
"num_queries": 1000,
"num_documents": 2000,
"number_of_characters": 156386,
"documents_text_statistics": null,
"documents_image_statistics": null,
"documents_audio_statistics": null,
"documents_video_statistics": {
"total_duration_seconds": 9278.873660215679,
"total_frames": 222954,
"min_width": 1280,
"average_width": 1280.0,
"max_width": 1280,
"min_height": 704,
"average_height": 704.0,
"max_height": 704,
"min_duration_seconds": 2.7027027027027026,
"average_duration_seconds": 4.639436830107839,
"max_duration_seconds": 6.75,
"unique_videos": 1872,
"average_fps": 24.054,
"fps": {
"24": 1972,
"25": 12,
"30": 16
},
"min_resolution": [
1280,
704
],
"average_resolution": [
1280.0,
704.0
],
"max_resolution": [
1280,
704
],
"resolutions": {
"1280x704": 2000
}
},
"queries_text_statistics": {
"total_text_length": 156386,
"min_text_length": 29,
"average_text_length": 156.386,
"max_text_length": 442,
"unique_texts": 992
},
"queries_image_statistics": null,
"queries_audio_statistics": null,
"queries_video_statistics": {
"total_duration_seconds": 4639.436830107839,
"total_frames": 111477,
"min_width": 1280,
"average_width": 1280.0,
"max_width": 1280,
"min_height": 704,
"average_height": 704.0,
"max_height": 704,
"min_duration_seconds": 2.7027027027027026,
"average_duration_seconds": 4.639436830107839,
"max_duration_seconds": 6.75,
"unique_videos": 992,
"average_fps": 24.054,
"fps": {
"24": 986,
"25": 6,
"30": 8
},
"min_resolution": [
1280,
704
],
"average_resolution": [
1280.0,
704.0
],
"max_resolution": [
1280,
704
],
"resolutions": {
"1280x704": 1000
}
},
"relevant_docs_statistics": {
"num_relevant_docs": 1120,
"min_relevant_docs_per_query": 1,
"average_relevant_docs_per_query": 1.12,
"max_relevant_docs_per_query": 2,
"unique_relevant_docs": 1120
},
"top_ranked_statistics": null
}
}
2 changes: 2 additions & 0 deletions mteb/tasks/retrieval/eng/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@
from .image_co_de_t2i_retrieval import ImageCoDeT2IRetrieval
from .info_seek_it2it_retrieval import InfoSeekIT2ITRetrieval
from .info_seek_it2t_retrieval import InfoSeekIT2TRetrieval
from .insave_vt2v_retrieval import InsAVE80KVT2VRetrieval
from .irpapers_t2i_retrieval import IRPapersT2IRetrieval
from .irpapers_t2it_retrieval import IRPapersT2ITRetrieval
from .jl_corpus import JLCorpusA2TRetrieval, JLCorpusT2ARetrieval
Expand Down Expand Up @@ -620,6 +621,7 @@
"ImageCoDeT2IRetrieval",
"InfoSeekIT2ITRetrieval",
"InfoSeekIT2TRetrieval",
"InsAVE80KVT2VRetrieval",
"JLCorpusA2TRetrieval",
"JLCorpusT2ARetrieval",
"KnowMeBench",
Expand Down
Loading