Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
json
Sub-tasks:
multi-class-classification
Languages:
English
Size:
100K - 1M
ArXiv:
License:
minor fixes and adjustments of dataset card info
Browse files
README.md
CHANGED
|
@@ -67,9 +67,9 @@ The dataset can be used as follows.
|
|
| 67 |
```
|
| 68 |
from datasets import load_dataset
|
| 69 |
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
```
|
| 74 |
|
| 75 |
## Dataset Structure
|
|
@@ -106,7 +106,7 @@ The paragraph texts are extracted from the data set [unarXive](https://github.co
|
|
| 106 |
|
| 107 |
#### Who are the source language producers?
|
| 108 |
|
| 109 |
-
The paragraphs were written by the authors of the arXiv papers. In file `license_info.jsonl` author and text licensing information can be found for all samples, An example is
|
| 110 |
|
| 111 |
```
|
| 112 |
|
|
@@ -126,7 +126,7 @@ The paragraphs were written by the authors of the arXiv papers. In file `license
|
|
| 126 |
|
| 127 |
### Annotations
|
| 128 |
|
| 129 |
-
Class labels were automatically determined ([see implementation](https://github.com/IllDepence/src/utility_scripts/ml_tasks_prep_data.py).
|
| 130 |
|
| 131 |
## Considerations for Using the Data
|
| 132 |
|
|
@@ -142,7 +142,7 @@ Depending on authors’ writing styles as well LaTeX processing quirks, paragrap
|
|
| 142 |
|
| 143 |
### Licensing information
|
| 144 |
|
| 145 |
-
The dataset is released under the
|
| 146 |
|
| 147 |
### Citation Information
|
| 148 |
|
|
|
|
| 67 |
```
|
| 68 |
from datasets import load_dataset
|
| 69 |
|
| 70 |
+
imrad_data = load_dataset('saier/unarXive_imrad_clf')
|
| 71 |
+
imrad_data = imrad_data.class_encode_column('label') # assign target label column
|
| 72 |
+
imrad_data = imrad_data.remove_columns('_id') # remove sample ID column
|
| 73 |
```
|
| 74 |
|
| 75 |
## Dataset Structure
|
|
|
|
| 106 |
|
| 107 |
#### Who are the source language producers?
|
| 108 |
|
| 109 |
+
The paragraphs were written by the authors of the arXiv papers. In file `license_info.jsonl` author and text licensing information can be found for all samples, An example is shown below.
|
| 110 |
|
| 111 |
```
|
| 112 |
|
|
|
|
| 126 |
|
| 127 |
### Annotations
|
| 128 |
|
| 129 |
+
Class labels were automatically determined ([see implementation](https://github.com/IllDepence/unarXive/blob/master/src/utility_scripts/ml_tasks_prep_data.py)).
|
| 130 |
|
| 131 |
## Considerations for Using the Data
|
| 132 |
|
|
|
|
| 142 |
|
| 143 |
### Licensing information
|
| 144 |
|
| 145 |
+
The dataset is released under the Creative Commons Attribution-ShareAlike 4.0.
|
| 146 |
|
| 147 |
### Citation Information
|
| 148 |
|