Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
Dask
License:
koalazf99 commited on
Commit
9a08303
โ€ข
1 Parent(s): 9cd028a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -1
README.md CHANGED
@@ -16,4 +16,37 @@ pretty_name: open-web-math-pro
16
 
17
  # ๐Ÿ“š Open-Web-Math-Pro
18
 
19
- produced by Prox.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ }