All files available here: https://lingtools.uoregon.edu/coraal/
wget -i https://tinyurl.com/coraalfiles --no-check-certificate
Extract
./extract_coraal.sh
NOTE: I also had to download the metadata files from the above link, and put inside each component's folder.
pip install -r requirements.txt
huggingface-cli login
Enter your Hugging Face token when prompted.
push_to_huggingface.py and update:REPO_ID = "your-username/coraal" → Change to your HF usernamePRIVATE = False → Set to True if you want a private datasetTEST_MODE = True → Set to False if you want upload a subset for testing/debuggingpython3 push_to_huggingface.py
The dataset is organized with each CORAAL component (ATL, DCA, DCB, DTA, LES, PRV, ROC, VLD) as a separate config/subset. Each config has a "test" split containing all samples for that component.
from datasets import load_dataset
# Load a specific component
dataset = load_dataset("your-username/coraal", "ATL")
# Access the test split
test_data = dataset["test"]
Each sample includes:
[<laugh>], descriptors like (breathy), and redactions removed)Common metadata columns include:
Note: Each component has its own metadata schema based on its metadata file, so available columns may differ between components.
2 commits
Python
96.6%
Shell
3.4%
All files available here: https://lingtools.uoregon.edu/coraal/
wget -i https://tinyurl.com/coraalfiles --no-check-certificate
Extract
./extract_coraal.sh
NOTE: I also had to download the metadata files from the above link, and put inside each component's folder.
pip install -r requirements.txt
huggingface-cli login
Enter your Hugging Face token when prompted.
push_to_huggingface.py and update:REPO_ID = "your-username/coraal" → Change to your HF usernamePRIVATE = False → Set to True if you want a private datasetTEST_MODE = True → Set to False if you want upload a subset for testing/debuggingpython3 push_to_huggingface.py
The dataset is organized with each CORAAL component (ATL, DCA, DCB, DTA, LES, PRV, ROC, VLD) as a separate config/subset. Each config has a "test" split containing all samples for that component.
from datasets import load_dataset
# Load a specific component
dataset = load_dataset("your-username/coraal", "ATL")
# Access the test split
test_data = dataset["test"]
Each sample includes:
[<laugh>], descriptors like (breathy), and redactions removed)Common metadata columns include:
Note: Each component has its own metadata schema based on its metadata file, so available columns may differ between components.
2 commits
Python
96.6%
Shell
3.4%