yifAI commited on
Commit
74be81c
1 Parent(s): 52d24d7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -1
README.md CHANGED
@@ -349,7 +349,7 @@ tags:
349
 
350
  # AutoMathText
351
 
352
- **AutoMathText** is an extensive and carefully curated dataset encompassing **200 GB** of mathematical texts. It's a unique compilation sourced from a diverse range of platforms including various websites, arXiv, and GitHub (OpenWebMath, RedPajama, Algebraic Stack). This rich repository has been **autonomously selected (labeled) by the state-of-the-art open-sourced language model**, Qwen-72B. Each piece of content in the dataset is assigned **a score `lm_q1q2_score` within the range of [0, 1]**, reflecting its relevance, quality and educational value in the context of mathematical intelligence.
353
 
354
  ## Objective
355
 
@@ -359,6 +359,64 @@ The primary aim of the **AutoMathText** dataset is to provide a comprehensive an
359
  - Serving as an educational tool for **learning and teaching complex mathematical concepts**.
360
  - Providing **a foundation for developing and training AI models** specialized in processing and understanding **mathematical content**.
361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
362
  ## Features
363
 
364
  - **Volume**: Approximately 200 GB of text data (in natural language and programming language).
 
349
 
350
  # AutoMathText
351
 
352
+ **AutoMathText** is an extensive and carefully curated dataset encompassing around **200 GB** of mathematical texts. It's a compilation sourced from a diverse range of platforms including various websites, arXiv, and GitHub (OpenWebMath, RedPajama, Algebraic Stack). This rich repository has been **autonomously selected (labeled) by the state-of-the-art open-sourced language model**, Qwen-72B. Each piece of content in the dataset is assigned **a score `lm_q1q2_score` within the range of [0, 1]**, reflecting its relevance, quality and educational value in the context of mathematical intelligence.
353
 
354
  ## Objective
355
 
 
359
  - Serving as an educational tool for **learning and teaching complex mathematical concepts**.
360
  - Providing **a foundation for developing and training AI models** specialized in processing and understanding **mathematical content**.
361
 
362
+ ## Configs
363
+
364
+ ```YAML
365
+ configs:
366
+ - config_name: web-0.50-to-1.00
367
+ data_files:
368
+ - split: train
369
+ path:
370
+ - data/web/0.95-1.00.jsonl
371
+ - data/web/0.90-0.95.jsonl
372
+ - ...
373
+ - data/web/0.50-0.55.jsonl
374
+ default: true
375
+ - config_name: web-0.60-to-1.00
376
+ - config_name: web-0.70-to-1.00
377
+ - config_name: web-0.80-to-1.00
378
+ - config_name: web-full
379
+ data_files: data/web/*.jsonl
380
+ - config_name: arxiv-0.50-to-1.00
381
+ data_files:
382
+ - split: train
383
+ path:
384
+ - data/arxiv/0.90-1.00/*.jsonl
385
+ - ...
386
+ - data/arxiv/0.50-0.60/*.jsonl
387
+ - config_name: arxiv-0.60-to-1.00
388
+ - config_name: arxiv-0.70-to-1.00
389
+ - config_name: arxiv-0.80-to-1.00
390
+ - config_name: arxiv-full
391
+ data_files: data/arxiv/*/*.jsonl
392
+ - config_name: code-0.50-to-1.00
393
+ data_files:
394
+ - split: train
395
+ path:
396
+ - data/code/*/0.95-1.00.jsonl
397
+ - ...
398
+ - data/code/*/0.50-0.55.jsonl
399
+ - config_name: code-python-0.50-to-1.00
400
+ - split: train
401
+ path:
402
+ - data/code/python/0.95-1.00.jsonl
403
+ - ...
404
+ - data/code/python/0.50-0.55.jsonl
405
+ - config_name: code-python-0.60-to-1.00
406
+ - config_name: code-python-0.70-to-1.00
407
+ - config_name: code-python-0.80-to-1.00
408
+ - config_name: code-full
409
+ data_files: data/code/*/*.jsonl
410
+ ```
411
+
412
+ How to load data:
413
+
414
+ ```python
415
+ from datasets import load_dataset
416
+
417
+ ds = load_dataset("math-ai/AutoMathText", "web-0.50-to-1.00") # or any valid config_name, web-0.50-to-1.00 is the default config_name
418
+ ```
419
+
420
  ## Features
421
 
422
  - **Volume**: Approximately 200 GB of text data (in natural language and programming language).