millat commited on
Commit
751db4e
·
verified ·
1 Parent(s): cfa7338

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -3
README.md CHANGED
@@ -1,3 +1,61 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Study-in-India FAQ Dataset
3
+
4
+ This dataset, `study-in-india-faq`, is designed for fine-tuning language models to answer frequently asked questions about studying in India. It includes 200,000 pairs of questions and answers covering topics such as admissions, scholarships, accommodation, cultural adjustments, and visa requirements.
5
+
6
+ ## Dataset Summary
7
+
8
+ The `study-in-india-faq` dataset is a comprehensive resource for students seeking information about studying in India, whether they are international or domestic applicants. It is suitable for building models that assist in student guidance, educational chatbots, and informational applications.
9
+
10
+ ### Key Features:
11
+ - **Language**: English
12
+ - **Data Size**: 200,000 Q&A pairs
13
+ - **Format**: JSON (for LLM fine-tuning) and CSV
14
+
15
+ ## Dataset Structure
16
+
17
+ Each entry in the dataset contains:
18
+ - **prompt**: The question asked, such as "What entrance exams are required for engineering courses?"
19
+ - **response**: The answer, providing guidance, requirements, or additional information.
20
+
21
+ Example entry in JSON format:
22
+ ```json
23
+ {
24
+ "prompt": "What entrance exams are required for engineering courses?",
25
+ "response": "Engineering courses in India generally require exams such as JEE Main or other state-level exams. Some universities may have additional requirements."
26
+ }
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ This dataset is ideal for fine-tuning language models on educational FAQ data, enabling the model to provide accurate and informative answers. It is compatible with large language models such as LLaMA, GPT, and other transformer-based architectures.
32
+
33
+ ### Example Use Cases
34
+ - **Educational Chatbot**: Train a chatbot to assist prospective students with questions about studying in India.
35
+ - **University Virtual Assistant**: Deploy in university portals to support students in admissions and cultural adjustment processes.
36
+ - **Student FAQ Support**: Help educational institutions reduce workload by automating responses to common inquiries.
37
+
38
+ ## Loading the Dataset
39
+
40
+ You can load the dataset in Python using the `datasets` library from Hugging Face:
41
+ ```python
42
+ from datasets import load_dataset
43
+
44
+ dataset = load_dataset("millat/study-in-india-faq")
45
+ ```
46
+
47
+ ## License
48
+
49
+ Please refer to the dataset's licensing terms on Hugging Face.
50
+
51
+ ## Citation
52
+
53
+ If you use this dataset in your research or application, please cite it as follows:
54
+ ```
55
+ @dataset{study_in_india_faq,
56
+ author = {MD MILLAT HOSEN},
57
+ title = {Study-in-India FAQ Dataset},
58
+ year = {2024},
59
+ publisher = {Hugging Face}
60
+ }
61
+ ```