datasets-tagging / apputils.py
lhoestq's picture
lhoestq HF staff
Align more metadata with other repo types (models,spaces) (#2)
c2de6fa
raw history blame
No virus
380 Bytes
from typing import Dict, List
def new_state() -> Dict[str, List]:
return {
"task_categories": [],
"task_ids": [],
"multilinguality": [],
"language": [],
"language_creators": [],
"annotations_creators": [],
"source_datasets": [],
"size_categories": [],
"license": [],
"pretty_name": None,
}