-
Notifications
You must be signed in to change notification settings - Fork 567
Add Korean AutoRAGRetrieval #1388
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
7463853
feat: add AutoRAG Korean embedding retrieval benchmark
yjoonjang 8459384
fix: run --- 🧹 Running linters ---
yjoonjang cab4eb8
fix: add metadata for AutoRAGRetrieval
yjoonjang 96cf1ad
change link for markers_bm
yjoonjang b57fcad
add AutoRAGRetrieval to init.py and update metadata
yjoonjang e721875
add precise metadata
yjoonjang cd5b445
update metadata: description and license
yjoonjang df27217
Merge branch 'embeddings-benchmark:main' into main
yjoonjang ccfcce8
delete descriptive_stats in AutoRAGRetrieval.py and run calculate_mat…
yjoonjang 1a546ff
Merge branch 'embeddings-benchmark:main' into main
yjoonjang 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "test": { | ||
| "number_of_characters": 894.2168128654971, | ||
| "num_samples": 834, | ||
| "num_queries": 114, | ||
| "num_documents": 720, | ||
| "average_document_length": 1.1452816358024691, | ||
| "average_query_length": 0.610649430594029, | ||
| "average_relevant_docs_per_query": 1.0 | ||
| } | ||
| } |
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,40 @@ | ||
| from __future__ import annotations | ||
|
|
||
| from mteb.abstasks.TaskMetadata import TaskMetadata | ||
|
|
||
| from ....abstasks.AbsTaskRetrieval import AbsTaskRetrieval | ||
|
|
||
|
|
||
| class AutoRAGRetrieval(AbsTaskRetrieval): | ||
| metadata = TaskMetadata( | ||
| name="AutoRAGRetrieval", | ||
| description="This dataset enables the evaluation of Korean RAG performance across various domains—finance, public sector, healthcare, legal, and commerce—by providing publicly accessible documents, questions, and answers.", | ||
| reference="https://arxiv.org/abs/2410.20878", | ||
| dataset={ | ||
| "path": "yjoonjang/markers_bm", | ||
| "revision": "fd7df84ac089bbec763b1c6bb1b56e985df5cc5c", | ||
| }, | ||
| type="Retrieval", | ||
| prompt="Retrieve text based on user query.", | ||
| category="s2p", | ||
| modalities=["text"], | ||
| eval_splits=["test"], | ||
| eval_langs=["kor-Hang"], | ||
| main_score="ndcg_at_10", | ||
| date=("2024-08-03", "2024-08-03"), | ||
| domains=["Government", "Medical", "Legal", "Social"], | ||
| task_subtypes=["Article retrieval"], | ||
| license="mit", | ||
| annotations_creators="human-annotated", | ||
| dialect=[], | ||
| sample_creation="created", | ||
| bibtex_citation="""@misc{kim2024autoragautomatedframeworkoptimization, | ||
| title={AutoRAG: Automated Framework for optimization of Retrieval Augmented Generation Pipeline}, | ||
| author={Dongkyu Kim and Byoungwook Kim and Donggeon Han and Matouš Eibich}, | ||
| year={2024}, | ||
| eprint={2410.20878}, | ||
| archivePrefix={arXiv}, | ||
| primaryClass={cs.CL}, | ||
| url={https://arxiv.org/abs/2410.20878}, | ||
| }""", | ||
| ) |
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.