Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -155,20 +155,8 @@ dataset_info:
|
|
| 155 |
dtype: float32
|
| 156 |
- name: openreview_submission_id
|
| 157 |
dtype: string
|
| 158 |
-
splits:
|
| 159 |
-
- name: openreview_full_train
|
| 160 |
-
num_bytes: 1960055251
|
| 161 |
-
num_examples: 27710
|
| 162 |
-
- name: openreview_full_validation
|
| 163 |
-
num_bytes: 241413323
|
| 164 |
-
num_examples: 3463
|
| 165 |
-
- name: openreview_full_test
|
| 166 |
-
num_bytes: 236209810
|
| 167 |
-
num_examples: 3465
|
| 168 |
-
download_size: 1162696655
|
| 169 |
-
dataset_size: 2437678384
|
| 170 |
configs:
|
| 171 |
-
- config_name:
|
| 172 |
data_files:
|
| 173 |
- split: train
|
| 174 |
path: data/acl_ocl_train-*
|
|
@@ -216,7 +204,8 @@ Each sample is an academic paper for which either the citation count or the revi
|
|
| 216 |
|
| 217 |
## ACL-OCL Extended
|
| 218 |
A dataset for citation count prediction only, based on the [ACL-OCL dataset](https://huggingface.co/datasets/WINGNUS/ACL-OCL/tree/main).
|
| 219 |
-
Extended with updated citation counts, references and annotated research hypothesis
|
|
|
|
| 220 |
|
| 221 |
## OpenReview (Last Update: 1.1.2025)
|
| 222 |
A dataset for review score and citation count prediction, obtained by parsing OpenReview.
|
|
@@ -225,6 +214,7 @@ Due to licensing the dataset comes in different formats:
|
|
| 225 |
### Datasets without parsed pdfs of submissions (i.e. the fields introduction, background, methodology, experiments_results, conclusion, full_text are available)
|
| 226 |
1. **openreview-public**: Contains full information on all OpenReview submissions that are accompanied with a CC BY 4.0 license.
|
| 227 |
|
|
|
|
| 228 |
### Datasets without parsed pdfs of submissions (i.e. the fields introduction, background, methodology, experiments_results, conclusion, full_text are None)
|
| 229 |
1. **openreview-full**: Contains all OpenReview submissions, splits generated based on publications dates.
|
| 230 |
2. **openreview-iclr**: All ICLR submissions from the years 2018-2023 (training) and 2024 (validation and training).
|
|
@@ -232,6 +222,17 @@ Due to licensing the dataset comes in different formats:
|
|
| 232 |
|
| 233 |
All datasets without parsed pdfs of submissions can be completed by running code available [here](https://github.com/NikeHop/automatic_scientific_quality_metrics)
|
| 234 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 235 |
### Overview of Dataset columns
|
| 236 |
|
| 237 |
| Attribute | Type | Explanation |
|
|
|
|
| 155 |
dtype: float32
|
| 156 |
- name: openreview_submission_id
|
| 157 |
dtype: string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 158 |
configs:
|
| 159 |
+
- config_name: acl-ocl
|
| 160 |
data_files:
|
| 161 |
- split: train
|
| 162 |
path: data/acl_ocl_train-*
|
|
|
|
| 204 |
|
| 205 |
## ACL-OCL Extended
|
| 206 |
A dataset for citation count prediction only, based on the [ACL-OCL dataset](https://huggingface.co/datasets/WINGNUS/ACL-OCL/tree/main).
|
| 207 |
+
Extended with updated citation counts, references and annotated research hypothesis.
|
| 208 |
+
|
| 209 |
|
| 210 |
## OpenReview (Last Update: 1.1.2025)
|
| 211 |
A dataset for review score and citation count prediction, obtained by parsing OpenReview.
|
|
|
|
| 214 |
### Datasets without parsed pdfs of submissions (i.e. the fields introduction, background, methodology, experiments_results, conclusion, full_text are available)
|
| 215 |
1. **openreview-public**: Contains full information on all OpenReview submissions that are accompanied with a CC BY 4.0 license.
|
| 216 |
|
| 217 |
+
|
| 218 |
### Datasets without parsed pdfs of submissions (i.e. the fields introduction, background, methodology, experiments_results, conclusion, full_text are None)
|
| 219 |
1. **openreview-full**: Contains all OpenReview submissions, splits generated based on publications dates.
|
| 220 |
2. **openreview-iclr**: All ICLR submissions from the years 2018-2023 (training) and 2024 (validation and training).
|
|
|
|
| 222 |
|
| 223 |
All datasets without parsed pdfs of submissions can be completed by running code available [here](https://github.com/NikeHop/automatic_scientific_quality_metrics)
|
| 224 |
|
| 225 |
+
To load any of the datasets, replace `dataset_name` with the desired dataset and run:
|
| 226 |
+
|
| 227 |
+
```python
|
| 228 |
+
from datasets import load_dataset
|
| 229 |
+
|
| 230 |
+
dataset_name = "openreview-full"
|
| 231 |
+
dataset = load_dataset("nhop/scientific-quality-score-prediction", dataset_name)
|
| 232 |
+
```
|
| 233 |
+
|
| 234 |
+
|
| 235 |
+
|
| 236 |
### Overview of Dataset columns
|
| 237 |
|
| 238 |
| Attribute | Type | Explanation |
|