
faur-ai/LLMic
Updated
•
50
•
1
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
The FuLG dataset is a comprehensive Romanian language corpus comprising 150 billion tokens, carefully extracted from Common Crawl. This extensive dataset is the result of rigorous filtering and deduplication processes applied to 95 Common Crawl snapshots. The compressed dataset has 289 GB.
For more details, check the arXiv preprint.
from datasets import load_dataset
# Full dataset
dataset = load_dataset("faur-ai/fulg")
# To load the data from a specific CC snapshot
dataset = load_dataset("faur-ai/fulg", data_dir='2018-05')
git clone https://huggingface.co/datasets/faur-ai/fulg
The data have several fields:
url
: url of the source as a stringdate_download
: date of crawldigest
: hash of contentlength
: length of contentnlines
: number of linessource_domain
: domain of documenttitle
: title of documentraw_content
: text content as a stringcc_segment
: source CommonCrawl segmentoriginal_nlines
: original number of lines before processingoriginal_length
: original length before processinglanguage
: language (ro)language_score
: score for languageWe are releasing this dataset under the terms of ODC-BY. By using this dataset, you are also bound any license agreements and terms of use of the original data sources.
If you use our dataset, please cite us at:
@misc{fulg150bromaniancorpus,
title={FuLG: 150B Romanian Corpus for Language Model Pretraining},
author={Vlad-Andrei Bădoiu and Mihai-Valentin Dumitru and Alexandru M. Gherghescu and Alexandru Agache and Costin Raiciu},
year={2024},
eprint={2407.13657},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2407.13657},
}