prithivMLmods commited on
Commit
9ede26a
·
verified ·
1 Parent(s): 659dd2a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -3
README.md CHANGED
@@ -1,3 +1,48 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - article
7
+ - synthetic
8
+ size_categories:
9
+ - 10K<n<100K
10
+ ---
11
+ # **Synthesis-Article Dataset**
12
+
13
+ ## Overview
14
+ The **Synthesis-Article** dataset contains scientific article metadata, including titles, abstracts, and categorical labels indicating subject areas such as Computer Science (`cs`), Physics (`phy`), Mathematics (`math`), and Statistics (`stat`).
15
+
16
+ ## Dataset Details
17
+ - **Modality:** Tabular, Text
18
+ - **Format:** CSV
19
+ - **Size:** 10K - 100K rows
20
+ - **Libraries Used:** `pandas`, `Datasets`, `Croissant`
21
+ - **License:** Apache-2.0
22
+
23
+ ## Dataset Structure
24
+ The dataset consists of the following columns:
25
+
26
+ | Column Name | Type | Description |
27
+ |------------|------|-------------|
28
+ | `title` | string | Title of the scientific article |
29
+ | `abstract` | string | Abstract of the article |
30
+ | `cs` | int64 | Binary label indicating if the article belongs to Computer Science (1: Yes, 0: No) |
31
+ | `phy` | int64 | Binary label indicating if the article belongs to Physics (1: Yes, 0: No) |
32
+ | `math` | int64 | Binary label indicating if the article belongs to Mathematics (1: Yes, 0: No) |
33
+ | `stat` | int64 | Binary label indicating if the article belongs to Statistics (1: Yes, 0: No) |
34
+
35
+ ## Dataset Statistics
36
+ - **Total Rows:** 29,961
37
+ - **Train Split:** ~21K rows
38
+ - **Size of CSV:** 32.8 MB
39
+ - **Size of Auto-Converted Parquet:** 19.8 MB
40
+
41
+ ## Usage
42
+ To load the dataset using `datasets`:
43
+
44
+ ```python
45
+ from datasets import load_dataset
46
+
47
+ dataset = load_dataset("prithivMLmods/Synthesis-Article")
48
+ print(dataset)