Kossisoroyce commited on
Commit
06e2201
·
verified ·
1 Parent(s): b0704da

Upload course_recommendations dataset

Browse files
README.md ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-regression
5
+ - tabular-classification
6
+ tags:
7
+ - nigeria
8
+ - education
9
+ - africa
10
+ - synthetic-data
11
+ - course-recommendations
12
+ language:
13
+ - en
14
+ size_categories:
15
+ - 100K<n<1M
16
+ pretty_name: Nigeria Education - Course Recommendations
17
+ ---
18
+
19
+ # Nigeria - Course Recommendations
20
+
21
+ ## Dataset Description
22
+
23
+ AI-generated course recommendations with confidence scores and reasons.
24
+
25
+ ## Dataset Information
26
+
27
+ - **Country**: Nigeria
28
+ - **Dataset Name**: course_recommendations
29
+ - **Total Records**: 100,000
30
+ - **Total Columns**: 8
31
+ - **File Size**: 1.47 MB
32
+ - **Format**: Parquet (full data), CSV (sample)
33
+ - **Generated**: 2025-10-21T23:15:54.764202
34
+
35
+ ## Schema
36
+
37
+ | Column | Data Type | Description |
38
+ |--------|-----------|-------------|
39
+ | `recommendation_id` | object | Recommendation Id |
40
+ | `student_id` | object | Student Id |
41
+ | `recommended_course` | object | Recommended Course |
42
+ | `recommendation_reason` | object | Recommendation Reason |
43
+ | `confidence_score` | float64 | Confidence Score |
44
+ | `status` | object | Status |
45
+ | `recommendation_date` | datetime64[ns] | Recommendation Date |
46
+ | `country` | object | Country |
47
+
48
+ ## Sample Data
49
+
50
+ The dataset includes a 10,000-row sample in CSV format for quick exploration.
51
+
52
+ ## Data Quality
53
+
54
+ - **Validation Status**: ✅ Passed
55
+ - **Missing Data**: ~2-5% (realistic pattern)
56
+ - **Data Type Enforcement**: Strict
57
+ - **Cross-Dataset Consistency**: Maintained
58
+
59
+ ## Dependencies
60
+
61
+ - `student_profiles`
62
+ - `assessment_scores`
63
+
64
+ ## Usage Example
65
+
66
+ ### Python (Pandas)
67
+ ```python
68
+ import pandas as pd
69
+
70
+ # Load full dataset
71
+ df = pd.read_parquet('course_recommendations_full.parquet')
72
+ print(f"Loaded {len(df):,} records")
73
+ print(df.head())
74
+
75
+ # Load sample
76
+ df_sample = pd.read_csv('course_recommendations_sample.csv')
77
+ print(df_sample.describe())
78
+ ```
79
+
80
+ ### Python (Hugging Face Datasets)
81
+ ```python
82
+ from datasets import load_dataset
83
+
84
+ # Load from Hugging Face
85
+ dataset = load_dataset('nigeria-education-course_recommendations')
86
+ df = dataset['train'].to_pandas()
87
+ ```
88
+
89
+ ## Data Generation
90
+
91
+ This dataset was generated using statistical distributions based on:
92
+ - UNICEF education statistics for Nigeria
93
+ - World Bank development indicators
94
+ - Nigerian Ministry of Education data
95
+ - Realistic probability distributions
96
+
97
+ **Note**: This is synthetic data generated for research and testing purposes.
98
+
99
+ ## Related Datasets
100
+
101
+ This dataset is part of the **Nigeria Education Datasets Collection** (45 datasets total).
102
+
103
+ Browse the full collection: [Nigeria Education Datasets](https://huggingface.co/collections/nigeria-education)
104
+
105
+ ## Citation
106
+
107
+ ```bibtex
108
+ @dataset{nigeria_course_recommendations_2025,
109
+ title={Nigeria Education Dataset: Course Recommendations},
110
+ author={[Your Name/Organization]},
111
+ year={2025},
112
+ publisher={Hugging Face},
113
+ url={https://huggingface.co/datasets/nigeria-education-course_recommendations}
114
+ }
115
+ ```
116
+
117
+ ## License
118
+
119
+ [Specify your license]
120
+
121
+ ## Contact
122
+
123
+ [Your contact information]
124
+
125
+ ---
126
+
127
+ **Part of**: Nigeria Education Datasets Collection
128
+ **Total Datasets**: 45
129
+ **Country**: Nigeria 🇳🇬
course_recommendations_full.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c2e478f97f3a6cbea9dc0421fd180e400c68e1d80b6206be8bc4a2c75bca5b9
3
+ size 1536585
course_recommendations_sample.csv ADDED
The diff for this file is too large to render. See raw diff
 
metadata.yaml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ columns:
2
+ - recommendation_id
3
+ - student_id
4
+ - recommended_course
5
+ - recommendation_reason
6
+ - confidence_score
7
+ - status
8
+ - recommendation_date
9
+ - country
10
+ country: Nigeria
11
+ country_code: NGA
12
+ dataset_name: course_recommendations
13
+ dependencies:
14
+ - student_profiles
15
+ - assessment_scores
16
+ dtypes:
17
+ confidence_score: float64
18
+ country: object
19
+ recommendation_date: datetime64[ns]
20
+ recommendation_id: object
21
+ recommendation_reason: object
22
+ recommended_course: object
23
+ status: object
24
+ student_id: object
25
+ file_size_mb: 1.4654016494750977
26
+ generated_at: '2025-10-21T23:15:54.764202'
27
+ num_columns: 8
28
+ num_rows: 100000
29
+ validation:
30
+ checks: {}
31
+ passed: true
32
+ version: 1.0.0