This datasets hosts a sentence-tokenized version of the GermEval 2014 NER dataset.
The following script can be used to reproduce the creation of the dataset:
import json
with open("./germeval14/train.jsonl", "wt") as f_out:
for sentence in germeval_corpus.train:
current_example = {
"text": sentence.to_tokenized_string()… See the full description on the dataset page:
https://huggingface.co/datasets/german-tokenizer-benchmark/germeval14.