Update README.md
Browse files
README.md
CHANGED
@@ -16,4 +16,37 @@ pretty_name: open-web-math-pro
|
|
16 |
|
17 |
# ๐ Open-Web-Math-Pro
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
# ๐ Open-Web-Math-Pro
|
18 |
|
19 |
+
|
20 |
+
## Dataset Description
|
21 |
+
|
22 |
+
- **Repository:** [gair-prox/open-web-math-pro](https://huggingface.co/datasets/gair-prox/open-web-math-pro)
|
23 |
+
|
24 |
+
### Dataset Summary
|
25 |
+
|
26 |
+
OpenWebMath-Pro is a large-scale dataset of mathematical text derived from web sources. It contains high-quality mathematical content curated and processed for training language models on mathematical tasks.
|
27 |
+
|
28 |
+
### Supported Tasks and Leaderboards
|
29 |
+
|
30 |
+
The dataset is primarily designed for:
|
31 |
+
|
32 |
+
- Mathematical text generation
|
33 |
+
- Mathematical question answering
|
34 |
+
- Mathematical reasoning
|
35 |
+
|
36 |
+
### Languages
|
37 |
+
|
38 |
+
The texts in the dataset are primarily in English.
|
39 |
+
|
40 |
+
## Dataset Structure
|
41 |
+
|
42 |
+
### Data Instances
|
43 |
+
|
44 |
+
Each instance in the dataset contains a single field:
|
45 |
+
|
46 |
+
- `text`: A string containing mathematical text, which may include equations, proofs, problem statements, or explanations.
|
47 |
+
|
48 |
+
Example of a data instance:
|
49 |
+
```python
|
50 |
+
{
|
51 |
+
'text': 'Let f(x) be a continuous function on the closed interval [a,b]. The Mean Value Theorem states that there exists a point c in the open interval (a,b) such that f\'(c) = [f(b) - f(a)] / (b - a).'
|
52 |
+
}
|