Datasets:
Tasks:
Text Generation
Formats:
parquet
Sub-tasks:
language-modeling
Languages:
Danish
Size:
10M - 100M
ArXiv:
DOI:
License:
File size: 338 Bytes
78108d3 566156e ca7fb7b 936cd0c ca7fb7b 566156e ca7fb7b 566156e ca7fb7b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from pathlib import Path
from dynaword.datasheet import DataSheet
root_path = Path(__file__).parent.parent.parent
main_readme = root_path / "README.md"
main_sheet = DataSheet.load_from_path(main_readme)
DATASET_NAMES = [
cfg["config_name"]
for cfg in main_sheet.frontmatter["configs"]
if cfg["config_name"] != "default"
]
|