--- license: cc0-1.0 task_categories: - text-classification - feature-extraction language: - multilingual tags: - datacite - scholarly-metadata - datasets - research-data size_categories: - 10M` | Array of `{title, titleType, lang}` | | `descriptions` | `list` | Array of `{description, descriptionType, lang}` | | `relatedIdentifiers` | `list` | Array of `{relatedIdentifier, relationType, relatedIdentifierType, resourceTypeGeneral}` | ## Usage ```python import pyarrow.parquet as pq table = pq.read_table("data/datasets_output.parquet") print(table.schema) print(f"{table.num_rows:,} records") ``` ### Streaming with HuggingFace Datasets ```python from datasets import load_dataset ds = load_dataset("cometadata/datacite-titles-descriptions-related-identifiers", streaming=True) for record in ds["train"]: print(record["doi"], record["titles"]) break ``` ## License CC0 1.0 Universal - the metadata is from DataCite's open metadata corpus.