fgrezes commited on
Commit
2f365fc
β€’
1 Parent(s): 39be414

updated dataset card with info from release of full data post-wiesp

Browse files
Files changed (1) hide show
  1. README.md +4 -2
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") # !!! Only loads the training split. Validation and testing splits will be added after the shared task of [WIESP-2023](https://ui.adsabs.harvard.edu/WIESP/2023/) has ended.
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/train.parquet (train split of FOCAL)
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
  ```