processvenue commited on
Commit
bb3bf13
·
verified ·
1 Parent(s): c31a0d2

Update README.md

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