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 |
```
|