updated dataset card with info from release of full data post-wiesp
Browse files
README.md
CHANGED
@@ -68,7 +68,7 @@ start and end are defined by the character position in the `"Paragraph"` string.
|
|
68 |
How to load the data using the Huggingface library:
|
69 |
```python
|
70 |
from datasets import load_dataset
|
71 |
-
dataset = load_dataset("adsabs/FOCAL")
|
72 |
```
|
73 |
|
74 |
How to load the data if you cloned the repository locally:
|
@@ -88,11 +88,13 @@ focal_training_from_json = Dataset.from_json(path_or_paths="./FOCAL-TRAINING.jso
|
|
88 |
## File List
|
89 |
```
|
90 |
βββ FOCAL-TRAINING.jsonl (2421 samples for training)
|
|
|
|
|
91 |
βββ FOCAL-VALIDATION-NO-LABELS.jsonl (606 samples for validation without the labels. Used during the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/)
|
92 |
βββ FOCAL-TESTING-NO-LABELS.jsonl (821 samples for testing without the labels. Used during the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/)
|
93 |
βββ /scoring_scripts/score_focal_seqeval.py (scoring scripts used during the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/)
|
94 |
βββ /scoring_scripts/score_focal_labels_only.py (scoring scripts used during the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/)
|
95 |
-
βββ /data
|
96 |
βββ README.MD (this file)
|
97 |
βββ
|
98 |
```
|
|
|
68 |
How to load the data using the Huggingface library:
|
69 |
```python
|
70 |
from datasets import load_dataset
|
71 |
+
dataset = load_dataset("adsabs/FOCAL")
|
72 |
```
|
73 |
|
74 |
How to load the data if you cloned the repository locally:
|
|
|
88 |
## File List
|
89 |
```
|
90 |
βββ FOCAL-TRAINING.jsonl (2421 samples for training)
|
91 |
+
βββ FOCAL-VALIDATION.jsonl (606 samples for validating your training methods)
|
92 |
+
βββ FOCAL-TESTING.jsonl (821 samples for testing)
|
93 |
βββ FOCAL-VALIDATION-NO-LABELS.jsonl (606 samples for validation without the labels. Used during the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/)
|
94 |
βββ FOCAL-TESTING-NO-LABELS.jsonl (821 samples for testing without the labels. Used during the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/)
|
95 |
βββ /scoring_scripts/score_focal_seqeval.py (scoring scripts used during the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/)
|
96 |
βββ /scoring_scripts/score_focal_labels_only.py (scoring scripts used during the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/)
|
97 |
+
βββ /data/*.parquet (files used when loading the dataset through Huggingface's API)
|
98 |
βββ README.MD (this file)
|
99 |
βββ
|
100 |
```
|