FEA-Bench / testbed /embeddings-benchmark__mteb /mteb /tasks /Classification /mar /MarathiNewsClassification.py
| from __future__ import annotations | |
| from mteb.abstasks import AbsTaskClassification | |
| from mteb.abstasks.TaskMetadata import TaskMetadata | |
| class MarathiNewsClassification(AbsTaskClassification): | |
| metadata = TaskMetadata( | |
| name="MarathiNewsClassification", | |
| description="A Marathi dataset for 3-class classification of Marathi news articles", | |
| reference="https://github.com/goru001/nlp-for-marathi", | |
| dataset={ | |
| "path": "mlexplorer008/marathi_news_classification", | |
| "revision": "7640cf8132cca1f99995ac71512a670e3c965cf1", | |
| }, | |
| type="Classification", | |
| category="s2s", | |
| date=("2014-01-01", "2018-01-01"), | |
| eval_splits=["test"], | |
| eval_langs=["mar-Deva"], | |
| main_score="f1", | |
| form=["written"], | |
| domains=["News"], | |
| task_subtypes=["Topic classification"], | |
| license="MIT", | |
| socioeconomic_status="mixed", | |
| annotations_creators="derived", | |
| dialect=[], | |
| text_creation="found", | |
| bibtex_citation="""""", | |
| n_samples={"test": 2048}, | |
| avg_character_length={"test": 52.37}, | |
| ) | |
| def dataset_transform(self): | |
| self.dataset = self.dataset.rename_columns({"headline": "text"}) | |
| self.dataset = self.stratified_subsampling(self.dataset, seed=self.seed) | |