nielsr HF Staff commited on
Commit
abc5896
·
verified ·
1 Parent(s): 8abeb14

Improve dataset card: Add paper, code links, task category, and sample usage

Browse files

This PR improves the dataset card for MahaParaphrase by:
- Adding the relevant paper link: https://huggingface.co/papers/2508.17444
- Including a link to the GitHub repository: https://github.com/l3cube-pune/MarathiNLP
- Specifying the `text-classification` task category in the metadata for better discoverability.
- Adding a "Sample Usage" section with installation instructions and a link to the Colab demo.
- Updating the citation to reflect the specific paper introducing this dataset.

Files changed (1) hide show
  1. README.md +26 -10
README.md CHANGED
@@ -1,17 +1,23 @@
1
  ---
2
- license: cc-by-4.0
3
  language:
4
  - mr
 
 
 
 
5
  tags:
6
  - paraphrase detection
7
  - Marathi NLP
8
  - Marathi paraphrase
9
- pretty_name: MahaParaphrase
10
- size_categories:
11
- - 1K<n<10K
12
  ---
 
13
  # L3Cube-MahaParaphrase Dataset
14
 
 
 
 
15
  ## Overview:
16
  The **L3Cube-MahaParaphrase Dataset** is a Marathi paraphrase detection corpus.It is a high-quality, human-annotated corpus specifically designed for **Marathi**, a low-resource Indic language. It contains 8,000 sentence pairs labeled as either **Paraphrase (P)** or **Non-paraphrase (NP)**. This dataset is useful for tasks like paraphrase detection, semantic similarity, and data augmentation, as well as improving NLP models for low-resource languages.
17
 
@@ -38,13 +44,23 @@ The dataset is ideal for training and evaluating NLP models for:
38
  ## Model Benchmarks:
39
  Standard transformer-based models like **BERT** have been evaluated on this dataset, providing a performance baseline for future research.
40
 
 
 
 
 
 
 
 
 
 
 
41
  ## Citation:
42
  If you use this dataset, please cite the original work as follows:
43
- ```
44
- @article{joshi2022l3cube,
45
- title={L3cube-mahanlp: Marathi natural language processing datasets, models, and library},
46
  author={Joshi, Raviraj},
47
- journal={arXiv preprint arXiv:2205.14728},
48
- year={2022}
49
  }
50
- ```
 
1
  ---
 
2
  language:
3
  - mr
4
+ license: cc-by-4.0
5
+ size_categories:
6
+ - 1K<n<10K
7
+ pretty_name: MahaParaphrase
8
  tags:
9
  - paraphrase detection
10
  - Marathi NLP
11
  - Marathi paraphrase
12
+ task_categories:
13
+ - text-classification
 
14
  ---
15
+
16
  # L3Cube-MahaParaphrase Dataset
17
 
18
+ Paper: [MahaParaphrase: A Marathi Paraphrase Detection Corpus and BERT-based Models](https://huggingface.co/papers/2508.17444)
19
+ Code: https://github.com/l3cube-pune/MarathiNLP
20
+
21
  ## Overview:
22
  The **L3Cube-MahaParaphrase Dataset** is a Marathi paraphrase detection corpus.It is a high-quality, human-annotated corpus specifically designed for **Marathi**, a low-resource Indic language. It contains 8,000 sentence pairs labeled as either **Paraphrase (P)** or **Non-paraphrase (NP)**. This dataset is useful for tasks like paraphrase detection, semantic similarity, and data augmentation, as well as improving NLP models for low-resource languages.
23
 
 
44
  ## Model Benchmarks:
45
  Standard transformer-based models like **BERT** have been evaluated on this dataset, providing a performance baseline for future research.
46
 
47
+ ## Sample Usage
48
+
49
+ This dataset is part of the `mahaNLP` library. You can install it via pip:
50
+
51
+ ```bash
52
+ pip install mahaNLP
53
+ ```
54
+
55
+ For usage examples, please refer to the [L3Cube-MahaNLP Colab demo](https://colab.research.google.com/drive/1POx3Bi1cML6-s3Z3u8g8VpqzpoYCyv2q).
56
+
57
  ## Citation:
58
  If you use this dataset, please cite the original work as follows:
59
+ ```bibtex
60
+ @article{joshi2025mahaparaphrase,
61
+ title={MahaParaphrase: A Marathi Paraphrase Detection Corpus and BERT-based Models},
62
  author={Joshi, Raviraj},
63
+ journal={arXiv preprint arXiv:2508.17444},
64
+ year={2025}
65
  }
66
+ ```