Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,19 +1,91 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Hindi Antonyms Dataset (हिंदी विलोम शब्दकोश)
|
2 |
+
|
3 |
+
## Overview
|
4 |
+
|
5 |
+
This dataset contains a comprehensive collection of Hindi words and their antonyms (विलोम शब्द). It is designed to assist NLP research, language learning, and applications focused on Hindi language processing. The dataset provides word-antonym pairs that can be used for tasks like:
|
6 |
+
|
7 |
+
- Semantic analysis
|
8 |
+
- Language learning and education
|
9 |
+
- Text enrichment
|
10 |
+
- Linguistic research
|
11 |
+
- Vocabulary expansion
|
12 |
+
|
13 |
+
## Dataset Structure
|
14 |
+
|
15 |
+
The dataset contains the following columns:
|
16 |
+
|
17 |
+
- `शब्द` (Word): The Hindi word
|
18 |
+
- `विलोम` (Antonym): The antonym of the given word
|
19 |
+
|
20 |
+
## Dataset Statistics
|
21 |
+
|
22 |
+
- Total word pairs: ~2500
|
23 |
+
- Format: Available in parquet format
|
24 |
+
- Split: Single train split (100% of data)
|
25 |
+
|
26 |
+
|
27 |
+
## Example Entries
|
28 |
+
|
29 |
+
| शब्द (Word) | विलोम (Antonym) |
|
30 |
+
|------------|-----------------|
|
31 |
+
| अनादि | आदि |
|
32 |
+
| अमृत | विष |
|
33 |
+
| अकाल | सुकाल |
|
34 |
+
| अंकुश | निरंकुश |
|
35 |
+
| अनुकूल | प्रतिकूल |
|
36 |
+
|
37 |
+
## Usage
|
38 |
+
|
39 |
+
```python
|
40 |
+
from datasets import load_dataset
|
41 |
+
|
42 |
+
# Load the dataset
|
43 |
+
dataset = load_dataset("Process-Venue/hindi-antonyms")
|
44 |
+
|
45 |
+
# Access the training split
|
46 |
+
train_data = dataset["train"]
|
47 |
+
|
48 |
+
# Get a sample
|
49 |
+
sample = train_data[0]
|
50 |
+
print(f"Word: {sample['शब्द']}, Antonym: {sample['विलोम']}")
|
51 |
+
```
|
52 |
+
|
53 |
+
## Source and Preparation
|
54 |
+
|
55 |
+
This dataset was compiled from various Hindi language resources and educational materials. It was converted from a text file to a structured parquet format with standardized train/validation/test splits to facilitate machine learning applications.
|
56 |
+
|
57 |
+
## License
|
58 |
+
|
59 |
+
This dataset is shared under [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).
|
60 |
+
|
61 |
+
## Citation
|
62 |
+
|
63 |
+
If you use this dataset in your research or application, please cite:
|
64 |
+
|
65 |
+
```
|
66 |
+
@misc{hindi-antonyms-dataset,
|
67 |
+
title={Hindi Antonyms Dataset},
|
68 |
+
author={Process Venue},
|
69 |
+
year={2025},
|
70 |
+
howpublished={HuggingFace Datasets},
|
71 |
+
url={https://huggingface.co/datasets/Process-Venue//hindi-antonyms}
|
72 |
+
website={https://www.processvenue.com/}
|
73 |
+
}
|
74 |
+
```
|
75 |
+
|
76 |
+
|
77 |
+
## Contact
|
78 |
+
|
79 |
+
We are here to help! Our team is ready to assist you with:
|
80 |
+
|
81 |
+
- **Custom Dataset Creation**: Need a specialized dataset? We can help you build it.
|
82 |
+
- **Data Enhancement**: We can expand or customize this dataset for your specific requirements.
|
83 |
+
- **Technical Support**: Questions about implementation or integration? We're happy to assist.
|
84 |
+
- **Collaboration Opportunities**: Interested in partnering on language technology projects? Let's talk!
|
85 |
+
|
86 |
+
For questions, suggestions, or personalized dataset requests, please:
|
87 |
+
- Open an issue on the dataset repository
|
88 |
+
- Contact us directly at: [email protected]
|
89 |
+
- Visit our website: [www.processvenue.com](https://www.processvenue.com/)
|
90 |
+
|
91 |
+
We welcome feedback and are committed to supporting the NLP and language learning communities.
|