Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
---
|
| 5 |
+
# Wikipedia Machine Learning Corpus (wiki-ml-corpus)
|
| 6 |
+
|
| 7 |
+
A curated dataset of over 100 Wikipedia articles related to **Machine Learning**, **Statistics**, **Probability**, **Data Science**, and **Deep Learning**.
|
| 8 |
+
|
| 9 |
+
This dataset is designed for use in:
|
| 10 |
+
- NLP tasks like summarization, QA, and topic modeling
|
| 11 |
+
- ML interview prep and curriculum design
|
| 12 |
+
- Ontology-driven QA systems and SPARQL-based pipelines
|
| 13 |
+
- Building structured knowledge graphs from unstructured text
|
| 14 |
+
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
## Dataset Structure
|
| 18 |
+
|
| 19 |
+
Each example in the dataset is a JSON object with the following fields:
|
| 20 |
+
|
| 21 |
+
```json
|
| 22 |
+
{
|
| 23 |
+
"title": "Linear regression",
|
| 24 |
+
"text": "Linear regression is a linear approach to modeling the relationship between a scalar response and one or more explanatory variables..."
|
| 25 |
+
}
|