diff --git a/.vscode/dats.code-workspace b/.vscode/dats.code-workspace
index a0e6b5b78..c2d4b7f77 100644
--- a/.vscode/dats.code-workspace
+++ b/.vscode/dats.code-workspace
@@ -7,6 +7,10 @@
{
"name": "backend",
"path": "../backend",
+ },
+ {
+ "name": "benchmarks",
+ "path": "../benchmarks",
},
{
"name": "ray",
diff --git a/.vscode/settings.json b/.vscode/settings.json
index ca5252035..4e87e5a64 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -3,6 +3,7 @@
"files.exclude": {
"airflow": true,
"backend": true,
+ "benchmarks": true,
"ray": true,
"frontend": true
},
diff --git a/benchmarks/.gitignore b/benchmarks/.gitignore
new file mode 100644
index 000000000..703b548e7
--- /dev/null
+++ b/benchmarks/.gitignore
@@ -0,0 +1,14 @@
+.venv/
+__pycache__/
+*.pyc
+
+# Local env overrides
+docker/.env
+src/.env
+
+# Generated benchmark artifacts
+outputs/*.csv
+outputs/*.json
+outputs/*.png
+data/**/*.csv
+run_experiment.log
diff --git a/benchmarks/.vscode/launch.json b/benchmarks/.vscode/launch.json
new file mode 100644
index 000000000..0a54b0c3b
--- /dev/null
+++ b/benchmarks/.vscode/launch.json
@@ -0,0 +1,95 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "fastapi",
+ "type": "debugpy",
+ "request": "launch",
+ "program": "${workspaceFolder}/src/main.py",
+ "console": "integratedTerminal",
+ "justMyCode": true,
+ "cwd": "${workspaceFolder}",
+ "envFile": "${workspaceFolder}/.env",
+ "env": {
+ "PYTHONPATH": "${workspaceFolder}/src"
+ }
+ },
+ {
+ "name": "rq",
+ "type": "debugpy",
+ "request": "launch",
+ "program": "${workspaceFolder}/src/worker.py",
+ "args": ["work", "dev"],
+ "console": "integratedTerminal",
+ "justMyCode": true,
+ "cwd": "${workspaceFolder}",
+ "envFile": "${workspaceFolder}/.env",
+ "env": {
+ "PYTHONPATH": "${workspaceFolder}/src",
+ "RQ_WORKERS_CPU": "1",
+ "RQ_WORKERS_API": "1",
+ "RQ_WORKERS_GPU": "1"
+ }
+ },
+ {
+ "name": "pytest",
+ "type": "debugpy",
+ "request": "launch",
+ "module": "pytest",
+ "console": "integratedTerminal",
+ "justMyCode": true,
+ "cwd": "${workspaceFolder}",
+ "envFile": "${workspaceFolder}/.env",
+ "env": {
+ "PYTHONPATH": "${workspaceFolder}/src",
+ "RESET_DATABASE_FOR_TESTING": "1"
+ }
+ },
+ {
+ "name": "pyright",
+ "type": "node-terminal",
+ "request": "launch",
+ "command": "uv run pyright",
+ "cwd": "${workspaceFolder}",
+ "envFile": "${workspaceFolder}/.env",
+ "env": {
+ "PYTHONPATH": "${workspaceFolder}/src"
+ }
+ },
+ {
+ "name": "Alembic: migrate",
+ "type": "debugpy",
+ "request": "launch",
+ "program": "${workspaceFolder}/src/migrations/run_migrations.py",
+ "console": "integratedTerminal",
+ "justMyCode": true,
+ "cwd": "${workspaceFolder}",
+ "envFile": "${workspaceFolder}/.env",
+ "env": {
+ "PYTHONPATH": "${workspaceFolder}/src"
+ }
+ },
+ {
+ "name": "Alembic: check",
+ "type": "node-terminal",
+ "request": "launch",
+ "command": "uv run alembic -c src/migrations/alembic.ini check",
+ "cwd": "${workspaceFolder}",
+ "envFile": "${workspaceFolder}/.env",
+ "env": {
+ "PYTHONPATH": "${workspaceFolder}/src"
+ }
+ },
+ {
+ "name": "Alembic: revision",
+ "type": "node-terminal",
+ "request": "launch",
+ "command": "uv run alembic -c src/migrations/alembic.ini revision --autogenerate -m \"vscode launcher\"",
+ "cwd": "${workspaceFolder}",
+ "envFile": "${workspaceFolder}/.env",
+ "env": {
+ "PYTHONPATH": "${workspaceFolder}/src"
+ }
+ }
+ ]
+}
diff --git a/benchmarks/.vscode/settings.json b/benchmarks/.vscode/settings.json
new file mode 100644
index 000000000..2b76b7a7d
--- /dev/null
+++ b/benchmarks/.vscode/settings.json
@@ -0,0 +1,16 @@
+{
+ // python
+ "python.defaultInterpreterPath": "${workspaceFolder:benchmarks}/.venv/bin/python",
+ "python.envFile": "${workspaceFolder:benchmarks}/.env",
+ "python.autoComplete.extraPaths": ["${workspaceFolder:benchmarks}/src"],
+ "python.analysis.extraPaths": ["${workspaceFolder:benchmarks}/src"],
+ "python.analysis.pyrightVersion": "1.1.385", // this has to match pyproject.toml
+ "python.analysis.exclude": ["**/__pycache__", "**/.venv"],
+
+ // prettier
+ "prettier.prettierPath": "../frontend/node_modules/prettier",
+ "prettier.configPath": "../.prettierrc.yaml",
+
+ // ruff
+ "ruff.interpreter": ["${workspaceFolder:benchmarks}/.venv/bin/python"]
+}
diff --git a/benchmarks/README.md b/benchmarks/README.md
new file mode 100644
index 000000000..4f7e4cb6f
--- /dev/null
+++ b/benchmarks/README.md
@@ -0,0 +1,62 @@
+# LLM Benchmarking Framework
+
+This folder contains a modular and reproducible framework for benchmarking LLMs across NLP tasks.
+
+## First Working Experiment
+
+The first implemented end-to-end experiment is document classification on a sampled 20 Newsgroups split.
+
+Configuration rules:
+
+- Experiment and backend configs are composed via Hydra groups into typed `RunConfig` as `experiment` and `backend`.
+- Model config is nested in each experiment via `defaults` (`/model: ...`) as `experiment.model`.
+- Dataset config is nested in each experiment via `defaults` (`/dataset: ...`) as `experiment.dataset`.
+- Dataset configs define `name`, `path`, `text_column`, and `label_column`.
+- `run_name` in experiment configs is optional. If omitted, MLflow auto-generates it.
+- Prompt templates are always loaded from `src/prompts/templates` (not configurable).
+- Schema is configured as a single dotted path (for example `newsgroups20_schema.NewsgroupClassificationSchemaV1`).
+
+### 1. Install dependencies
+
+```bash
+cd benchmarks
+uv sync
+```
+
+### 2. Prepare data
+
+```bash
+uv run python data/20newsgroups/preprocess.py
+```
+
+### 3. Start MLflow service
+
+```bash
+cd docker
+cp .env.example .env
+docker compose up -d
+cd ..
+```
+
+### 4. Run the 20 Newsgroups experiment
+
+```bash
+uv run python src/run_experiment.py
+```
+
+### 5. Override config groups (example)
+
+```bash
+uv run python src/run_experiment.py \
+ experiment=20newsgroups_v1_zeroshot \
+ backend=vllm \
+ backend.gpu_id=1
+```
+
+## Layout
+
+- `configs/`: Runtime config and Hydra groups (`experiment/`, `model/`, `dataset/`, `backend/`)
+- `data/`: Datasets and preprocessing scripts
+- `docker/`: MLflow compose files and environment templates
+- `outputs/`: Local output artifacts (CSV/JSON)
+- `src/`: Core runner, LLM clients, schemas, prompts, evaluation, tracking
diff --git a/benchmarks/configs/backend/vllm.yaml b/benchmarks/configs/backend/vllm.yaml
new file mode 100644
index 000000000..a243a1611
--- /dev/null
+++ b/benchmarks/configs/backend/vllm.yaml
@@ -0,0 +1,8 @@
+image: vllm/vllm-openai:latest
+host_port: 19275
+startup_timeout_seconds: 600
+gpu_id: 1
+hf_token_env_var: HF_TOKEN
+hf_cache_dir: ~/.cache/huggingface
+concurrency: 24
+api_key: EMPTY
diff --git a/benchmarks/configs/config.yaml b/benchmarks/configs/config.yaml
new file mode 100644
index 000000000..e4f0179cb
--- /dev/null
+++ b/benchmarks/configs/config.yaml
@@ -0,0 +1,15 @@
+defaults:
+ - experiment: 20newsgroups_v1_zeroshot
+ - backend: vllm
+ - _self_
+
+output_dir: outputs
+mlflow_uri: http://localhost:19274
+fail_on_parse_error: false
+
+hydra:
+ job:
+ chdir: false
+ run:
+ dir: .
+ output_subdir: null
diff --git a/benchmarks/configs/dataset/20newsgroups.yaml b/benchmarks/configs/dataset/20newsgroups.yaml
new file mode 100644
index 000000000..96a1b0111
--- /dev/null
+++ b/benchmarks/configs/dataset/20newsgroups.yaml
@@ -0,0 +1,5 @@
+name: 20newsgroups
+dataset_type: document_classification_single_label
+path: 20newsgroups/test_full_raw.parquet
+text_column: document_text
+label_column: label
diff --git a/benchmarks/configs/dataset/bbc-coarse.yaml b/benchmarks/configs/dataset/bbc-coarse.yaml
new file mode 100644
index 000000000..a30bad3e8
--- /dev/null
+++ b/benchmarks/configs/dataset/bbc-coarse.yaml
@@ -0,0 +1,5 @@
+name: bbc-coarse
+dataset_type: document_classification_single_label
+path: bbc/bbc_cleaned.parquet
+text_column: content
+label_column: main_tag
diff --git a/benchmarks/configs/dataset/bbc-fine.yaml b/benchmarks/configs/dataset/bbc-fine.yaml
new file mode 100644
index 000000000..a549afdaf
--- /dev/null
+++ b/benchmarks/configs/dataset/bbc-fine.yaml
@@ -0,0 +1,5 @@
+name: bbc-fine
+dataset_type: document_classification_single_label
+path: bbc/bbc_cleaned.parquet
+text_column: content
+label_column: tag
diff --git a/benchmarks/configs/dataset/coarsediscourse.yaml b/benchmarks/configs/dataset/coarsediscourse.yaml
new file mode 100644
index 000000000..eb0273056
--- /dev/null
+++ b/benchmarks/configs/dataset/coarsediscourse.yaml
@@ -0,0 +1,5 @@
+name: coarsediscourse
+dataset_type: sequential_sentence_classification
+path: coarsediscourse/coursediscourse_test.parquet
+sentences_column: sentences
+labels_column: labels
diff --git a/benchmarks/configs/dataset/csabstruct.yaml b/benchmarks/configs/dataset/csabstruct.yaml
new file mode 100644
index 000000000..0784c642c
--- /dev/null
+++ b/benchmarks/configs/dataset/csabstruct.yaml
@@ -0,0 +1,5 @@
+name: csabstruct
+dataset_type: sequential_sentence_classification
+path: csabstruct/test.parquet
+sentences_column: sentences
+labels_column: labels
diff --git a/benchmarks/configs/dataset/daily-dialog.yaml b/benchmarks/configs/dataset/daily-dialog.yaml
new file mode 100644
index 000000000..b72f25c8a
--- /dev/null
+++ b/benchmarks/configs/dataset/daily-dialog.yaml
@@ -0,0 +1,5 @@
+name: daily-dialog
+dataset_type: sequential_sentence_classification
+path: daily_dialog/dailydialog_test.parquet
+sentences_column: sentences
+labels_column: labels
diff --git a/benchmarks/configs/dataset/emotion-lines.yaml b/benchmarks/configs/dataset/emotion-lines.yaml
new file mode 100644
index 000000000..2ce68c147
--- /dev/null
+++ b/benchmarks/configs/dataset/emotion-lines.yaml
@@ -0,0 +1,7 @@
+name: emotion-lines
+dataset_type: sequential_sentence_classification
+path: emotion_lines/friends_test.parquet
+sentences_column: sentences
+labels_column: labels
+unwanted_labels:
+ - non-neutral
diff --git a/benchmarks/configs/dataset/fewnerd-coarse.yaml b/benchmarks/configs/dataset/fewnerd-coarse.yaml
new file mode 100644
index 000000000..fc1b1eae8
--- /dev/null
+++ b/benchmarks/configs/dataset/fewnerd-coarse.yaml
@@ -0,0 +1,15 @@
+name: fewnerd-coarse
+dataset_type: span_classification
+path: fewnerd/fewnerd_test.parquet
+tokens_column: tokens
+tags_column: ner_tags
+id2label:
+ 0: O
+ 1: art
+ 2: building
+ 3: event
+ 4: location
+ 5: organization
+ 6: other
+ 7: person
+ 8: product
diff --git a/benchmarks/configs/dataset/fewnerd-fine.yaml b/benchmarks/configs/dataset/fewnerd-fine.yaml
new file mode 100644
index 000000000..02ca6947a
--- /dev/null
+++ b/benchmarks/configs/dataset/fewnerd-fine.yaml
@@ -0,0 +1,73 @@
+name: fewnerd-fine
+dataset_type: span_classification
+path: fewnerd/fewnerd_test.parquet
+tokens_column: tokens
+tags_column: fine_ner_tags
+id2label:
+ 0: O
+ 1: art - broadcastprogram
+ 2: art - film
+ 3: art - music
+ 4: art - other
+ 5: art - painting
+ 6: art - writtenart
+ 7: building - airport
+ 8: building - hospital
+ 9: building - hotel
+ 10: building - library
+ 11: building - other
+ 12: building - restaurant
+ 13: building - sportsfacility
+ 14: building - theater
+ 15: event - attack/battle/war/militaryconflict
+ 16: event - disaster
+ 17: event - election
+ 18: event - other
+ 19: event - protest
+ 20: event - sportsevent
+ 21: location - GPE
+ 22: location - bodiesofwater
+ 23: location - island
+ 24: location - mountain
+ 25: location - other
+ 26: location - park
+ 27: location - road/railway/highway/transit
+ 28: organization - company
+ 29: organization - education
+ 30: organization - government/governmentagency
+ 31: organization - media/newspaper
+ 32: organization - other
+ 33: organization - politicalparty
+ 34: organization - religion
+ 35: organization - showorganization
+ 36: organization - sportsleague
+ 37: organization - sportsteam
+ 38: other - astronomything
+ 39: other - award
+ 40: other - biologything
+ 41: other - chemicalthing
+ 42: other - currency
+ 43: other - disease
+ 44: other - educationaldegree
+ 45: other - god
+ 46: other - language
+ 47: other - law
+ 48: other - livingthing
+ 49: other - medical
+ 50: person - actor
+ 51: person - artist/author
+ 52: person - athlete
+ 53: person - director
+ 54: person - other
+ 55: person - politician
+ 56: person - scholar
+ 57: person - soldier
+ 58: product - airplane
+ 59: product - car
+ 60: product - food
+ 61: product - game
+ 62: product - other
+ 63: product - ship
+ 64: product - software
+ 65: product - train
+ 66: product - weapon
diff --git a/benchmarks/configs/dataset/german-ler-coarse.yaml b/benchmarks/configs/dataset/german-ler-coarse.yaml
new file mode 100644
index 000000000..44cf7edbe
--- /dev/null
+++ b/benchmarks/configs/dataset/german-ler-coarse.yaml
@@ -0,0 +1,14 @@
+name: german-ler-coarse
+dataset_type: span_classification
+path: german-ler/german_ler_test.parquet
+tokens_column: tokens
+tags_column: ner_tags
+id2label:
+ 0: O
+ 1: person
+ 2: ort
+ 3: organisation
+ 4: norm
+ 5: gesetz
+ 6: rechtsprechung
+ 7: literatur
diff --git a/benchmarks/configs/dataset/german-ler-fine.yaml b/benchmarks/configs/dataset/german-ler-fine.yaml
new file mode 100644
index 000000000..ba18b5d86
--- /dev/null
+++ b/benchmarks/configs/dataset/german-ler-fine.yaml
@@ -0,0 +1,26 @@
+name: german-ler-fine
+dataset_type: span_classification
+path: german-ler/german_ler_test.parquet
+tokens_column: tokens
+tags_column: fine_ner_tags
+id2label:
+ 0: O
+ 1: Person
+ 2: Anwalt
+ 3: Richter
+ 4: Land
+ 5: Stadt
+ 6: Straße
+ 7: Landschaft
+ 8: Organisation
+ 9: Unternehmen
+ 10: Institution
+ 11: Gericht
+ 12: Marke
+ 13: Gesetz
+ 14: Verordnung
+ 15: EU Norm
+ 16: Vorschrift
+ 17: Vertrag
+ 18: Gerichtsentscheidung
+ 19: Literatur
diff --git a/benchmarks/configs/dataset/german-quotations-direct.yaml b/benchmarks/configs/dataset/german-quotations-direct.yaml
new file mode 100644
index 000000000..a138a7c6d
--- /dev/null
+++ b/benchmarks/configs/dataset/german-quotations-direct.yaml
@@ -0,0 +1,9 @@
+name: german-quotations-direct
+dataset_type: span_classification
+path: german-quotations/german_direct_quotations.parquet
+tokens_column: tokens
+tags_column: tags
+id2label:
+ 0: O
+ 1: Sprecher
+ 2: Direkte Rede
diff --git a/benchmarks/configs/dataset/germanquad.yaml b/benchmarks/configs/dataset/germanquad.yaml
new file mode 100644
index 000000000..86fcff769
--- /dev/null
+++ b/benchmarks/configs/dataset/germanquad.yaml
@@ -0,0 +1,6 @@
+name: germanquad
+dataset_type: extractive_qa
+path: germanquad/test.parquet
+context_column: context
+question_column: question
+references_column: reference
diff --git a/benchmarks/configs/dataset/imdb-coarse.yaml b/benchmarks/configs/dataset/imdb-coarse.yaml
new file mode 100644
index 000000000..030be214d
--- /dev/null
+++ b/benchmarks/configs/dataset/imdb-coarse.yaml
@@ -0,0 +1,5 @@
+name: imdb-coarse
+dataset_type: document_classification_single_label
+path: imdb/imdb_cleaned.parquet
+text_column: description
+label_column: genre
diff --git a/benchmarks/configs/dataset/imdb-multi-label.yaml b/benchmarks/configs/dataset/imdb-multi-label.yaml
new file mode 100644
index 000000000..38f93d871
--- /dev/null
+++ b/benchmarks/configs/dataset/imdb-multi-label.yaml
@@ -0,0 +1,5 @@
+name: imdb-multi-label
+dataset_type: document_classification_multi_label
+path: imdb/imdb_cleaned.parquet
+text_column: description
+label_column: expanded-genres
diff --git a/benchmarks/configs/dataset/muc4.yaml b/benchmarks/configs/dataset/muc4.yaml
new file mode 100644
index 000000000..2c2adf12f
--- /dev/null
+++ b/benchmarks/configs/dataset/muc4.yaml
@@ -0,0 +1,11 @@
+name: muc4
+dataset_type: template_filling
+path: muc/muc.parquet
+context_column: doctext
+slot_columns:
+ incident: incident
+ perpetrator: perpetrator
+ group_perpetrator: group perpetrator
+ victim: victim
+ target: target
+ weapon: weapon
diff --git a/benchmarks/configs/dataset/pubmed200k.yaml b/benchmarks/configs/dataset/pubmed200k.yaml
new file mode 100644
index 000000000..0b3f67611
--- /dev/null
+++ b/benchmarks/configs/dataset/pubmed200k.yaml
@@ -0,0 +1,5 @@
+name: pubmed200k
+dataset_type: sequential_sentence_classification
+path: pubmed200k/test.parquet
+sentences_column: sentences
+labels_column: labels
diff --git a/benchmarks/configs/dataset/squad.yaml b/benchmarks/configs/dataset/squad.yaml
new file mode 100644
index 000000000..ddc92263b
--- /dev/null
+++ b/benchmarks/configs/dataset/squad.yaml
@@ -0,0 +1,6 @@
+name: squad
+dataset_type: extractive_qa
+path: squad/validation.parquet
+context_column: context
+question_column: question
+references_column: reference
diff --git a/benchmarks/configs/dataset/squad2.yaml b/benchmarks/configs/dataset/squad2.yaml
new file mode 100644
index 000000000..f2722a375
--- /dev/null
+++ b/benchmarks/configs/dataset/squad2.yaml
@@ -0,0 +1,6 @@
+name: squad2
+dataset_type: extractive_qa
+path: squad2/validation.parquet
+context_column: context
+question_column: question
+references_column: reference
diff --git a/benchmarks/configs/dataset/tagesschau-coarse.yaml b/benchmarks/configs/dataset/tagesschau-coarse.yaml
new file mode 100644
index 000000000..17286e74c
--- /dev/null
+++ b/benchmarks/configs/dataset/tagesschau-coarse.yaml
@@ -0,0 +1,5 @@
+name: tagesschau-coarse
+dataset_type: document_classification_single_label
+path: tagesschau/tagesschau_cleaned.parquet
+text_column: article
+label_column: main_tag
diff --git a/benchmarks/configs/dataset/tagesschau-fine.yaml b/benchmarks/configs/dataset/tagesschau-fine.yaml
new file mode 100644
index 000000000..2391a5cbf
--- /dev/null
+++ b/benchmarks/configs/dataset/tagesschau-fine.yaml
@@ -0,0 +1,5 @@
+name: tagesschau-fine
+dataset_type: document_classification_single_label
+path: tagesschau/tagesschau_cleaned.parquet
+text_column: article
+label_column: tag
diff --git a/benchmarks/configs/experiment/document_classification_20newsgroups_coarse_v1.yaml b/benchmarks/configs/experiment/document_classification_20newsgroups_coarse_v1.yaml
new file mode 100644
index 000000000..8666d723b
--- /dev/null
+++ b/benchmarks/configs/experiment/document_classification_20newsgroups_coarse_v1.yaml
@@ -0,0 +1,23 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: 20newsgroups
+
+experiment_name: document_classification_coarse
+# run_name: llama32_3b_20newsgroups_zeroshot_v1
+
+max_examples: 120
+
+prompt_template: document_classification_single_label_v1_en.j2
+prompt_variables:
+ labels:
+ - alt.atheism
+ - comp.graphics
+ - sci.space
+ - talk.politics.mideast
+
+answer_schema: newsgroups20_schema.NewsgroupClassificationSchemaV1
+
+metrics:
+ - classification_macro_metrics
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/document_classification_bbc_coarse_v1.yaml b/benchmarks/configs/experiment/document_classification_bbc_coarse_v1.yaml
new file mode 100644
index 000000000..8d59a0203
--- /dev/null
+++ b/benchmarks/configs/experiment/document_classification_bbc_coarse_v1.yaml
@@ -0,0 +1,35 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: bbc-coarse
+
+experiment_name: document_classification_coarse
+# run_name: llama32_3b_bbc_coarse_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: document_classification_single_label_v1_en.j2
+prompt_variables:
+ labels:
+ - uk - News about the United Kingdom, including politics and domestic topics.
+ - world - News about regions outside of the UK.
+ - sport - News about all kinds of sports.
+ - misc - Other news such as business, education, entertainment, health, science, and technology.
+
+system_prompt_template: document_classification_system_en.j2
+system_prompt_variables:
+ project_name: BBC
+ project_description: An analysis of topics discussed in the United Kingdom based on BBC news and articles.
+
+answer_schema: document_classification_schema.BBCCoarseClassificationSchemaV1
+
+metrics:
+ - classification_macro_metrics
+ - classification_weighted_metrics
+
+artifacts:
+ - classification_confusion_matrix
+ - classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/document_classification_bbc_fine_v1.yaml b/benchmarks/configs/experiment/document_classification_bbc_fine_v1.yaml
new file mode 100644
index 000000000..3fbab4643
--- /dev/null
+++ b/benchmarks/configs/experiment/document_classification_bbc_fine_v1.yaml
@@ -0,0 +1,57 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: bbc-fine
+
+experiment_name: document_classification_fine
+# run_name: llama32_3b_bbc_fine_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: document_classification_single_label_v1_en.j2
+prompt_variables:
+ labels:
+ - uk/england
+ - uk/scotland
+ - uk/wales
+ - uk/northern-ireland
+ - uk/politics
+ - world/africa
+ - world/asia
+ - world/australia
+ - world/europe
+ - world/latin-america
+ - world/middle-east
+ - world/us
+ - sport/athletics
+ - sport/boxing
+ - sport/cricket
+ - sport/football
+ - sport/formula1
+ - sport/rugby
+ - sport/tennis
+ - misc/business
+ - misc/education
+ - misc/election
+ - misc/entertainment
+ - misc/health
+ - misc/science
+ - misc/technology
+
+system_prompt_template: document_classification_system_en.j2
+system_prompt_variables:
+ project_name: BBC
+ project_description: An analysis of topics discussed in the United Kingdom based on BBC news and articles.
+
+answer_schema: document_classification_schema.BBCFineClassificationSchemaV1
+
+metrics:
+ - classification_macro_metrics
+ - classification_weighted_metrics
+
+artifacts:
+ - classification_confusion_matrix
+ - classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/document_classification_imdb_coarse_v1.yaml b/benchmarks/configs/experiment/document_classification_imdb_coarse_v1.yaml
new file mode 100644
index 000000000..d6723d7bc
--- /dev/null
+++ b/benchmarks/configs/experiment/document_classification_imdb_coarse_v1.yaml
@@ -0,0 +1,47 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: imdb-coarse
+
+experiment_name: document_classification_coarse
+# run_name: llama32_3b_imdb_coarse_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: document_classification_single_label_v1_en.j2
+prompt_variables:
+ labels:
+ - action
+ - adventure
+ - animation
+ - biography
+ - crime
+ - family
+ - fantasy
+ - film-noir
+ - history
+ - horror
+ - mystery
+ - romance
+ - scifi
+ - sports
+ - thriller
+ - war
+
+system_prompt_template: document_classification_system_en.j2
+system_prompt_variables:
+ project_name: Movie Genres
+ project_description: An analysis of movie genres based on IMDb movie descriptions.
+
+answer_schema: document_classification_schema.IMDBCoarseClassificationSchemaV1
+
+metrics:
+ - classification_macro_metrics
+ - classification_weighted_metrics
+
+artifacts:
+ - classification_confusion_matrix
+ - classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/document_classification_imdb_multi_label_v1.yaml b/benchmarks/configs/experiment/document_classification_imdb_multi_label_v1.yaml
new file mode 100644
index 000000000..159cb3a4f
--- /dev/null
+++ b/benchmarks/configs/experiment/document_classification_imdb_multi_label_v1.yaml
@@ -0,0 +1,55 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: imdb-multi-label
+
+experiment_name: document_classification_multi_label
+# run_name: llama32_3b_imdb_multi_label_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: document_classification_multi_label_v1_en.j2
+prompt_variables:
+ labels:
+ - action
+ - adventure
+ - animation
+ - biography
+ - comedy
+ - crime
+ - drama
+ - family
+ - fantasy
+ - film-noir
+ - game-show
+ - history
+ - horror
+ - music
+ - musical
+ - mystery
+ - news
+ - reality-tv
+ - romance
+ - sci-fi
+ - sport
+ - talk-show
+ - thriller
+ - war
+ - western
+
+system_prompt_template: document_classification_system_en.j2
+system_prompt_variables:
+ project_name: Movie Genres
+ project_description: An analysis of movie genres based on IMDb movie descriptions.
+
+answer_schema: document_classification_schema.IMDBMultiLabelClassificationSchemaV1
+
+metrics:
+ - multilabel_weighted_metrics
+
+artifacts:
+ - multilabel_confusion_matrices
+ - multilabel_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/document_classification_tagesschau_coarse_v1.yaml b/benchmarks/configs/experiment/document_classification_tagesschau_coarse_v1.yaml
new file mode 100644
index 000000000..2b9991bed
--- /dev/null
+++ b/benchmarks/configs/experiment/document_classification_tagesschau_coarse_v1.yaml
@@ -0,0 +1,35 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: tagesschau-coarse
+
+experiment_name: document_classification_coarse
+# run_name: llama32_3b_tagesschau_coarse_v1
+
+max_examples: 100
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: document_classification_single_label_v1_de.j2
+prompt_variables:
+ labels:
+ - inland - Nachrichten über Deutschland.
+ - ausland - Nachrichten über das Ausland.
+ - wirtschaft - Nachrichten über Wirtschaft, Börse und Unternehmen.
+ - wissen - Nachrichten über Wissenschaft, Forschung, Gesundheit und Klima.
+
+system_prompt_template: document_classification_system_de.j2
+system_prompt_variables:
+ project_name: Tagesschau
+ project_description: Eine Analyse der Themen in Deutschland basierend auf den Nachrichten und Artikeln der Tagesschau.
+
+answer_schema: document_classification_schema.TagesschauCoarseClassificationSchemaV1
+
+metrics:
+ - classification_macro_metrics
+ - classification_weighted_metrics
+
+artifacts:
+ - classification_confusion_matrix
+ - classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/document_classification_tagesschau_fine_v1.yaml b/benchmarks/configs/experiment/document_classification_tagesschau_fine_v1.yaml
new file mode 100644
index 000000000..6b60e7e3a
--- /dev/null
+++ b/benchmarks/configs/experiment/document_classification_tagesschau_fine_v1.yaml
@@ -0,0 +1,51 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: tagesschau-fine
+
+experiment_name: document_classification_fine
+# run_name: llama32_3b_tagesschau_fine_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: document_classification_single_label_v1_de.j2
+prompt_variables:
+ labels:
+ - inland/deutschlandtrend
+ - inland/gesellschaft
+ - inland/innenpolitik
+ - inland/mittendrin
+ - ausland/afrika
+ - ausland/amerika
+ - ausland/asien
+ - ausland/europa
+ - ausland/ozeanien
+ - wirtschaft/boerse
+ - wirtschaft/finanzen
+ - wirtschaft/konjunktur
+ - wirtschaft/technologie
+ - wirtschaft/unternehmen
+ - wirtschaft/verbraucher
+ - wirtschaft/weltwirtschaft
+ - wissen/forschung
+ - wissen/gesundheit
+ - wissen/klima
+ - wissen/technologie
+
+system_prompt_template: document_classification_system_de.j2
+system_prompt_variables:
+ project_name: Tagesschau
+ project_description: Eine Analyse der Themen in Deutschland basierend auf den Nachrichten und Artikeln der Tagesschau.
+
+answer_schema: document_classification_schema.TagesschauFineClassificationSchemaV1
+
+metrics:
+ - classification_macro_metrics
+ - classification_weighted_metrics
+
+artifacts:
+ - classification_confusion_matrix
+ - classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/extractive_qa_germanquad_v1.yaml b/benchmarks/configs/experiment/extractive_qa_germanquad_v1.yaml
new file mode 100644
index 000000000..ff631ca48
--- /dev/null
+++ b/benchmarks/configs/experiment/extractive_qa_germanquad_v1.yaml
@@ -0,0 +1,17 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: germanquad
+
+experiment_name: extractive_qa
+# run_name: llama32_3b_germanquad_v1
+
+prompt_template: extractive_qa_v1_de.j2
+
+system_prompt_template: extractive_qa_system_de.j2
+
+answer_schema: extractive_qa_schema.ExtractiveQAAnswerSchemaV1
+
+metrics:
+ - extractive_qa_squad2_metrics
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/extractive_qa_squad1_v1.yaml b/benchmarks/configs/experiment/extractive_qa_squad1_v1.yaml
new file mode 100644
index 000000000..12b85754a
--- /dev/null
+++ b/benchmarks/configs/experiment/extractive_qa_squad1_v1.yaml
@@ -0,0 +1,21 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: squad
+
+experiment_name: extractive_qa
+# run_name: llama32_3b_squad1_v1
+
+max_examples: 1000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: extractive_qa_squad1_v1_en.j2
+
+system_prompt_template: extractive_qa_system_en.j2
+
+answer_schema: extractive_qa_schema.ExtractiveQAAnswerSchemaV1
+
+metrics:
+ - extractive_qa_squad2_metrics
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/extractive_qa_squad2_v1.yaml b/benchmarks/configs/experiment/extractive_qa_squad2_v1.yaml
new file mode 100644
index 000000000..1e69e2ea5
--- /dev/null
+++ b/benchmarks/configs/experiment/extractive_qa_squad2_v1.yaml
@@ -0,0 +1,19 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: squad2
+
+experiment_name: extractive_qa
+# run_name: llama32_3b_squad2_v1
+
+prompt_template: extractive_qa_v1_en.j2
+prompt_variables:
+ no_answer_label: Not answerable
+
+system_prompt_template: extractive_qa_system_en.j2
+
+answer_schema: extractive_qa_schema.ExtractiveQAAnswerSchemaV1
+
+metrics:
+ - extractive_qa_squad2_metrics
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/sequential_sentence_classification_coarsediscourse_v1.yaml b/benchmarks/configs/experiment/sequential_sentence_classification_coarsediscourse_v1.yaml
new file mode 100644
index 000000000..8c4e73bc4
--- /dev/null
+++ b/benchmarks/configs/experiment/sequential_sentence_classification_coarsediscourse_v1.yaml
@@ -0,0 +1,50 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: coarsediscourse
+
+experiment_name: sequential_sentence_classification
+# run_name: llama32_3b_coarsediscourse_zeroshot_v1
+
+max_examples: 500
+
+prompt_template: sequential_sentence_classification_v1_en.j2
+prompt_variables:
+ input_name: thread
+ unit_name: post/comment
+
+system_prompt_template: sequential_sentence_classification_system_v1_en.j2
+system_prompt_variables:
+ annotation_target: posts and comments of reddit threads
+ project_name: Discourse Act Analysis of Reddit Discussions
+ project_details: analyzing the discourse acts of Reddit threads. Posts and comments are categorized by coarse discourse acts.
+ annotation_guidelines:
+ - >-
+ question - A comment with a question or a request seeking some form of feedback, help, or other kinds of responses. While the comment may contain a question mark, it is not required. For instance, it might be posed in the form of a statement but still soliciting a response. Also, not everything that has a question mark is automatically a QUESTION. For instance, rhetorical questions are not seeking a response. Relation: This comment might be the first in a thread and have no relation to another comment. Or, it could be a clarifying or followup QUESTION linking to any prior comment.
+ - >-
+ answer - A comment that is responding to a QUESTION by answering the question or fulfilling the request. There can be more than one ANSWER responding to a QUESTION. Relation: An ANSWER is always linked to a QUESTION.
+ - >-
+ announcement - A comment that is presenting some new information to the community, such as a piece of news, a link to something, a story, an opinion, a review, or insight. Relation: This comment has no relation to a prior comment and is always the initial post in a thread.
+ - >-
+ agreement - A comment that is expressing agreement with some information presented in a prior comment. It can be agreeing with a point made, providing supporting evidence, providing a positive example or experience, or confirming or acknowledging a point made. Relation: This comment is always linked to a prior comment to which it is agreeing.
+ - >-
+ appreciation - A comment that is expressing thanks, appreciation, excitement, or praise in response to another comment. In contrast to AGREEMENT, it is not evaluating the merits of the points brought up. Comments of this category are more interpersonal as opposed to informational. Relation: This comment is always linked to a prior comment for which it is expressing appreciation.
+ - >-
+ disagreement - A comment that is correcting, criticizing, contradicting, or objecting to a point made in a prior comment. It can also be providing evidence to support its disagreement, such as an example or contrary anecdote.Relation: This comment is always linked to a prior comment to which it is disagreeing.
+ - >-
+ negative reaction - A comment that is expressing a negative reaction to a previous comment, such as attacking or mocking the commenter, or expressing emotions like disgust, derision, or anger, to the contents of the prior comment. This comment is not discussing the merits of the points made in a prior comment or trying to correct them. Relation: This comment is always linked to a prior comment to which it is negatively reacting.
+ - >-
+ elaboration - A comment that is adding additional information on to another comment. Oftentimes, one can imagine it simply appended to the end of the comment it elaborates on. One can elaborate on many kinds of comments, for instance, a questionasker elaborating on their question to provide more context, or someone elaborating on an answer to add more information. Relation: This comment is always linked to a prior comment upon which it is elaborating.
+ - >-
+ humor - This comment is primarily a joke, a piece of sarcasm, or a pun intended to get a laugh or be silly but not trying to add information. If a comment is sarcastic but using sarcasm to make a point or provide feedback, then it may belong in a different category. Relation: At times, this comment links to another comment but other times it may not be responding to anything.
+ - >-
+ other - A comment that does not fit any of the previous definitions.
+
+answer_schema: sequential_sentence_classification_schema.CoarseDiscourseSequentialSentenceClassificationSchemaV1
+
+metrics:
+ - sequential_sentence_classification_metrics
+
+artifacts:
+ - sequential_sentence_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/sequential_sentence_classification_csabstruct_v1.yaml b/benchmarks/configs/experiment/sequential_sentence_classification_csabstruct_v1.yaml
new file mode 100644
index 000000000..1e6d4469f
--- /dev/null
+++ b/benchmarks/configs/experiment/sequential_sentence_classification_csabstruct_v1.yaml
@@ -0,0 +1,40 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: csabstruct
+
+experiment_name: sequential_sentence_classification
+# run_name: llama32_3b_csabstruct_zeroshot_v1
+
+max_examples: 500
+
+prompt_template: sequential_sentence_classification_v1_en.j2
+prompt_variables:
+ input_name: document
+ unit_name: sentence
+
+system_prompt_template: sequential_sentence_classification_system_v1_en.j2
+system_prompt_variables:
+ annotation_target: sentences of computer science abstracts
+ project_name: Rethorical Roles Analysis of CS Abstracts
+ project_details: analyzing the rhetorical roles of sentences in computer science abstracts. The abstracts are collected from the Semantic Scholar corpus.
+ annotation_guidelines:
+ - >-
+ background - Provides context or previous knowledge relevant to the research topic. Think of it as setting the stage for the study.
+ - >-
+ method - Describes the procedures and techniques used in the research. This includes the study design, data collection, and analysis methods.
+ - >-
+ objective - States the main goal or purpose of the research. What question is this work trying to answer?
+ - >-
+ other - Any sentence that does not fit into the above categories. This could be discussion, analysis, limitations, or concluding remarks.
+ - >-
+ result - Presents the findings or outcomes of the research. This often includes statistical data, tables, and figures.
+
+answer_schema: sequential_sentence_classification_schema.CSABStructSequentialSentenceClassificationSchemaV1
+
+metrics:
+ - sequential_sentence_classification_metrics
+
+artifacts:
+ - sequential_sentence_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/sequential_sentence_classification_daily_dialog_v1.yaml b/benchmarks/configs/experiment/sequential_sentence_classification_daily_dialog_v1.yaml
new file mode 100644
index 000000000..6b23e2ebe
--- /dev/null
+++ b/benchmarks/configs/experiment/sequential_sentence_classification_daily_dialog_v1.yaml
@@ -0,0 +1,46 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: daily-dialog
+
+experiment_name: sequential_sentence_classification
+# run_name: llama32_3b_daily_dialog_zeroshot_v1
+
+max_examples: 500
+
+prompt_template: sequential_sentence_classification_v1_en.j2
+prompt_variables:
+ input_name: dialog
+ unit_name: utterance
+
+system_prompt_template: sequential_sentence_classification_system_v1_en.j2
+system_prompt_variables:
+ annotation_target: utterances in written dialogs
+ project_name: Emotion Analysis of Daily Dialogs
+ project_details: analyzing basic emotions of written dialogs on common topics. The dialogs reflect our daily communication way.
+ annotation_guidelines:
+ - >-
+ fear - A feeling of apprehension or dread in response to a perceived threat or danger. It can range from mild anxiety to intense terror.
+ - >-
+ disgust - A feeling of revulsion or aversion, often triggered by something perceived as unpleasant, unsanitary, or morally offensive.
+ - >-
+ neutral - A state of emotional balance or equilibrium, where no particular emotion is dominant.
+ - >-
+ excited - A state of heightened arousal and positive anticipation. It often involves feelings of enthusiasm, eagerness, and energy.
+ - >-
+ anger - A feeling of intense displeasure or hostility, often triggered by a perceived wrong or injustice. It can manifest as irritation, frustration, rage, or fury.
+ - >-
+ surprise - A brief emotional state in response to an unexpected event. It can be positive, negative, or neutral, depending on the nature of the surprise.
+ - >-
+ sadness - A feeling of sorrow, grief, or disappointment. It can range from mild melancholy to intense despair.
+ - >-
+ joy - A feeling of happiness, contentment, or pleasure. It can manifest as amusement or love.
+
+answer_schema: sequential_sentence_classification_schema.DailyDialogSequentialSentenceClassificationSchemaV1
+
+metrics:
+ - sequential_sentence_classification_metrics
+
+artifacts:
+ - sequential_sentence_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/sequential_sentence_classification_emotion_lines_v1.yaml b/benchmarks/configs/experiment/sequential_sentence_classification_emotion_lines_v1.yaml
new file mode 100644
index 000000000..49ca6b426
--- /dev/null
+++ b/benchmarks/configs/experiment/sequential_sentence_classification_emotion_lines_v1.yaml
@@ -0,0 +1,46 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: emotion-lines
+
+experiment_name: sequential_sentence_classification
+# run_name: llama32_3b_emotion_lines_zeroshot_v1
+
+max_examples: 500
+
+prompt_template: sequential_sentence_classification_v1_en.j2
+prompt_variables:
+ input_name: dialog
+ unit_name: utterance
+
+system_prompt_template: sequential_sentence_classification_system_v1_en.j2
+system_prompt_variables:
+ annotation_target: utterances in spoken dialogs
+ project_name: Emotion Analysis of Friends TV Show Dialogs
+ project_details: analyzing basic emotions of spoken dialogs. The dialogs are collected from Friends TV scripts.
+ annotation_guidelines:
+ - >-
+ fear - A feeling of apprehension or dread in response to a perceived threat or danger. It can range from mild anxiety to intense terror.
+ - >-
+ disgust - A feeling of revulsion or aversion, often triggered by something perceived as unpleasant, unsanitary, or morally offensive.
+ - >-
+ excited - A state of heightened arousal and positive anticipation. It often involves feelings of enthusiasm, eagerness, and energy.
+ - >-
+ anger - A feeling of intense displeasure or hostility, often triggered by a perceived wrong or injustice. It can manifest as irritation, frustration, rage, or fury.
+ - >-
+ surprise - A brief emotional state in response to an unexpected event. It can be positive, negative, or neutral, depending on the nature of the surprise.
+ - >-
+ sadness - A feeling of sorrow, grief, or disappointment. It can range from mild melancholy to intense despair.
+ - >-
+ joy - A feeling of happiness, contentment, or pleasure. It can manifest as amusement or love.
+ - >-
+ neutral - A state of emotional balance or equilibrium, where no particular emotion is dominant.
+
+answer_schema: sequential_sentence_classification_schema.EmotionLinesSequentialSentenceClassificationSchemaV1
+
+metrics:
+ - sequential_sentence_classification_metrics
+
+artifacts:
+ - sequential_sentence_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/sequential_sentence_classification_pubmed200k_v1.yaml b/benchmarks/configs/experiment/sequential_sentence_classification_pubmed200k_v1.yaml
new file mode 100644
index 000000000..7bfae5da4
--- /dev/null
+++ b/benchmarks/configs/experiment/sequential_sentence_classification_pubmed200k_v1.yaml
@@ -0,0 +1,40 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: pubmed200k
+
+experiment_name: sequential_sentence_classification
+# run_name: llama32_3b_pubmed200k_zeroshot_v1
+
+max_examples: 500
+
+prompt_template: sequential_sentence_classification_v1_en.j2
+prompt_variables:
+ input_name: document
+ unit_name: sentence
+
+system_prompt_template: sequential_sentence_classification_system_v1_en.j2
+system_prompt_variables:
+ annotation_target: sentences of PubMed abstracts
+ project_name: Rethorical Roles Analysis of PubMed Abstracts
+ project_details: analyzing the rhetorical roles of sentences in abstracts of randomized controlled trials. The abstracts are collected from PubMed.
+ annotation_guidelines:
+ - >-
+ background - Provides context or previous knowledge relevant to the research topic. Think of it as setting the stage for the study.
+ - >-
+ methods - Describes the procedures and techniques used in the research. This includes the study design, data collection, and analysis methods.
+ - >-
+ objective - States the main goal or purpose of the research. What question is this work trying to answer?
+ - >-
+ results - Presents the findings or outcomes of the research. This often includes statistical data, tables, and figures.
+ - >-
+ conclusions - Summarizes the key findings of the research and draw inferences from those findings. They provide closure to the abstract, summarizing the overall contribution of the research.
+
+answer_schema: sequential_sentence_classification_schema.Pubmed200KSequentialSentenceClassificationSchemaV1
+
+metrics:
+ - sequential_sentence_classification_metrics
+
+artifacts:
+ - sequential_sentence_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/span_classification_direct_quotation_v1.yaml b/benchmarks/configs/experiment/span_classification_direct_quotation_v1.yaml
new file mode 100644
index 000000000..76ed8415f
--- /dev/null
+++ b/benchmarks/configs/experiment/span_classification_direct_quotation_v1.yaml
@@ -0,0 +1,28 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: german-quotations-direct
+
+experiment_name: span_classification
+# run_name: llama32_3b_direct_quotation_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: span_classification_v1_de.j2
+prompt_variables:
+ examples: |
+ {"category": "Sprecher", "text": "Angela Merkel"}
+ {"category": "Direkte Rede", "text": "\"Wir schaffen das!\""}
+
+system_prompt_template: span_classification_system_de.j2
+
+answer_schema: span_classification_schema.DirectQuotationSpanClassificationSchemaV1
+
+metrics:
+ - span_classification_metrics
+
+artifacts:
+ - span_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/span_classification_fewnerd_coarse_v1.yaml b/benchmarks/configs/experiment/span_classification_fewnerd_coarse_v1.yaml
new file mode 100644
index 000000000..b55ef34f4
--- /dev/null
+++ b/benchmarks/configs/experiment/span_classification_fewnerd_coarse_v1.yaml
@@ -0,0 +1,28 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: fewnerd-coarse
+
+experiment_name: span_classification
+# run_name: llama32_3b_fewnerd_coarse_v1
+
+max_examples: 100
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: span_classification_v1_en.j2
+prompt_variables:
+ examples: |
+ {"category": "art", "text": "Mona Lisa"}
+ {"category": "building", "text": "Eiffel Tower"}
+
+system_prompt_template: span_classification_system_en.j2
+
+answer_schema: span_classification_schema.FewnerdCoarseSpanClassificationSchemaV1
+
+metrics:
+ - span_classification_metrics
+
+artifacts:
+ - span_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/span_classification_fewnerd_fine_v1.yaml b/benchmarks/configs/experiment/span_classification_fewnerd_fine_v1.yaml
new file mode 100644
index 000000000..d6ee9f428
--- /dev/null
+++ b/benchmarks/configs/experiment/span_classification_fewnerd_fine_v1.yaml
@@ -0,0 +1,28 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: fewnerd-fine
+
+experiment_name: span_classification
+# run_name: llama32_3b_fewnerd_fine_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: span_classification_v1_en.j2
+prompt_variables:
+ examples: |
+ {"category": "art - painting", "text": "Mona Lisa"}
+ {"category": "building - other", "text": "Eiffel Tower"}
+
+system_prompt_template: span_classification_system_en.j2
+
+answer_schema: span_classification_schema.FewnerdFineSpanClassificationSchemaV1
+
+metrics:
+ - span_classification_metrics
+
+artifacts:
+ - span_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/span_classification_germanler_coarse_v1.yaml b/benchmarks/configs/experiment/span_classification_germanler_coarse_v1.yaml
new file mode 100644
index 000000000..8ff9b1a1e
--- /dev/null
+++ b/benchmarks/configs/experiment/span_classification_germanler_coarse_v1.yaml
@@ -0,0 +1,28 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: german-ler-coarse
+
+experiment_name: span_classification
+# run_name: llama32_3b_germanler_coarse_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: span_classification_v1_de.j2
+prompt_variables:
+ examples: |
+ {"category": "person", "text": "Angela Merkel"}
+ {"category": "gesetz", "text": "Artikel 5"}
+
+system_prompt_template: span_classification_system_de.j2
+
+answer_schema: span_classification_schema.GermanLERCoarseSpanClassificationSchemaV1
+
+metrics:
+ - span_classification_metrics
+
+artifacts:
+ - span_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/span_classification_germanler_fine_v1.yaml b/benchmarks/configs/experiment/span_classification_germanler_fine_v1.yaml
new file mode 100644
index 000000000..73d863805
--- /dev/null
+++ b/benchmarks/configs/experiment/span_classification_germanler_fine_v1.yaml
@@ -0,0 +1,28 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: german-ler-fine
+
+experiment_name: span_classification
+# run_name: llama32_3b_germanler_fine_v1
+
+max_examples: 10000
+sample_randomly: true
+sample_random_state: 42
+
+prompt_template: span_classification_v1_de.j2
+prompt_variables:
+ examples: |
+ {"category": "Person", "text": "Angela Merkel"}
+ {"category": "Gesetz", "text": "Artikel 5"}
+
+system_prompt_template: span_classification_system_de.j2
+
+answer_schema: span_classification_schema.GermanLERFineSpanClassificationSchemaV1
+
+metrics:
+ - span_classification_metrics
+
+artifacts:
+ - span_classification_report
+
+temperature: 0.0
diff --git a/benchmarks/configs/experiment/template_filling_muc4_v1.yaml b/benchmarks/configs/experiment/template_filling_muc4_v1.yaml
new file mode 100644
index 000000000..46f0e4726
--- /dev/null
+++ b/benchmarks/configs/experiment/template_filling_muc4_v1.yaml
@@ -0,0 +1,17 @@
+defaults:
+ - /model: llama32_3b
+ - /dataset: muc4
+
+experiment_name: template_filling
+# run_name: llama32_3b_muc4_v1
+
+prompt_template: template_filling_muc4_v1_en.j2
+
+system_prompt_template: template_filling_system_en.j2
+
+answer_schema: template_filling_schema.TemplateFillingMUC4AnswerSchemaV1
+
+metrics:
+ - template_filling_muc4_metrics
+
+temperature: 0.0
diff --git a/benchmarks/configs/model/llama32_3b.yaml b/benchmarks/configs/model/llama32_3b.yaml
new file mode 100644
index 000000000..13aff7e1e
--- /dev/null
+++ b/benchmarks/configs/model/llama32_3b.yaml
@@ -0,0 +1,4 @@
+name: meta-llama/Llama-3.2-3B-Instruct
+alias: llama32_3b
+max_len: 8192
+gpu_memory_utilization: 0.5
diff --git a/benchmarks/datasets/20newsgroups/.gitignore b/benchmarks/datasets/20newsgroups/.gitignore
new file mode 100644
index 000000000..cc24f6078
--- /dev/null
+++ b/benchmarks/datasets/20newsgroups/.gitignore
@@ -0,0 +1,4 @@
+*
+!.gitignore
+!README.md
+!20newsgroups_dataset_creation.py
diff --git a/benchmarks/datasets/20newsgroups/20newsgroups_dataset_creation.py b/benchmarks/datasets/20newsgroups/20newsgroups_dataset_creation.py
new file mode 100644
index 000000000..b733f5feb
--- /dev/null
+++ b/benchmarks/datasets/20newsgroups/20newsgroups_dataset_creation.py
@@ -0,0 +1,112 @@
+from __future__ import annotations
+
+import argparse
+import re
+from pathlib import Path
+from typing import Any, Literal, cast
+
+import pandas as pd
+from sklearn.datasets import fetch_20newsgroups
+
+TARGET_CATEGORIES = [
+ "alt.atheism",
+ "comp.graphics",
+ "sci.space",
+ "talk.politics.mideast",
+]
+
+
+def _clean_text(text: str, max_chars: int) -> str:
+ normalized = re.sub(r"\s+", " ", text).strip()
+ if len(normalized) <= max_chars:
+ return normalized
+ return normalized[:max_chars].rstrip()
+
+
+def preprocess_20newsgroups(
+ output_raw: Path,
+ output_processed: Path,
+ subset: Literal["train", "test", "all"],
+ samples_per_class: int,
+ seed: int,
+ max_chars: int,
+) -> None:
+ dataset = cast(
+ Any,
+ fetch_20newsgroups(
+ subset=subset,
+ categories=TARGET_CATEGORIES,
+ remove=("headers", "footers", "quotes"),
+ ),
+ )
+
+ targets = [int(item) for item in dataset.target]
+
+ df = pd.DataFrame(
+ {
+ "document_id": list(range(len(dataset.data))),
+ "document_text": [
+ _clean_text(str(text), max_chars=max_chars) for text in dataset.data
+ ],
+ "target": targets,
+ }
+ )
+ df["label"] = df["target"].map(lambda x: TARGET_CATEGORIES[int(x)])
+
+ # remove rows with empty document text after cleaning
+ df = df[df["document_text"].str.strip() != ""].copy()
+
+ output_raw.parent.mkdir(parents=True, exist_ok=True)
+ output_processed.parent.mkdir(parents=True, exist_ok=True)
+
+ df.to_parquet(output_raw, index=False)
+
+ sampled_parts: list[pd.DataFrame] = []
+ for _, group in df.groupby("label"):
+ sampled_parts.append(
+ group.sample(
+ n=min(samples_per_class, len(group)),
+ random_state=seed,
+ )
+ )
+
+ sampled_df = pd.concat(sampled_parts, ignore_index=True)
+
+ sampled_df.to_parquet(output_processed, index=False)
+
+ print("20 Newsgroups preprocessing completed.")
+ print(f"Raw rows: {len(df)} -> {output_raw}")
+ print(f"Label distribution (raw):")
+ print(df["label"].value_counts().to_dict())
+ print(f"Sampled rows: {len(sampled_df)} -> {output_processed}")
+ print("Label distribution (sampled):")
+ print(sampled_df["label"].value_counts().to_dict())
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description="Preprocess 20 Newsgroups for benchmarking"
+ )
+ parser.add_argument("--subset", default="test", choices=["train", "test", "all"])
+ parser.add_argument("--samples-per-class", type=int, default=30)
+ parser.add_argument("--seed", type=int, default=42)
+ parser.add_argument("--max-chars", type=int, default=3000)
+ return parser.parse_args()
+
+
+def main() -> None:
+ args = parse_args()
+ project_root = Path(__file__).resolve().parents[2]
+
+ preprocess_20newsgroups(
+ output_raw=project_root / "datasets/20newsgroups/test_full_raw.parquet",
+ output_processed=project_root / "datasets/20newsgroups/test_sampled.parquet",
+ subset=args.subset,
+ samples_per_class=args.samples_per_class,
+ seed=args.seed,
+ max_chars=args.max_chars,
+ )
+
+
+if __name__ == "__main__":
+ main()
diff --git a/benchmarks/datasets/20newsgroups/README.md b/benchmarks/datasets/20newsgroups/README.md
new file mode 100644
index 000000000..67142e9fc
--- /dev/null
+++ b/benchmarks/datasets/20newsgroups/README.md
@@ -0,0 +1,70 @@
+# 20 Newsgroups (Benchmark Dataset)
+
+## What Is This Dataset About?
+
+This dataset is a 4-class subset of the classic 20 Newsgroups corpus for topic/document classification.
+
+In this repository, we keep the following target classes:
+
+- `alt.atheism`
+- `comp.graphics`
+- `sci.space`
+- `talk.politics.mideast`
+
+## Where Can It Be Found?
+
+- Scikit-learn dataset documentation:
+ - https://scikit-learn.org/stable/datasets/real_world.html#the-20-newsgroups-text-dataset
+- Loaded in our pipeline via `sklearn.datasets.fetch_20newsgroups`.
+
+## Links (Website / Download / Citation)
+
+- Scikit-learn API reference:
+ - https://scikit-learn.org/stable/modules/generated/sklearn.datasets.fetch_20newsgroups.html
+
+## Benchmark Task Usage
+
+- Task 1: Document Classification
+
+## Dataset Size (Current Files)
+
+- `test_sampled.parquet` (main benchmark file): 120 samples
+- `test_full_raw.parquet` (reference full split): 1478 samples
+
+## How We Preprocess It
+
+Preprocessing is implemented in `20newsgroups_dataset_creation.py`.
+
+Main steps:
+
+1. Load subset (`train`, `test`, or `all`) with selected categories.
+2. Remove metadata noise from raw posts:
+ - headers
+ - footers
+ - quotes
+3. Normalize whitespace and trim each document to a maximum character length (`max_chars`, default `3000`).
+4. Build a dataframe with:
+ - `document_id`
+ - `document_text`
+ - numeric `target`
+ - string `label` mapped from `target`
+5. Save full processed split to `test_full_raw.parquet`.
+6. Create label-balanced sampled set (default up to `30` samples per class) and save to `test_sampled.parquet`.
+
+## Final Dataset Structure
+
+### File: `test_full_raw.parquet`
+
+- `document_id`: integer document identifier
+- `document_text`: cleaned text content
+- `target`: integer class index
+- `label`: class name (string)
+
+### File: `test_sampled.parquet`
+
+- Same schema as `test_full_raw.parquet`
+- Contains class-balanced sampled records
+
+## Notes
+
+- The script currently writes output paths named `test_full_raw.parquet` and `test_sampled.parquet` regardless of selected subset argument.
diff --git a/benchmarks/datasets/bbc/.gitignore b/benchmarks/datasets/bbc/.gitignore
new file mode 100644
index 000000000..63de53581
--- /dev/null
+++ b/benchmarks/datasets/bbc/.gitignore
@@ -0,0 +1,4 @@
+*
+!.gitignore
+!README.md
+!bbc_dataset_creation.ipynb
diff --git a/benchmarks/datasets/bbc/README.md b/benchmarks/datasets/bbc/README.md
new file mode 100644
index 000000000..e2d5acd7e
--- /dev/null
+++ b/benchmarks/datasets/bbc/README.md
@@ -0,0 +1,141 @@
+# BBC News Alltime (Benchmark Dataset)
+
+## What Is This Dataset About?
+
+A large-scale BBC news corpus used for topic/document classification.
+
+The raw data contains article metadata and article text. In our benchmark, we derive topic labels from article link/tag structure and create a cleaned classification-ready dataset.
+
+## Where Can It Be Found?
+
+- Hugging Face dataset:
+ - https://huggingface.co/datasets/RealTimeData/bbc_news_alltime
+
+## Links (Website / Download / Citation)
+
+- Dataset card:
+ - https://huggingface.co/datasets/RealTimeData/bbc_news_alltime
+
+## Benchmark Task Usage
+
+- Task 1: Document Classification
+
+## Dataset Size (Current Files)
+
+- `bbc_cleaned.parquet` (main benchmark file): 81182 samples
+
+## Label Space (Most Important)
+
+The classification labels are derived from URL tags.
+
+### `main_tag` classes (4)
+
+- `uk` (35916)
+- `misc` (21268)
+- `world` (18642)
+- `sport` (5356)
+
+### `sub_tag` classes (26)
+
+- `africa` (918)
+- `asia` (2776)
+- `athletics` (182)
+- `australia` (700)
+- `boxing` (158)
+- `business` (8026)
+- `cricket` (500)
+- `education` (1175)
+- `election` (614)
+- `england` (14475)
+- `entertainment` (4776)
+- `europe` (6332)
+- `football` (3393)
+- `formula1` (179)
+- `health` (2897)
+- `latin-america` (728)
+- `middle-east` (1672)
+- `northern-ireland` (3433)
+- `politics` (7590)
+- `rugby` (347)
+- `science` (1817)
+- `scotland` (5265)
+- `technology` (1963)
+- `tennis` (597)
+- `us` (5516)
+- `wales` (5153)
+
+### `tag` classes (26)
+
+- `uk/england` (14475)
+- `misc/business` (8026)
+- `uk/politics` (7590)
+- `world/europe` (6332)
+- `world/us` (5516)
+- `uk/scotland` (5265)
+- `uk/wales` (5153)
+- `uk/entertainment` (4776)
+- `uk/northern-ireland` (3433)
+- `sport/football` (3393)
+- `uk/health` (2897)
+- `world/asia` (2776)
+- `uk/technology` (1963)
+- `uk/science` (1817)
+- `world/middle-east` (1672)
+- `uk/education` (1175)
+- `world/africa` (918)
+- `world/latin-america` (728)
+- `world/australia` (700)
+- `uk/election` (614)
+- `sport/tennis` (597)
+- `sport/cricket` (500)
+- `sport/rugby` (347)
+- `sport/athletics` (182)
+- `sport/formula1` (179)
+- `sport/boxing` (158)
+
+## How We Preprocess It
+
+Preprocessing is implemented in `bbc_dataset_creation.ipynb`.
+
+Main steps:
+
+1. Download/concatenate monthly slices (2018-2023) from Hugging Face.
+2. Save concatenated raw dataset to `bbc_news_alltime.parquet`.
+3. Drop noisy columns (`authors`, `top_image`).
+4. Parse article `link` path into hierarchical tags.
+5. Derive:
+ - `tags`
+ - `tags_len`
+ - `main_tag`
+ - `sub_tag`
+ - merged `tag`
+6. Filter noisy/rare groups and normalize some sub-tag names.
+7. Save cleaned dataset to `bbc_cleaned.parquet`.
+
+## Final Dataset Structure
+
+### File: `bbc_news_alltime.parquet` (raw combined)
+
+- `title`
+- `published_date`
+- `description`
+- `section`
+- `content`
+- `link`
+- `__index_level_0__` (pandas index artifact)
+
+### File: `bbc_cleaned.parquet` (classification-ready)
+
+- `title`
+- `published_date`
+- `description`
+- `section`
+- `content`
+- `link`
+- `count`
+- `tags`
+- `tags_len`
+- `main_tag`
+- `sub_tag`
+- `tag`
+- `__index_level_0__` (pandas index artifact)
diff --git a/benchmarks/datasets/bbc/bbc_dataset_creation.ipynb b/benchmarks/datasets/bbc/bbc_dataset_creation.ipynb
new file mode 100644
index 000000000..fddf49477
--- /dev/null
+++ b/benchmarks/datasets/bbc/bbc_dataset_creation.ipynb
@@ -0,0 +1,1390 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import datasets\n",
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Dataset Download"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dfs = []\n",
+ "# iterate over 2018 - 2023\n",
+ "for year in range(2018, 2024):\n",
+ " # iteratoe over months 1 - 12\n",
+ " for month in range(1, 13):\n",
+ " # create YYYY-MM string\n",
+ " date = f\"{year}-{month:02d}\"\n",
+ "\n",
+ " # get the dataset\n",
+ " ds = datasets.load_dataset('RealTimeData/bbc_news_alltime', date)\n",
+ " try:\n",
+ " df = ds[\"train\"].to_pandas()\n",
+ " except:\n",
+ " continue\n",
+ "\n",
+ " # append the data to the list\n",
+ " dfs.append(df)\n",
+ "\n",
+ "# concatenate all the dataframes\n",
+ "df = pd.concat(dfs)\n",
+ "\n",
+ "# remove the authors and top_image columns\n",
+ "df = df.drop(columns=[\"authors\", \"top_image\"])\n",
+ "\n",
+ "# save the data to a new parquet file\n",
+ "df.to_parquet(\"bbc_news_alltime.parquet\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Dataset Processing"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 139,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df = pd.read_parquet(\"datasets/bbc/bbc_news_alltime.parquet\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 140,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# count slashes\n",
+ "df[\"count\"] = df[\"link\"].apply(lambda x: len(x.split(\"/\")))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 141,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# filter out all rows where the count is not equal to 5 or 6\n",
+ "df = df[(df[\"count\"] == 5) | (df[\"count\"] == 6)]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 145,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from typing import List\n",
+ "\n",
+ "\n",
+ "def extract_tags(link: str) -> List[str]:\n",
+ " tags: List[str] = []\n",
+ " components = link.split(\"/\")\n",
+ " if len(components) == 6:\n",
+ " tags.append(components[3])\n",
+ " tags.append(components[4])\n",
+ " if len(components) == 5:\n",
+ " tags.append(components[3])\n",
+ "\n",
+ " article_name = components[-1]\n",
+ " tags.extend(article_name.split(\"-\")[:-1])\n",
+ " return tags\n",
+ "\n",
+ "\n",
+ "def extract_main_tags(link: str) -> List[str]:\n",
+ " tags = extract_tags(link)\n",
+ " if len(tags) > 1:\n",
+ " if tags[0] == \"news\" and tags[1] == \"world\":\n",
+ " return tags[1:]\n",
+ " if tags[0] == \"news\" and tags[1] == \"uk\":\n",
+ " return tags[1:]\n",
+ " if tags[0] == \"news\":\n",
+ " return [\"misc\"] + tags[1:]\n",
+ " \n",
+ " return tags\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 146,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# extract tags from links\n",
+ "df[\"tags\"] = df[\"link\"].apply(lambda x: extract_main_tags(x))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 147,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# count tags\n",
+ "df[\"tags_len\"] = df[\"tags\"].apply(lambda x: len(x))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 150,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# remove colums with tags_len <= 1\n",
+ "df = df[df[\"tags_len\"] > 1]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 152,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df[\"main_tag\"] = df[\"tags\"].apply(lambda x: x[0])\n",
+ "df[\"sub_tag\"] = df[\"tags\"].apply(lambda x: x[1])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 153,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
title
\n",
+ "
published_date
\n",
+ "
description
\n",
+ "
section
\n",
+ "
content
\n",
+ "
link
\n",
+ "
count
\n",
+ "
tags
\n",
+ "
tags_len
\n",
+ "
main_tag
\n",
+ "
sub_tag
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
59
\n",
+ "
Jake Livermore: West Brom say West Ham fan alt...
\n",
+ "
2018-01-03
\n",
+ "
West Brom say Jake Livermore confronted a West...
\n",
+ "
None
\n",
+ "
West Brom say Jake Livermore confronted a West...
\n",
+ "
http://www.bbc.co.uk/sport/football/42558360
\n",
+ "
6
\n",
+ "
[sport, football]
\n",
+ "
2
\n",
+ "
sport
\n",
+ "
football
\n",
+ "
\n",
+ "
\n",
+ "
61
\n",
+ "
Coronation Street's first barmaid Doreen Keogh...
\n",
+ "
2018-01-03
\n",
+ "
The Irish actress played Rovers Return's first...
\n",
+ "
Entertainment & Arts
\n",
+ "
Actress Doreen Keogh, who played the first Cor...
\n",
+ "
http://www.bbc.co.uk/news/entertainment-arts-4...
\n",
+ "
5
\n",
+ "
[misc, entertainment, arts]
\n",
+ "
3
\n",
+ "
misc
\n",
+ "
entertainment
\n",
+ "
\n",
+ "
\n",
+ "
62
\n",
+ "
A&E doctor: 'I feel like I'm fighting a losing...
\n",
+ "
2018-01-03
\n",
+ "
Tens of thousands of non-urgent NHS operations...
\n",
+ "
None
\n",
+ "
Tens of thousands of non-urgent NHS operations...
\n",
+ "
http://www.bbc.co.uk/news/health-42553597
\n",
+ "
5
\n",
+ "
[misc, health]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
health
\n",
+ "
\n",
+ "
\n",
+ "
63
\n",
+ "
AI early diagnosis could save heart and cancer...
\n",
+ "
2018-01-03
\n",
+ "
The systems will save billions of pounds by en...
\n",
+ "
Health
\n",
+ "
Sir John Bell believes that artificial intelli...
\n",
+ "
http://www.bbc.co.uk/news/health-42357257
\n",
+ "
5
\n",
+ "
[misc, health]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
health
\n",
+ "
\n",
+ "
\n",
+ "
64
\n",
+ "
Triple killer Theodore Johnson admits murderin...
\n",
+ "
2018-01-03
\n",
+ "
Theodore Johnson already had convictions for k...
\n",
+ "
London
\n",
+ "
Theodore Johnson beat Angela Best with a claw ...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-london-42...
\n",
+ "
5
\n",
+ "
[uk, england, london]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
65
\n",
+ "
Iuliana Tudos Finsbury Park death: Man charged...
\n",
+ "
2018-01-03
\n",
+ "
Kasim Lewis, 31, is charged with murder after ...
\n",
+ "
London
\n",
+ "
The body of Iuliana Tudos was discovered near ...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-london-42...
\n",
+ "
5
\n",
+ "
[uk, england, london]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
66
\n",
+ "
Berlin reels after nine inmates escape Plötzen...
\n",
+ "
2018-01-03
\n",
+ "
Plötzensee jail \"lost\" the prisoners in four i...
\n",
+ "
Europe
\n",
+ "
Prisoners can be seen escaping from a shaft in...
\n",
+ "
http://www.bbc.co.uk/news/world-europe-42551732
\n",
+ "
5
\n",
+ "
[world, europe]
\n",
+ "
2
\n",
+ "
world
\n",
+ "
europe
\n",
+ "
\n",
+ "
\n",
+ "
67
\n",
+ "
Manchester City 3-1 Watford - BBC Sport
\n",
+ "
2018-01-03
\n",
+ "
Runaway leaders Manchester City show no ill-ef...
\n",
+ "
None
\n",
+ "
Last updated on .From the section Premier Leag...
\n",
+ "
http://www.bbc.co.uk/sport/football/42411077
\n",
+ "
6
\n",
+ "
[sport, football]
\n",
+ "
2
\n",
+ "
sport
\n",
+ "
football
\n",
+ "
\n",
+ "
\n",
+ "
70
\n",
+ "
Hospital apologises after baby's skull cut in ...
\n",
+ "
2018-01-03
\n",
+ "
The baby died three hours after suffering a sc...
\n",
+ "
Nottingham
\n",
+ "
Carson's mother Claire Smith, pictured with hi...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-nottingha...
\n",
+ "
5
\n",
+ "
[uk, england, nottinghamshire]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
71
\n",
+ "
Freed hostage Joshua Boyle faces 15 criminal c...
\n",
+ "
2018-01-03
\n",
+ "
Canadian Joshua Boyle and his family were held...
\n",
+ "
US & Canada
\n",
+ "
A Canadian man who was held hostage for five y...
\n",
+ "
http://www.bbc.co.uk/news/world-us-canada-4254...
\n",
+ "
5
\n",
+ "
[world, us, canada]
\n",
+ "
3
\n",
+ "
world
\n",
+ "
us
\n",
+ "
\n",
+ "
\n",
+ "
72
\n",
+ "
Royal wedding: Windsor council leader in beggi...
\n",
+ "
2018-01-03
\n",
+ "
Windsor has an \"epidemic of rough sleeping and...
\n",
+ "
Berkshire
\n",
+ "
This video can not be played To play this vide...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-berkshire...
\n",
+ "
5
\n",
+ "
[uk, england, berkshire]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
73
\n",
+ "
Major flaw in millions of Intel chips revealed...
\n",
+ "
2018-01-03
\n",
+ "
A serious bug will need to be patched in milli...
\n",
+ "
Technology
\n",
+ "
A serious flaw in the design of Intel's chips ...
\n",
+ "
http://www.bbc.co.uk/news/technology-42553818
\n",
+ "
5
\n",
+ "
[misc, technology]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
technology
\n",
+ "
\n",
+ "
\n",
+ "
74
\n",
+ "
Andargachew Tsege's wife hopeful Ethiopia will...
\n",
+ "
2018-01-03
\n",
+ "
The wife of a man being held in Ethiopia is \"o...
\n",
+ "
UK
\n",
+ "
Andy Tsege has not seen his wife or three chil...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-42559068
\n",
+ "
5
\n",
+ "
[uk, england]
\n",
+ "
2
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
75
\n",
+ "
Hospitals to delay non-urgent operations - BBC...
\n",
+ "
2018-01-03
\n",
+ "
NHS England says tens of thousands of non-urge...
\n",
+ "
Health
\n",
+ "
Tens of thousands of non-urgent NHS operations...
\n",
+ "
http://www.bbc.co.uk/news/health-42541412
\n",
+ "
5
\n",
+ "
[misc, health]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
health
\n",
+ "
\n",
+ "
\n",
+ "
76
\n",
+ "
Beauty and the Beast pips Star Wars to be the ...
\n",
+ "
2018-01-03
\n",
+ "
Emma Watson's Beauty and the Beast beats The L...
\n",
+ "
Entertainment & Arts
\n",
+ "
New character Rose was introduced in The Last ...
\n",
+ "
http://www.bbc.co.uk/news/entertainment-arts-4...
\n",
+ "
5
\n",
+ "
[misc, entertainment, arts]
\n",
+ "
3
\n",
+ "
misc
\n",
+ "
entertainment
\n",
+ "
\n",
+ "
\n",
+ "
77
\n",
+ "
Each of us streamed 1,036 songs last year (and...
\n",
+ "
2018-01-03
\n",
+ "
UK music fans streamed 68.1 billion songs last...
\n",
+ "
Entertainment & Arts
\n",
+ "
Ed Sheeran, Stormzy and Dua Lipa had some of t...
\n",
+ "
http://www.bbc.co.uk/news/entertainment-arts-4...
\n",
+ "
5
\n",
+ "
[misc, entertainment, arts]
\n",
+ "
3
\n",
+ "
misc
\n",
+ "
entertainment
\n",
+ "
\n",
+ "
\n",
+ "
79
\n",
+ "
Dundalk stabbing suspect may have had 'two kni...
\n",
+ "
2018-01-03
\n",
+ "
One man is dead and two others are injured in ...
\n",
+ "
Europe
\n",
+ "
This video can not be played To play this vide...
\n",
+ "
http://www.bbc.co.uk/news/world-europe-42554127
\n",
+ "
5
\n",
+ "
[world, europe]
\n",
+ "
2
\n",
+ "
world
\n",
+ "
europe
\n",
+ "
\n",
+ "
\n",
+ "
81
\n",
+ "
Christmas sales surprise for Next - BBC News
\n",
+ "
2018-01-03
\n",
+ "
Next shares jump after after cold weather boos...
\n",
+ "
Business
\n",
+ "
Sales at Next have unexpectedly risen over the...
\n",
+ "
http://www.bbc.co.uk/news/business-42550917
\n",
+ "
5
\n",
+ "
[misc, business]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
business
\n",
+ "
\n",
+ "
\n",
+ "
82
\n",
+ "
A&E: People on beds 'as far as you could see' ...
\n",
+ "
2018-01-03
\n",
+ "
For four hours, Yvonne Beer, 87, was tied in a...
\n",
+ "
Hereford & Worcester
\n",
+ "
Yvonne Beer is 87 and suffers from dementia\\n\\...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-hereford-...
\n",
+ "
5
\n",
+ "
[uk, england, hereford, worcester]
\n",
+ "
4
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
84
\n",
+ "
Trump Bannon row: 11 explosive claims from new...
\n",
+ "
2018-01-03
\n",
+ "
Donald Trump was \"befuddled\" by his election w...
\n",
+ "
US & Canada
\n",
+ "
Mr Trump sits at the White House Resolute Desk...
\n",
+ "
http://www.bbc.co.uk/news/world-us-canada-4255...
\n",
+ "
5
\n",
+ "
[world, us, canada]
\n",
+ "
3
\n",
+ "
world
\n",
+ "
us
\n",
+ "
\n",
+ "
\n",
+ "
85
\n",
+ "
Six held in far-right group National Action in...
\n",
+ "
2018-01-03
\n",
+ "
West Midlands Police say the six are being hel...
\n",
+ "
England
\n",
+ "
This video can not be played To play this vide...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-42552750
\n",
+ "
5
\n",
+ "
[uk, england]
\n",
+ "
2
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
87
\n",
+ "
YouTube singer Chrissy Chambers wins revenge p...
\n",
+ "
2018-01-17
\n",
+ "
Chrissy Chambers is awarded damages from her e...
\n",
+ "
Technology
\n",
+ "
Chrissy Chambers, seen on the left, makes YouT...
\n",
+ "
http://www.bbc.co.uk/news/technology-42720869
\n",
+ "
5
\n",
+ "
[misc, technology]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
technology
\n",
+ "
\n",
+ "
\n",
+ "
88
\n",
+ "
'Racist' H&M coolest monkey hoodie banned by e...
\n",
+ "
2018-01-17
\n",
+ "
Ebay says it will \"remove items listed malicio...
\n",
+ "
Newsbeat
\n",
+ "
eBay has banned people from selling the \"racis...
\n",
+ "
http://www.bbc.co.uk/newsbeat/articles/42717933
\n",
+ "
6
\n",
+ "
[newsbeat, articles]
\n",
+ "
2
\n",
+ "
newsbeat
\n",
+ "
articles
\n",
+ "
\n",
+ "
\n",
+ "
89
\n",
+ "
Meteor lights up Michigan skies - BBC News
\n",
+ "
2018-01-17
\n",
+ "
The US Geological Survey said seismic waves pr...
\n",
+ "
None
\n",
+ "
Footage of a flash of light appearing across M...
\n",
+ "
http://www.bbc.co.uk/news/science-environment-...
\n",
+ "
5
\n",
+ "
[misc, science, environment]
\n",
+ "
3
\n",
+ "
misc
\n",
+ "
science
\n",
+ "
\n",
+ "
\n",
+ "
90
\n",
+ "
Nottingham station fire: Sprinklers 'could hav...
\n",
+ "
2018-01-17
\n",
+ "
Sprinklers could have prevented the Nottingham...
\n",
+ "
Nottingham
\n",
+ "
This video can not be played To play this vide...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-nottingha...
\n",
+ "
5
\n",
+ "
[uk, england, nottinghamshire]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
91
\n",
+ "
Bristol Museum sold unauthorised Banksy angel ...
\n",
+ "
2018-01-17
\n",
+ "
Bristol Museum and Art Gallery sold thousands ...
\n",
+ "
Bristol
\n",
+ "
A museum in Banksy's home city has been caught...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-bristol-4...
\n",
+ "
5
\n",
+ "
[uk, england, bristol]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
92
\n",
+ "
Most new cars must be electric by 2030, minist...
\n",
+ "
2018-01-17
\n",
+ "
Three-fifths of new cars must be electric by 2...
\n",
+ "
Science & Environment
\n",
+ "
This video can not be played To play this vide...
\n",
+ "
http://www.bbc.co.uk/news/science-environment-...
\n",
+ "
5
\n",
+ "
[misc, science, environment]
\n",
+ "
3
\n",
+ "
misc
\n",
+ "
science
\n",
+ "
\n",
+ "
\n",
+ "
93
\n",
+ "
Carillion apprentices among casualties as firm...
\n",
+ "
2018-01-17
\n",
+ "
The future of about 1,400 apprentices at train...
\n",
+ "
Family & Education
\n",
+ "
Carillion apprentice Kyle Fitzsimmons is weeks...
\n",
+ "
http://www.bbc.co.uk/news/education-42709512
\n",
+ "
5
\n",
+ "
[misc, education]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
education
\n",
+ "
\n",
+ "
\n",
+ "
94
\n",
+ "
Tesco delays Clubcard rewards cut after backla...
\n",
+ "
2018-01-17
\n",
+ "
The supermarket announces a grace period until...
\n",
+ "
Business
\n",
+ "
Tesco is delaying a cut to its biggest Clubcar...
\n",
+ "
http://www.bbc.co.uk/news/business-42715143
\n",
+ "
5
\n",
+ "
[misc, business]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
business
\n",
+ "
\n",
+ "
\n",
+ "
95
\n",
+ "
YouTube toughens advert payment rules - BBC News
\n",
+ "
2018-01-17
\n",
+ "
The video-clip platform will require creators ...
\n",
+ "
Technology
\n",
+ "
YouTube creators will need to have more than 1...
\n",
+ "
http://www.bbc.co.uk/news/technology-42716393
\n",
+ "
5
\n",
+ "
[misc, technology]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
technology
\n",
+ "
\n",
+ "
\n",
+ "
96
\n",
+ "
Margaret Atwood faces feminist backlash for #M...
\n",
+ "
2018-01-17
\n",
+ "
The Handmaid's Tale author said she was depict...
\n",
+ "
US & Canada
\n",
+ "
Author Margaret Atwood has sparked a Twitter s...
\n",
+ "
http://www.bbc.co.uk/news/world-us-canada-4270...
\n",
+ "
5
\n",
+ "
[world, us, canada]
\n",
+ "
3
\n",
+ "
world
\n",
+ "
us
\n",
+ "
\n",
+ "
\n",
+ "
97
\n",
+ "
Winter Olympics: How good is North Korea at sp...
\n",
+ "
2018-01-17
\n",
+ "
Reality Check looks at the sporting skills of ...
\n",
+ "
Asia
\n",
+ "
Ri Se-gwang winning gold for North Korea in th...
\n",
+ "
http://www.bbc.co.uk/news/world-asia-pacific-4...
\n",
+ "
5
\n",
+ "
[world, asia, pacific]
\n",
+ "
3
\n",
+ "
world
\n",
+ "
asia
\n",
+ "
\n",
+ "
\n",
+ "
98
\n",
+ "
Dozens of women describe abuse by ex-doctor La...
\n",
+ "
2018-01-17
\n",
+ "
Dozens of women abused by ex-Team USA gymnasti...
\n",
+ "
None
\n",
+ "
Nearly 100 women are expected to testify durin...
\n",
+ "
http://www.bbc.co.uk/news/world-us-canada-4271...
\n",
+ "
5
\n",
+ "
[world, us, canada]
\n",
+ "
3
\n",
+ "
world
\n",
+ "
us
\n",
+ "
\n",
+ "
\n",
+ "
99
\n",
+ "
Celine Dookhran trial: Builder 'kidnapped and ...
\n",
+ "
2018-01-17
\n",
+ "
A builder planned for weeks to abduct two wome...
\n",
+ "
London
\n",
+ "
Celine Dookhran was found dead in an empty hou...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-london-42...
\n",
+ "
5
\n",
+ "
[uk, england, london]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
100
\n",
+ "
Dylan Farrow: Outrage after 'years of being ig...
\n",
+ "
2018-01-17
\n",
+ "
The director's adopted daughter discusses assa...
\n",
+ "
Entertainment & Arts
\n",
+ "
This video can not be played To play this vide...
\n",
+ "
http://www.bbc.co.uk/news/entertainment-arts-4...
\n",
+ "
5
\n",
+ "
[misc, entertainment, arts]
\n",
+ "
3
\n",
+ "
misc
\n",
+ "
entertainment
\n",
+ "
\n",
+ "
\n",
+ "
101
\n",
+ "
Liverpool footballer Jon Flanagan sentenced fo...
\n",
+ "
2018-01-17
\n",
+ "
Liverpool FC defender Jon Flanagan \"slammed\" h...
\n",
+ "
Liverpool
\n",
+ "
Liverpool footballer Jon Flanagan has been sen...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-merseysid...
\n",
+ "
5
\n",
+ "
[uk, england, merseyside]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
102
\n",
+ "
Bitcoin dips below $10,000 for first time sinc...
\n",
+ "
2018-01-17
\n",
+ "
The crypto-currency has nearly halved in value...
\n",
+ "
Technology
\n",
+ "
Bitcoin came close to crossing $20,000 in Dece...
\n",
+ "
http://www.bbc.co.uk/news/technology-42717639
\n",
+ "
5
\n",
+ "
[misc, technology]
\n",
+ "
2
\n",
+ "
misc
\n",
+ "
technology
\n",
+ "
\n",
+ "
\n",
+ "
103
\n",
+ "
Man's bomb hoax to stop wife’s night out in Mi...
\n",
+ "
2018-01-17
\n",
+ "
Court hears Mo Ahmed was angry his wife was go...
\n",
+ "
England
\n",
+ "
Mo Ahmed was given a suspended sentence at Exe...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-42723546
\n",
+ "
5
\n",
+ "
[uk, england]
\n",
+ "
2
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ "
\n",
+ "
104
\n",
+ "
Tory MP Ben Bradley 'sorry' for blog post abou...
\n",
+ "
2018-01-17
\n",
+ "
In 2012 Ben Bradley's blog post criticised wha...
\n",
+ "
Nottingham
\n",
+ "
Ben Bradley became the MP for Mansfield in Jun...
\n",
+ "
http://www.bbc.co.uk/news/uk-politics-42712180
\n",
+ "
5
\n",
+ "
[uk, politics]
\n",
+ "
2
\n",
+ "
uk
\n",
+ "
politics
\n",
+ "
\n",
+ "
\n",
+ "
105
\n",
+ "
Ealing Council paves way to ban anti-abortion ...
\n",
+ "
2018-01-17
\n",
+ "
Council cabinet members vote in favour of bann...
\n",
+ "
London
\n",
+ "
This video can not be played To play this vide...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-london-42...
\n",
+ "
5
\n",
+ "
[uk, england, london]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " title published_date \\\n",
+ "59 Jake Livermore: West Brom say West Ham fan alt... 2018-01-03 \n",
+ "61 Coronation Street's first barmaid Doreen Keogh... 2018-01-03 \n",
+ "62 A&E doctor: 'I feel like I'm fighting a losing... 2018-01-03 \n",
+ "63 AI early diagnosis could save heart and cancer... 2018-01-03 \n",
+ "64 Triple killer Theodore Johnson admits murderin... 2018-01-03 \n",
+ "65 Iuliana Tudos Finsbury Park death: Man charged... 2018-01-03 \n",
+ "66 Berlin reels after nine inmates escape Plötzen... 2018-01-03 \n",
+ "67 Manchester City 3-1 Watford - BBC Sport 2018-01-03 \n",
+ "70 Hospital apologises after baby's skull cut in ... 2018-01-03 \n",
+ "71 Freed hostage Joshua Boyle faces 15 criminal c... 2018-01-03 \n",
+ "72 Royal wedding: Windsor council leader in beggi... 2018-01-03 \n",
+ "73 Major flaw in millions of Intel chips revealed... 2018-01-03 \n",
+ "74 Andargachew Tsege's wife hopeful Ethiopia will... 2018-01-03 \n",
+ "75 Hospitals to delay non-urgent operations - BBC... 2018-01-03 \n",
+ "76 Beauty and the Beast pips Star Wars to be the ... 2018-01-03 \n",
+ "77 Each of us streamed 1,036 songs last year (and... 2018-01-03 \n",
+ "79 Dundalk stabbing suspect may have had 'two kni... 2018-01-03 \n",
+ "81 Christmas sales surprise for Next - BBC News 2018-01-03 \n",
+ "82 A&E: People on beds 'as far as you could see' ... 2018-01-03 \n",
+ "84 Trump Bannon row: 11 explosive claims from new... 2018-01-03 \n",
+ "85 Six held in far-right group National Action in... 2018-01-03 \n",
+ "87 YouTube singer Chrissy Chambers wins revenge p... 2018-01-17 \n",
+ "88 'Racist' H&M coolest monkey hoodie banned by e... 2018-01-17 \n",
+ "89 Meteor lights up Michigan skies - BBC News 2018-01-17 \n",
+ "90 Nottingham station fire: Sprinklers 'could hav... 2018-01-17 \n",
+ "91 Bristol Museum sold unauthorised Banksy angel ... 2018-01-17 \n",
+ "92 Most new cars must be electric by 2030, minist... 2018-01-17 \n",
+ "93 Carillion apprentices among casualties as firm... 2018-01-17 \n",
+ "94 Tesco delays Clubcard rewards cut after backla... 2018-01-17 \n",
+ "95 YouTube toughens advert payment rules - BBC News 2018-01-17 \n",
+ "96 Margaret Atwood faces feminist backlash for #M... 2018-01-17 \n",
+ "97 Winter Olympics: How good is North Korea at sp... 2018-01-17 \n",
+ "98 Dozens of women describe abuse by ex-doctor La... 2018-01-17 \n",
+ "99 Celine Dookhran trial: Builder 'kidnapped and ... 2018-01-17 \n",
+ "100 Dylan Farrow: Outrage after 'years of being ig... 2018-01-17 \n",
+ "101 Liverpool footballer Jon Flanagan sentenced fo... 2018-01-17 \n",
+ "102 Bitcoin dips below $10,000 for first time sinc... 2018-01-17 \n",
+ "103 Man's bomb hoax to stop wife’s night out in Mi... 2018-01-17 \n",
+ "104 Tory MP Ben Bradley 'sorry' for blog post abou... 2018-01-17 \n",
+ "105 Ealing Council paves way to ban anti-abortion ... 2018-01-17 \n",
+ "\n",
+ " description section \\\n",
+ "59 West Brom say Jake Livermore confronted a West... None \n",
+ "61 The Irish actress played Rovers Return's first... Entertainment & Arts \n",
+ "62 Tens of thousands of non-urgent NHS operations... None \n",
+ "63 The systems will save billions of pounds by en... Health \n",
+ "64 Theodore Johnson already had convictions for k... London \n",
+ "65 Kasim Lewis, 31, is charged with murder after ... London \n",
+ "66 Plötzensee jail \"lost\" the prisoners in four i... Europe \n",
+ "67 Runaway leaders Manchester City show no ill-ef... None \n",
+ "70 The baby died three hours after suffering a sc... Nottingham \n",
+ "71 Canadian Joshua Boyle and his family were held... US & Canada \n",
+ "72 Windsor has an \"epidemic of rough sleeping and... Berkshire \n",
+ "73 A serious bug will need to be patched in milli... Technology \n",
+ "74 The wife of a man being held in Ethiopia is \"o... UK \n",
+ "75 NHS England says tens of thousands of non-urge... Health \n",
+ "76 Emma Watson's Beauty and the Beast beats The L... Entertainment & Arts \n",
+ "77 UK music fans streamed 68.1 billion songs last... Entertainment & Arts \n",
+ "79 One man is dead and two others are injured in ... Europe \n",
+ "81 Next shares jump after after cold weather boos... Business \n",
+ "82 For four hours, Yvonne Beer, 87, was tied in a... Hereford & Worcester \n",
+ "84 Donald Trump was \"befuddled\" by his election w... US & Canada \n",
+ "85 West Midlands Police say the six are being hel... England \n",
+ "87 Chrissy Chambers is awarded damages from her e... Technology \n",
+ "88 Ebay says it will \"remove items listed malicio... Newsbeat \n",
+ "89 The US Geological Survey said seismic waves pr... None \n",
+ "90 Sprinklers could have prevented the Nottingham... Nottingham \n",
+ "91 Bristol Museum and Art Gallery sold thousands ... Bristol \n",
+ "92 Three-fifths of new cars must be electric by 2... Science & Environment \n",
+ "93 The future of about 1,400 apprentices at train... Family & Education \n",
+ "94 The supermarket announces a grace period until... Business \n",
+ "95 The video-clip platform will require creators ... Technology \n",
+ "96 The Handmaid's Tale author said she was depict... US & Canada \n",
+ "97 Reality Check looks at the sporting skills of ... Asia \n",
+ "98 Dozens of women abused by ex-Team USA gymnasti... None \n",
+ "99 A builder planned for weeks to abduct two wome... London \n",
+ "100 The director's adopted daughter discusses assa... Entertainment & Arts \n",
+ "101 Liverpool FC defender Jon Flanagan \"slammed\" h... Liverpool \n",
+ "102 The crypto-currency has nearly halved in value... Technology \n",
+ "103 Court hears Mo Ahmed was angry his wife was go... England \n",
+ "104 In 2012 Ben Bradley's blog post criticised wha... Nottingham \n",
+ "105 Council cabinet members vote in favour of bann... London \n",
+ "\n",
+ " content \\\n",
+ "59 West Brom say Jake Livermore confronted a West... \n",
+ "61 Actress Doreen Keogh, who played the first Cor... \n",
+ "62 Tens of thousands of non-urgent NHS operations... \n",
+ "63 Sir John Bell believes that artificial intelli... \n",
+ "64 Theodore Johnson beat Angela Best with a claw ... \n",
+ "65 The body of Iuliana Tudos was discovered near ... \n",
+ "66 Prisoners can be seen escaping from a shaft in... \n",
+ "67 Last updated on .From the section Premier Leag... \n",
+ "70 Carson's mother Claire Smith, pictured with hi... \n",
+ "71 A Canadian man who was held hostage for five y... \n",
+ "72 This video can not be played To play this vide... \n",
+ "73 A serious flaw in the design of Intel's chips ... \n",
+ "74 Andy Tsege has not seen his wife or three chil... \n",
+ "75 Tens of thousands of non-urgent NHS operations... \n",
+ "76 New character Rose was introduced in The Last ... \n",
+ "77 Ed Sheeran, Stormzy and Dua Lipa had some of t... \n",
+ "79 This video can not be played To play this vide... \n",
+ "81 Sales at Next have unexpectedly risen over the... \n",
+ "82 Yvonne Beer is 87 and suffers from dementia\\n\\... \n",
+ "84 Mr Trump sits at the White House Resolute Desk... \n",
+ "85 This video can not be played To play this vide... \n",
+ "87 Chrissy Chambers, seen on the left, makes YouT... \n",
+ "88 eBay has banned people from selling the \"racis... \n",
+ "89 Footage of a flash of light appearing across M... \n",
+ "90 This video can not be played To play this vide... \n",
+ "91 A museum in Banksy's home city has been caught... \n",
+ "92 This video can not be played To play this vide... \n",
+ "93 Carillion apprentice Kyle Fitzsimmons is weeks... \n",
+ "94 Tesco is delaying a cut to its biggest Clubcar... \n",
+ "95 YouTube creators will need to have more than 1... \n",
+ "96 Author Margaret Atwood has sparked a Twitter s... \n",
+ "97 Ri Se-gwang winning gold for North Korea in th... \n",
+ "98 Nearly 100 women are expected to testify durin... \n",
+ "99 Celine Dookhran was found dead in an empty hou... \n",
+ "100 This video can not be played To play this vide... \n",
+ "101 Liverpool footballer Jon Flanagan has been sen... \n",
+ "102 Bitcoin came close to crossing $20,000 in Dece... \n",
+ "103 Mo Ahmed was given a suspended sentence at Exe... \n",
+ "104 Ben Bradley became the MP for Mansfield in Jun... \n",
+ "105 This video can not be played To play this vide... \n",
+ "\n",
+ " link count \\\n",
+ "59 http://www.bbc.co.uk/sport/football/42558360 6 \n",
+ "61 http://www.bbc.co.uk/news/entertainment-arts-4... 5 \n",
+ "62 http://www.bbc.co.uk/news/health-42553597 5 \n",
+ "63 http://www.bbc.co.uk/news/health-42357257 5 \n",
+ "64 http://www.bbc.co.uk/news/uk-england-london-42... 5 \n",
+ "65 http://www.bbc.co.uk/news/uk-england-london-42... 5 \n",
+ "66 http://www.bbc.co.uk/news/world-europe-42551732 5 \n",
+ "67 http://www.bbc.co.uk/sport/football/42411077 6 \n",
+ "70 http://www.bbc.co.uk/news/uk-england-nottingha... 5 \n",
+ "71 http://www.bbc.co.uk/news/world-us-canada-4254... 5 \n",
+ "72 http://www.bbc.co.uk/news/uk-england-berkshire... 5 \n",
+ "73 http://www.bbc.co.uk/news/technology-42553818 5 \n",
+ "74 http://www.bbc.co.uk/news/uk-england-42559068 5 \n",
+ "75 http://www.bbc.co.uk/news/health-42541412 5 \n",
+ "76 http://www.bbc.co.uk/news/entertainment-arts-4... 5 \n",
+ "77 http://www.bbc.co.uk/news/entertainment-arts-4... 5 \n",
+ "79 http://www.bbc.co.uk/news/world-europe-42554127 5 \n",
+ "81 http://www.bbc.co.uk/news/business-42550917 5 \n",
+ "82 http://www.bbc.co.uk/news/uk-england-hereford-... 5 \n",
+ "84 http://www.bbc.co.uk/news/world-us-canada-4255... 5 \n",
+ "85 http://www.bbc.co.uk/news/uk-england-42552750 5 \n",
+ "87 http://www.bbc.co.uk/news/technology-42720869 5 \n",
+ "88 http://www.bbc.co.uk/newsbeat/articles/42717933 6 \n",
+ "89 http://www.bbc.co.uk/news/science-environment-... 5 \n",
+ "90 http://www.bbc.co.uk/news/uk-england-nottingha... 5 \n",
+ "91 http://www.bbc.co.uk/news/uk-england-bristol-4... 5 \n",
+ "92 http://www.bbc.co.uk/news/science-environment-... 5 \n",
+ "93 http://www.bbc.co.uk/news/education-42709512 5 \n",
+ "94 http://www.bbc.co.uk/news/business-42715143 5 \n",
+ "95 http://www.bbc.co.uk/news/technology-42716393 5 \n",
+ "96 http://www.bbc.co.uk/news/world-us-canada-4270... 5 \n",
+ "97 http://www.bbc.co.uk/news/world-asia-pacific-4... 5 \n",
+ "98 http://www.bbc.co.uk/news/world-us-canada-4271... 5 \n",
+ "99 http://www.bbc.co.uk/news/uk-england-london-42... 5 \n",
+ "100 http://www.bbc.co.uk/news/entertainment-arts-4... 5 \n",
+ "101 http://www.bbc.co.uk/news/uk-england-merseysid... 5 \n",
+ "102 http://www.bbc.co.uk/news/technology-42717639 5 \n",
+ "103 http://www.bbc.co.uk/news/uk-england-42723546 5 \n",
+ "104 http://www.bbc.co.uk/news/uk-politics-42712180 5 \n",
+ "105 http://www.bbc.co.uk/news/uk-england-london-42... 5 \n",
+ "\n",
+ " tags tags_len main_tag sub_tag \n",
+ "59 [sport, football] 2 sport football \n",
+ "61 [misc, entertainment, arts] 3 misc entertainment \n",
+ "62 [misc, health] 2 misc health \n",
+ "63 [misc, health] 2 misc health \n",
+ "64 [uk, england, london] 3 uk england \n",
+ "65 [uk, england, london] 3 uk england \n",
+ "66 [world, europe] 2 world europe \n",
+ "67 [sport, football] 2 sport football \n",
+ "70 [uk, england, nottinghamshire] 3 uk england \n",
+ "71 [world, us, canada] 3 world us \n",
+ "72 [uk, england, berkshire] 3 uk england \n",
+ "73 [misc, technology] 2 misc technology \n",
+ "74 [uk, england] 2 uk england \n",
+ "75 [misc, health] 2 misc health \n",
+ "76 [misc, entertainment, arts] 3 misc entertainment \n",
+ "77 [misc, entertainment, arts] 3 misc entertainment \n",
+ "79 [world, europe] 2 world europe \n",
+ "81 [misc, business] 2 misc business \n",
+ "82 [uk, england, hereford, worcester] 4 uk england \n",
+ "84 [world, us, canada] 3 world us \n",
+ "85 [uk, england] 2 uk england \n",
+ "87 [misc, technology] 2 misc technology \n",
+ "88 [newsbeat, articles] 2 newsbeat articles \n",
+ "89 [misc, science, environment] 3 misc science \n",
+ "90 [uk, england, nottinghamshire] 3 uk england \n",
+ "91 [uk, england, bristol] 3 uk england \n",
+ "92 [misc, science, environment] 3 misc science \n",
+ "93 [misc, education] 2 misc education \n",
+ "94 [misc, business] 2 misc business \n",
+ "95 [misc, technology] 2 misc technology \n",
+ "96 [world, us, canada] 3 world us \n",
+ "97 [world, asia, pacific] 3 world asia \n",
+ "98 [world, us, canada] 3 world us \n",
+ "99 [uk, england, london] 3 uk england \n",
+ "100 [misc, entertainment, arts] 3 misc entertainment \n",
+ "101 [uk, england, merseyside] 3 uk england \n",
+ "102 [misc, technology] 2 misc technology \n",
+ "103 [uk, england] 2 uk england \n",
+ "104 [uk, politics] 2 uk politics \n",
+ "105 [uk, england, london] 3 uk england "
+ ]
+ },
+ "execution_count": 153,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df[50:90]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 154,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "main_tag\n",
+ "bbcthree 10\n",
+ "bitesize 1\n",
+ "iplayer 12\n",
+ "misc 25448\n",
+ "newsbeat 11\n",
+ "sounds 25\n",
+ "sport 6299\n",
+ "uk 35916\n",
+ "weather 25\n",
+ "world 18658\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 154,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# group by main tag and count the number of rows\n",
+ "df.groupby(\"main_tag\").size()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 155,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# remove columns with main tags smaller than 1000\n",
+ "df = df.groupby(\"main_tag\").filter(lambda x: len(x) > 1000)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 163,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# remove columns with sub tags smaller than 150\n",
+ "df = df.groupby([\"main_tag\", \"sub_tag\"]).filter(lambda x: len(x) > 150)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 166,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# remove columns with sub tags \"in\", \"live\", \"newsbeat\"\n",
+ "df = df[~df[\"sub_tag\"].isin([\"in\", \"live\", \"newsbeat\"])]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 156,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "main_tag\n",
+ "misc 25448\n",
+ "sport 6299\n",
+ "uk 35916\n",
+ "world 18658\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 156,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.groupby(\"main_tag\").size()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 157,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "main_tag\n",
+ "misc [newsbeat, education, science, entertainment, ...\n",
+ "sport [football, tennis, cricket, american-football,...\n",
+ "uk [england, politics, wales, scotland, northern]\n",
+ "world [asia, europe, latin, middle, us, africa, aust...\n",
+ "Name: sub_tag, dtype: object"
+ ]
+ },
+ "execution_count": 157,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# group by main tag and print unique sub tags per main tag\n",
+ "df.groupby(\"main_tag\")[\"sub_tag\"].unique()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "main_tag sub_tag \n",
+ "misc business 8026\n",
+ " education 1175\n",
+ " election 614\n",
+ " entertainment 4776\n",
+ " health 2897\n",
+ " science 1817\n",
+ " technology 1963\n",
+ "sport athletics 182\n",
+ " boxing 158\n",
+ " cricket 500\n",
+ " football 3393\n",
+ " formula1 179\n",
+ " rugby 347\n",
+ " tennis 597\n",
+ "uk england 14475\n",
+ " northern-ireland 3433\n",
+ " politics 7590\n",
+ " scotland 5265\n",
+ " wales 5153\n",
+ "world africa 918\n",
+ " asia 2776\n",
+ " australia 700\n",
+ " europe 6332\n",
+ " latin-america 728\n",
+ " middle-east 1672\n",
+ " us 5516\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# group by main tag and sub tag and count the number of rows\n",
+ "df.groupby([\"main_tag\", \"sub_tag\"]).size()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# rename subtag rugby-union to rugby\n",
+ "df[\"sub_tag\"] = df[\"sub_tag\"].replace(\"rugby-union\", \"rugby\")\n",
+ "\n",
+ "# rename subtag middle to middle-east\n",
+ "df[\"sub_tag\"] = df[\"sub_tag\"].replace(\"middle\", \"middle-east\")\n",
+ "\n",
+ "# rename subtag northern to northernireland\n",
+ "df[\"sub_tag\"] = df[\"sub_tag\"].replace(\"northern\", \"northern-ireland\")\n",
+ "\n",
+ "# rename subtag middle to middle-east\n",
+ "df[\"sub_tag\"] = df[\"sub_tag\"].replace(\"middle\", \"middle-east\")\n",
+ "\n",
+ "# rename subtag latin to latin-america\n",
+ "df[\"sub_tag\"] = df[\"sub_tag\"].replace(\"latin\", \"latin-america\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# combine main tag and sub tag\n",
+ "df[\"tag\"] = df[\"main_tag\"] + \"/\" + df[\"sub_tag\"]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# store the cleaned data in a new parquet file\n",
+ "df.to_parquet(\"bbc_cleaned.parquet\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
title
\n",
+ "
published_date
\n",
+ "
description
\n",
+ "
section
\n",
+ "
content
\n",
+ "
link
\n",
+ "
count
\n",
+ "
tags
\n",
+ "
tags_len
\n",
+ "
main_tag
\n",
+ "
sub_tag
\n",
+ "
tag
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Kabul attack: Guests use sheets to escape hote...
\n",
+ "
2018-01-21
\n",
+ "
Guests used sheets to climb down from balconie...
\n",
+ "
None
\n",
+ "
Guests used sheets to climb down from balconie...
\n",
+ "
http://www.bbc.co.uk/news/world-asia-42764971
\n",
+ "
5
\n",
+ "
[world, asia]
\n",
+ "
2
\n",
+ "
world
\n",
+ "
asia
\n",
+ "
world/asia
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Rashan Charles death: Met Police officer not f...
\n",
+ "
2018-01-21
\n",
+ "
Rashan Charles died as he tried to swallow a p...
\n",
+ "
London
\n",
+ "
Rashan Charles died after being apprehended by...
\n",
+ "
http://www.bbc.co.uk/news/uk-england-london-42...
\n",
+ "
5
\n",
+ "
[uk, england, london]
\n",
+ "
3
\n",
+ "
uk
\n",
+ "
england
\n",
+ "
uk/england
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Marco Silva: Watford blame Everton as they sac...
\n",
+ "
2018-01-21
\n",
+ "
Watford sack manager Marco Silva, blaming Ever...
\n",
+ "
None
\n",
+ "
Watford have sacked manager Marco Silva, blami...
\n",
+ "
http://www.bbc.co.uk/sport/football/42765881
\n",
+ "
6
\n",
+ "
[sport, football]
\n",
+ "
2
\n",
+ "
sport
\n",
+ "
football
\n",
+ "
sport/football
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
North Korea Moranbong girl band leader heads O...
\n",
+ "
2018-01-21
\n",
+ "
The team is on a landmark visit to inspect cul...
\n",
+ "
Asia
\n",
+ "
Hyon Song-wol, pictured centre, was the star a...
\n",
+ "
http://www.bbc.co.uk/news/world-asia-42765105
\n",
+ "
5
\n",
+ "
[world, asia]
\n",
+ "
2
\n",
+ "
world
\n",
+ "
asia
\n",
+ "
world/asia
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Australian Open: Kyle Edmund reaches first Gra...
\n",
+ "
2018-01-21
\n",
+ "
Britain's Kyle Edmund powers into a first Gran...
\n",
+ "
None
\n",
+ "
Last updated on .From the section Tennis\\n\\nCo...
\n",
+ "
http://www.bbc.co.uk/sport/tennis/42764304
\n",
+ "
6
\n",
+ "
[sport, tennis]
\n",
+ "
2
\n",
+ "
sport
\n",
+ "
tennis
\n",
+ "
sport/tennis
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " title published_date \\\n",
+ "0 Kabul attack: Guests use sheets to escape hote... 2018-01-21 \n",
+ "1 Rashan Charles death: Met Police officer not f... 2018-01-21 \n",
+ "2 Marco Silva: Watford blame Everton as they sac... 2018-01-21 \n",
+ "3 North Korea Moranbong girl band leader heads O... 2018-01-21 \n",
+ "4 Australian Open: Kyle Edmund reaches first Gra... 2018-01-21 \n",
+ "\n",
+ " description section \\\n",
+ "0 Guests used sheets to climb down from balconie... None \n",
+ "1 Rashan Charles died as he tried to swallow a p... London \n",
+ "2 Watford sack manager Marco Silva, blaming Ever... None \n",
+ "3 The team is on a landmark visit to inspect cul... Asia \n",
+ "4 Britain's Kyle Edmund powers into a first Gran... None \n",
+ "\n",
+ " content \\\n",
+ "0 Guests used sheets to climb down from balconie... \n",
+ "1 Rashan Charles died after being apprehended by... \n",
+ "2 Watford have sacked manager Marco Silva, blami... \n",
+ "3 Hyon Song-wol, pictured centre, was the star a... \n",
+ "4 Last updated on .From the section Tennis\\n\\nCo... \n",
+ "\n",
+ " link count \\\n",
+ "0 http://www.bbc.co.uk/news/world-asia-42764971 5 \n",
+ "1 http://www.bbc.co.uk/news/uk-england-london-42... 5 \n",
+ "2 http://www.bbc.co.uk/sport/football/42765881 6 \n",
+ "3 http://www.bbc.co.uk/news/world-asia-42765105 5 \n",
+ "4 http://www.bbc.co.uk/sport/tennis/42764304 6 \n",
+ "\n",
+ " tags tags_len main_tag sub_tag tag \n",
+ "0 [world, asia] 2 world asia world/asia \n",
+ "1 [uk, england, london] 3 uk england uk/england \n",
+ "2 [sport, football] 2 sport football sport/football \n",
+ "3 [world, asia] 2 world asia world/asia \n",
+ "4 [sport, tennis] 2 sport tennis sport/tennis "
+ ]
+ },
+ "execution_count": 15,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.6"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/benchmarks/datasets/coarsediscourse/.gitignore b/benchmarks/datasets/coarsediscourse/.gitignore
new file mode 100644
index 000000000..94f335824
--- /dev/null
+++ b/benchmarks/datasets/coarsediscourse/.gitignore
@@ -0,0 +1,3 @@
+*.parquet
+*.txt
+*.json
diff --git a/benchmarks/datasets/coarsediscourse/README.md b/benchmarks/datasets/coarsediscourse/README.md
new file mode 100644
index 000000000..b26122f69
--- /dev/null
+++ b/benchmarks/datasets/coarsediscourse/README.md
@@ -0,0 +1,34 @@
+# Coarse Discourse Sequence Corpus
+
+Paper: https://ojs.aaai.org/index.php/ICWSM/article/view/14886
+Download: https://convokit.cornell.edu/documentation/coarseDiscourse.html
+
+## Setup
+Run coarsediscourse.iypnb to download and preprocess the dataset.
+
+## What is Coarse Discourse Sequence Corpus?
+Coarse Discourse, the Reddit dataset that contains ~9K threads, with comments annotated with 9 main discourse act labels and an “other” label.
+Speakers in this Corpus are Reddit users, with their name being their Reddit username.
+Each utterance represents either a top-level Reddit post or a comment on a post.
+
+## Labels
+Comments are annotated with 9 main discourse act labels and an “other” label.
+Discourse Act Definitions are taken from the paper.
+```
+{"QUESTION": "A comment with a question or a request seeking some form of feedback, help, or other kinds of responses. While the comment may contain a question mark, it is not required. For instance, it might be posed in the form of a statement but still soliciting a response. Also, not everything that has a question mark is automatically a QUESTION. For instance, rhetorical questions are not seeking a response. Relation: This comment might be the first in a thread and have no relation to another comment. Or, it could be a clarifying or followup QUESTION linking to any prior comment.",
+"ANSWER": "A comment that is responding to a QUESTION by answering the question or fulfilling the request. There can be more than one ANSWER responding to a QUESTION. Relation: An ANSWER is always linked to a QUESTION.",
+"ANNOUNCEMENT": "A comment that is presenting some new information to the community, such as a piece of news, a link to something, a story, an opinion, a review, or insight. Relation: This comment has no relation to a prior comment and is always the initial post in a thread.",
+"AGREEMENT": "A comment that is expressing agreement with some information presented in a prior comment. It can be agreeing with a point made, providing supporting evidence, providing a positive example or experience, or confirming or acknowledging a point made. Relation: This comment is always linked to a prior comment to which it is agreeing.",
+"APPRECIATION": "A comment that is expressing thanks, appreciation, excitement, or praise in response to another comment. In contrast to AGREEMENT, it is not evaluating the merits of the points brought up. Comments of this category are more interpersonal as opposed to informational. Relation: This comment is always linked to a prior comment for which it is expressing appreciation.",
+"DISAGREEMENT": "A comment that is correcting, criticizing, contradicting, or objecting to a point made in a prior comment. It can also be providing evidence to support its disagreement, such as an example or contrary anecdote.Relation: This comment is always linked to a prior comment to which it is disagreeing.",
+"NEGATIVEREACTION": "A comment that is expressing a negative reaction to a previous comment, such as attacking or mocking the commenter, or expressing emotions like disgust, derision, or anger, to the contents of the prior comment. This comment is not discussing the merits of the points made in a prior comment or trying to correct them. Relation: This comment is always linked to a prior comment to which it is negatively reacting.",
+"ELABORATION": "A comment that is adding additional information on to another comment. Oftentimes, one can imagine it simply appended to the end of the comment it elaborates on. One can elaborate on many kinds of comments, for instance, a questionasker elaborating on their question to provide more context, or someone elaborating on an answer to add more information. Relation: This comment is always linked to a prior comment upon which it is elaborating.",
+"HUMOR": "This comment is primarily a joke, a piece of sarcasm, or a pun intended to get a laugh or be silly but not trying to add information. If a comment is sarcastic but using sarcasm to make a point or provide feedback, then it may belong in a different category. Relation: At times, this comment links to another comment but other times it may not be responding to anything."
+"OTHER: "A comment that does not fit any of the previous definitions."
+}
+```
+{'negativereaction', 'disagreement', 'question', 'answer', 'announcement', 'other', 'appreciation', 'elaboration', 'agreement', 'humor'}
+
+
+## Annotation
+Three annotators were assigned to each thread and were instructed to annotate each comment in the thread with its discourse act (main_type) as well as the relation of each comment to a prior comment (link_to_post), if it existed.
diff --git a/benchmarks/datasets/coarsediscourse/coarsediscourse.ipynb b/benchmarks/datasets/coarsediscourse/coarsediscourse.ipynb
new file mode 100644
index 000000000..130f6a9c3
--- /dev/null
+++ b/benchmarks/datasets/coarsediscourse/coarsediscourse.ipynb
@@ -0,0 +1,145 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from convokit import Corpus, download\n",
+ "from typing import List\n",
+ "from pathlib import Path\n",
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "datasets_path = Path(\"./datasets/coarsediscourse\")\n",
+ "test_path = datasets_path / \"coursediscourse_test.parquet\"\n",
+ "train_path = datasets_path / \"coursediscourse_train.parquet\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "corpus = Corpus(filename=download(\"reddit-coarse-discourse-corpus\"))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sentences_list: List[List[str]] = []\n",
+ "labels_list: List[List[List[str]]] = [] \n",
+ "\n",
+ "for conversation in corpus.iter_conversations():\n",
+ "\n",
+ " sentences = []\n",
+ " labels = []\n",
+ "\n",
+ " speaker_map = {speaker_id: f\"Speaker {(idx + 1)}\" for idx, speaker_id in enumerate(conversation.get_speaker_ids())}\n",
+ " for utterance in conversation.iter_utterances():\n",
+ " text = utterance.text\n",
+ " text = \" \".join([text_segment for text_segment in text.split(\"\\n\") if len(text_segment.split()) > 1])\n",
+ " text = \" \".join(text.split(\"\\t\"))\n",
+ " text = \" \".join(text.split())\n",
+ "\n",
+ " sentences.append(text)\n",
+ " label = utterance.meta.get('majority_type', 'other')\n",
+ " if label is None:\n",
+ " label = 'other'\n",
+ " if label == \"negativereaction\":\n",
+ " label = \"negative reaction\"\n",
+ " labels.append(label)\n",
+ "\n",
+ " assert len(sentences) == len(labels), \"Number of labels and sentences do not match\"\n",
+ " sentences_list.append(sentences)\n",
+ " labels_list.append(labels)\n",
+ "\n",
+ "assert len(sentences_list) == len(labels_list), \"Number of labels and sentences do not match\"\n",
+ "\n",
+ "# create dataframe\n",
+ "df = pd.DataFrame({\"sentences\": sentences_list, \"labels\": labels_list})\n",
+ "\n",
+ "# unique labels\n",
+ "unique_labels = set()\n",
+ "for labels in labels_list:\n",
+ " unique_labels.update(labels)\n",
+ "print(unique_labels)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# split the df into training and test set\n",
+ "from sklearn.model_selection import train_test_split\n",
+ "\n",
+ "train_df, test_df = train_test_split(df, test_size=0.4, random_state=42)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# save dataframe\n",
+ "train_df.to_parquet(train_path)\n",
+ "test_df.to_parquet(test_path)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# read dataframe\n",
+ "train_df = pd.read_parquet(train_path)\n",
+ "test_df = pd.read_parquet(test_path)"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "sent-class",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.10.15"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/benchmarks/datasets/csabstruct/.gitignore b/benchmarks/datasets/csabstruct/.gitignore
new file mode 100644
index 000000000..94f335824
--- /dev/null
+++ b/benchmarks/datasets/csabstruct/.gitignore
@@ -0,0 +1,3 @@
+*.parquet
+*.txt
+*.json
diff --git a/benchmarks/datasets/csabstruct/README.md b/benchmarks/datasets/csabstruct/README.md
new file mode 100644
index 000000000..8e7b03adb
--- /dev/null
+++ b/benchmarks/datasets/csabstruct/README.md
@@ -0,0 +1,104 @@
+# CSAbstruct
+
+Paper: https://aclanthology.org/D19-1383/
+Download: https://huggingface.co/datasets/allenai/csabstruct
+
+## Setup
+Run csabstruct.iypnb to download and preprocess the dataset.
+
+## What is CSAbstruct
+
+CSAbstruct is a dataset of annotated computer science abstracts with sentence labels according to their rhetorical roles.
+CSAbstruct is collected from the Semantic Scholar corpus.
+Each sentence is annotated by 5 workers, with one of 5 categories {BACKGROUND, OBJECTIVE, METHOD, RESULT, OTHER}
+
+## Statistics
+
+Label % in Dataset
+BACKGROUND 33%
+METHOD 32%
+RESULT 21%
+OBJECTIVE 12%
+OTHER 03%
+
+Statistic Avg ± std
+Doc length in sentences 6.7 ± 1.99
+Sentence length in words 21.8 ± 10.0
+
+## Labels
+
+The label definitions are written by us.
+Their paper does not provide any further definitions of the labels.
+We use the same definitions in pubmed200k and csabstruct.
+
+```
+label_dict = {
+ "background": "Provides context or previous knowledge relevant to the research topic. Think of it as setting the stage for the study.",
+ "method": "Describes the procedures and techniques used in the research. This includes the study design, data collection, and analysis methods.",
+ "objective": "States the main goal or purpose of the research. What question is this work trying to answer?",
+ "result": "Presents the findings or outcomes of the research. This often includes statistical data, tables, and figures.",
+ "other": "Any sentence that doesn't fit into the above categories. This could be discussion, analysis, limitations, or concluding remarks.",
+}
+```
+
+{'background', 'objective', 'method', 'result', 'other'}
+
+## Prompts
+
+### System Prompt
+
+# Your Role
+
+You are a professional annotator specialized in annotating sequences of sentences of a document with the help of provided annotation guidelines.
+You are always strictly adhering to annotation guidelines making you a valuable partner in all research endevours.
+Further, you always stick to the desired output format.
+
+You will be given the following information for every annotation task:
+
+- Document: The document to annotate split into a numbered sequence of sentences.
+- Additional Instructions: Optionally, the user may provide specific details about the task.
+
+# Project Details
+
+You are a member of the project '{}'.
+This project is about {}.
+The project's success depends on your contributions to the annotation process. We count on you!
+
+# Annotation Guidelines
+
+These annotation guidelines explain all categories in detail.
+Make sure to use these guidelines during the annotation process.
+
+{}
+
+# Your Strategy
+
+For all annotation tasks, it is crucial to go through the provided document sentence-by-sentence:
+
+1. Read the sentence carefully.
+2. Think and reason which category fits the sentence best.
+3. Classify the sentence based on the sentence itself and your reasoning.
+
+# Output Format
+
+In accordance with your strategy, you will answer in the following format for every provided sentence:
+ - -
+
+e.g.
+1 - Fits the definition of Category A - A
+2 - Meets the description of Category C - C
+3 - Is similar to the definition of Category B - B
+...
+
+It is required that you classify every provided sentence.
+Therefore, the number of output sentences has to match the input sentences.
+
+### User Prompt
+
+Please annotate each sentence of the following document with the best fitting category of the Annotation Guidelines.
+
+Document:
+{}
+
+Additional Instructions:
+Remember to annotate every provided sentence. You are NOT ALLOWED to use any other category than those provided in the Annotation Guidelines!
diff --git a/benchmarks/datasets/csabstruct/csabstruct.ipynb b/benchmarks/datasets/csabstruct/csabstruct.ipynb
new file mode 100644
index 000000000..5feb47d4f
--- /dev/null
+++ b/benchmarks/datasets/csabstruct/csabstruct.ipynb
@@ -0,0 +1,110 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from datasets import load_dataset\n",
+ "from typing import List\n",
+ "\n",
+ "ds = load_dataset(\"allenai/csabstruct\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "for split in ['train', 'validation', 'test']:\n",
+ " ds_split = ds[split]\n",
+ "\n",
+ " documents: List[List[str]] = ds_split[\"sentences\"] # type: ignore\n",
+ " labels = ds_split[\"labels\"] # type: ignore\n",
+ " id2label = {\n",
+ " 0: \"background\",\n",
+ " 1: \"method\",\n",
+ " 2: \"objective\",\n",
+ " 3: \"other\",\n",
+ " 4: \"result\"\n",
+ " }\n",
+ " labels = [[id2label[label] for label in lls] for lls in labels]\n",
+ "\n",
+ " # save as parquet\n",
+ " import pandas as pd\n",
+ "\n",
+ " df = pd.DataFrame({\n",
+ " \"sentences\": documents,\n",
+ " \"labels\": labels\n",
+ " })\n",
+ "\n",
+ " df.to_parquet(f\"datasets/csabstruct/{split}.parquet\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "label_dict = {\n",
+ " \"background\": \"Provides context or previous knowledge relevant to the research topic. Think of it as setting the stage for the study.\",\n",
+ " \"method\": \"Describes the procedures and techniques used in the research. This includes the study design, data collection, and analysis methods.\",\n",
+ " \"objective\": \"States the main goal or purpose of the research. What question is this work trying to answer?\",\n",
+ " \"other\": \"Any sentence that doesn't fit into the above categories. This could be discussion, analysis, limitations, or concluding remarks.\",\n",
+ " \"result\": \"Presents the findings or outcomes of the research. This often includes statistical data, tables, and figures.\",\n",
+ "}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df = pd.read_parquet(\"datasets/csabstruct/train.parquet\")\n",
+ "documents: List[List[str]] = [list(document_sentences) for document_sentences in df[\"sentences\"].tolist()]\n",
+ "labels: List[List[str]] = [list(labels) for labels in df[\"labels\"].tolist()]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.11"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/benchmarks/datasets/daily_dialog/.gitignore b/benchmarks/datasets/daily_dialog/.gitignore
new file mode 100644
index 000000000..94f335824
--- /dev/null
+++ b/benchmarks/datasets/daily_dialog/.gitignore
@@ -0,0 +1,3 @@
+*.parquet
+*.txt
+*.json
diff --git a/benchmarks/datasets/daily_dialog/README.md b/benchmarks/datasets/daily_dialog/README.md
new file mode 100644
index 000000000..de0216690
--- /dev/null
+++ b/benchmarks/datasets/daily_dialog/README.md
@@ -0,0 +1,54 @@
+# Daily Dialog Dataset
+
+Paper: https://aclanthology.org/I17-1099/
+Blog: http://yanran.li/dailydialog
+Download: https://github.com/declare-lab/RECCON/tree/main/data/original_annotation
+
+## Setup
+Run dailydialog.iypnb to preprocess the dataset.
+
+## What is Daily Dialog Dataset
+
+```
+Daily Topics: It covers ten categories ranging from ordinary life to financial topics, which is different from domain-specific datasets.
+
+Bi-turn Dialog Flow: It conforms basic dialog act flows, such as Questions-Inform and Directives-Commissives bi-turn flows, making it different from question answering (QA) datasets and post-reply datasets.
+
+Certain Communication Pattern: It follows unique multi-turn dialog flow patterns reflecting human communication style, which are rarely seen in task-oriented datasets.
+
+RichEmotion: It contains rich emotions and is labeled manually to keep high-quality, which is distinguished from most existing dialog datasets.
+```
+
+## Statistics
+
+ Count ofEU ofTotal
+
+Anger 1022 5.87 0.99
+Disgust 353 2.03 0.34
+Fear 74 1.00 0.17
+Happiness 12885 74.02 12.51
+Sadness 1150 6.61 1.12
+Surpise 1823 10.47 1.77
+Other 85572 - 83.10
+
+## Labels
+
+The labels follow the BigSix Theory by Paul Ekman 1992 - An argument for basic emotions.
+The label definitions are written by us as the authors do not provide further details or descriptions.
+We use the same definitions in dailydialog and emotion_lines.
+
+```
+{'fear': 'A feeling of apprehension or dread in response to a perceived threat or danger. It can range from mild anxiety to intense terror.',
+ 'disgust': 'A feeling of revulsion or aversion, often triggered by something perceived as unpleasant, unsanitary, or morally offensive.',
+ 'neutral': 'A state of emotional balance or equilibrium, where no particular emotion is dominant.',
+ 'anger': 'A feeling of intense displeasure or hostility, often triggered by a perceived wrong or injustice. It can manifest as irritation, frustration, rage, or fury.',
+ 'surprise': 'A brief emotional state in response to an unexpected event. It can be positive, negative, or neutral, depending on the nature of the surprise.',
+ 'sadness': 'A feeling of sorrow, grief, or disappointment. It can range from mild melancholy to intense despair.',
+ 'joy': 'A feeling of happiness, contentment, or pleasure. It can manifest as excitement, amusement or love.'}
+```
+
+{'fear', 'disgust', 'neutral', 'anger', 'surprise', 'sadness', 'joy'}
+
+## Evaluation
+
+Chosen labels: ?
diff --git a/benchmarks/datasets/daily_dialog/dailydialog.ipynb b/benchmarks/datasets/daily_dialog/dailydialog.ipynb
new file mode 100644
index 000000000..cfc0189cc
--- /dev/null
+++ b/benchmarks/datasets/daily_dialog/dailydialog.ipynb
@@ -0,0 +1,249 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from pathlib import Path\n",
+ "from typing import List\n",
+ "import pandas as pd\n",
+ "import json"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "datasets_path = Path(\"./datasets\")\n",
+ "valid_path = datasets_path / \"daily_dialog\" / \"dailydialog_valid.json\"\n",
+ "test_path = datasets_path / \"daily_dialog\" / \"dailydialog_test.json\"\n",
+ "train_path = datasets_path / \"daily_dialog\" / \"dailydialog_train.json\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "label_map = {'happy': 'joy',\n",
+ " 'sad': 'sadness',\n",
+ " 'happines': 'joy', \n",
+ " 'disgust': 'disgust', \n",
+ " 'anger': 'anger',\n",
+ " 'excited': 'joy',\n",
+ " 'fear': 'fear',\n",
+ " 'surprised': 'surprise',\n",
+ " 'angry': 'anger', \n",
+ " 'neutral': 'neutral',\n",
+ " 'surprise': 'surprise', \n",
+ " 'sadness': 'sadness',\n",
+ " 'happiness': 'joy'\n",
+ "}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def create_dataset(path: Path):\n",
+ " # read json file\n",
+ " data = json.loads(path.read_bytes())\n",
+ "\n",
+ " # extract sentences and labels\n",
+ " sentences_list: List[List[str]] = []\n",
+ " labels_list: List[List[str]] = []\n",
+ " for dialog_id, conversations in data.items():\n",
+ " if len(conversations) > 1:\n",
+ " print(f\"Dialog {dialog_id} has more than one conversation\")\n",
+ "\n",
+ " sentences: List[str] = []\n",
+ " labels: List[str] = []\n",
+ " for utterance in conversations[0]:\n",
+ " sentences.append(f\"Speaker {utterance['speaker']}: {utterance['utterance']}\")\n",
+ " labels.append(label_map[utterance[\"emotion\"]])\n",
+ "\n",
+ " sentences_list.append(sentences)\n",
+ " labels_list.append(labels)\n",
+ "\n",
+ " # create dataframe\n",
+ " df = pd.DataFrame({\"sentences\": sentences_list, \"labels\": labels_list})\n",
+ "\n",
+ " # save dataframe\n",
+ " df.to_parquet(path.with_suffix(\".parquet\"))\n",
+ "\n",
+ " # unique labels\n",
+ " unique_labels = set()\n",
+ " for labels in labels_list:\n",
+ " unique_labels.update(labels)\n",
+ " return unique_labels"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "l1 = create_dataset(valid_path)\n",
+ "l2 = create_dataset(test_path)\n",
+ "l3 = create_dataset(train_path)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "all_labels = l1.union(l2).union(l3)\n",
+ "print(all_labels)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# read datasets\n",
+ "valid_df = pd.read_parquet(valid_path.with_suffix(\".parquet\"))\n",
+ "test_df = pd.read_parquet(test_path.with_suffix(\".parquet\"))\n",
+ "train_df = pd.read_parquet(train_path.with_suffix(\".parquet\"))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "train_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "valid_df[\"labels\"]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "len(train_df)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# count the labels\n",
+ "label_counts = train_df[\"labels\"].explode().value_counts()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "label_counts"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# i want to find all rows that have a certain label\n",
+ "train_df[train_df[\"labels\"].apply(lambda x: \"fear\" in x)]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "train_df[\"labels\"][18]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# count the labels of train_df[\"labels\"][18]\n",
+ "train_df[\"labels\"][18].count(\"fear\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "label_list = list(train_df[\"labels\"][18])\n",
+ "\n",
+ "for idx, row in train_df[train_df[\"labels\"].apply(lambda x: \"fear\" in x)].iterrows():\n",
+ " label_list = list(row['labels'])\n",
+ " label_counts = {label: label_list.count(label) for label in set(label_list)}\n",
+ " print(idx)\n",
+ " print(label_counts)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "list(train_df[train_df[\"labels\"].apply(lambda x: \"fear\" in x)].iterrows())"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "sent-class",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.10.15"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/benchmarks/datasets/disco/.gitignore b/benchmarks/datasets/disco/.gitignore
new file mode 100644
index 000000000..4226920f8
--- /dev/null
+++ b/benchmarks/datasets/disco/.gitignore
@@ -0,0 +1,4 @@
+*
+!.gitignore
+!README.md
+!disco_dataset_creation.ipynb
diff --git a/benchmarks/datasets/disco/README.md b/benchmarks/datasets/disco/README.md
new file mode 100644
index 000000000..118867b1a
--- /dev/null
+++ b/benchmarks/datasets/disco/README.md
@@ -0,0 +1,71 @@
+# DISCO (Disfluency Correction Dataset)
+
+## What Is This Dataset About?
+
+This dataset contains pairs of disfluent and fluent sentences for text rewrite/correction tasks.
+
+The local folder includes multilingual spreadsheet sources (`German.xlsx`, `English.xlsx`, plus additional language sheets).
+
+## Where Can It Be Found?
+
+- Local source files in this repository:
+ - `German.xlsx`
+ - `English.xlsx`
+ - `French.xlsx`
+ - `Hindi.xlsx`
+ - `Domain Type Distribution Sheet.xlsx`
+
+## Links (Website / Download / Citation)
+
+- The upstream download/citation link is not explicitly recorded in `disco_dataset_creation.ipynb`.
+- Add the original release page and citation here once confirmed.
+
+## Benchmark Task Usage
+
+- Task 4.1: Disfluency Correction
+
+## Dataset Size (Current Files)
+
+- `disco_de.parquet`: 3096 samples
+- `disco_en.parquet`: 3979 samples
+
+## Label Space
+
+`Disfluency Type` values available in both files:
+
+- `C`
+- `F`
+- `FL`
+- `FS`
+- `R`
+
+## How We Preprocess It
+
+Preprocessing is implemented in `disco_dataset_creation.ipynb`.
+
+Main steps:
+
+1. Load language-specific spreadsheets.
+2. Keep core sentence-pair columns needed for correction.
+3. Drop non-essential metadata/helper columns.
+4. Export language-specific Parquet files for benchmark usage.
+
+## Final Dataset Structure
+
+### File: `disco_de.parquet`
+
+- `Sentence Number`
+- `Disfluent Sentence`
+- `Fluent Sentence`
+- `Disfluency Type`
+
+### File: `disco_en.parquet`
+
+- `Sentence Number`
+- `Disfluent Sentence`
+- `Fluent Sentence`
+- `Disfluency Type`
+
+## Notes
+
+- The notebook includes an output path named `disco_ger.parquet`; the current dataset folder contains `disco_de.parquet`.
diff --git a/benchmarks/datasets/disco/disco_dataset_creation.ipynb b/benchmarks/datasets/disco/disco_dataset_creation.ipynb
new file mode 100644
index 000000000..39005f6cc
--- /dev/null
+++ b/benchmarks/datasets/disco/disco_dataset_creation.ipynb
@@ -0,0 +1,653 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df = pd.read_excel(\"datasets/disco/German.xlsx\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Sentence Number
\n",
+ "
Disfluent Sentence
\n",
+ "
Fluent Sentence
\n",
+ "
Disfluency Type
\n",
+ "
English Translation of Fluent Sentence
\n",
+ "
Domain Label
\n",
+ "
Unnamed: 6
\n",
+ "
Distirbution
\n",
+ "
Unnamed: 8
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
1
\n",
+ "
Zeige mir Angebote zeigen.
\n",
+ "
Mir Angebote zeigen.
\n",
+ "
C
\n",
+ "
Show me offers.
\n",
+ "
Other
\n",
+ "
NaN
\n",
+ "
Other
\n",
+ "
89.0
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
2
\n",
+ "
Pausiere mein mein Lauftraining.
\n",
+ "
Pausiere mein Lauftraining.
\n",
+ "
R
\n",
+ "
Pause my running training.
\n",
+ "
Pause_exercise
\n",
+ "
NaN
\n",
+ "
Pause_exercise
\n",
+ "
157.0
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
3
\n",
+ "
Meine meine Mitfahrgelegenheit absagen.
\n",
+ "
Meine Mitfahrgelegenheit absagen.
\n",
+ "
R
\n",
+ "
Cancel my reide.
\n",
+ "
Cancel_ride
\n",
+ "
NaN
\n",
+ "
Cancel_ride
\n",
+ "
109.0
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
4
\n",
+ "
Pause pausiere das Laufen.
\n",
+ "
Pausiere das Laufen.
\n",
+ "
C
\n",
+ "
Pause the running.
\n",
+ "
Pause_exercise
\n",
+ "
NaN
\n",
+ "
Stop_exercise
\n",
+ "
170.0
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
5
\n",
+ "
Beende beende meinen Workout.
\n",
+ "
Beende meinen Workout.
\n",
+ "
R
\n",
+ "
End my workout.
\n",
+ "
Stop_exercise
\n",
+ "
NaN
\n",
+ "
Take_photo
\n",
+ "
140.0
\n",
+ "
\n",
+ "
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
\n",
+ "
\n",
+ "
3091
\n",
+ "
3092
\n",
+ "
Übung Übung stoppen.
\n",
+ "
Übung stoppen.
\n",
+ "
R
\n",
+ "
Stop exercise.
\n",
+ "
Stop_exercise
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ "
\n",
+ "
3092
\n",
+ "
3093
\n",
+ "
Stoppe stoppe Workout.
\n",
+ "
Stoppe Workout.
\n",
+ "
R
\n",
+ "
Stop workout.
\n",
+ "
Stop_exercise
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ "
\n",
+ "
3093
\n",
+ "
3094
\n",
+ "
Post schreiben schreiben.
\n",
+ "
Post schreiben.
\n",
+ "
R
\n",
+ "
Write a post.
\n",
+ "
Post_message
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ "
\n",
+ "
3094
\n",
+ "
3095
\n",
+ "
Yoga beenden beenden.
\n",
+ "
Yoga beenden.
\n",
+ "
R
\n",
+ "
Finish yoga.
\n",
+ "
Stop_exercise
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ "
\n",
+ "
3095
\n",
+ "
3096
\n",
+ "
Lauftraining Lauftraining starten.
\n",
+ "
Lauftraining starten.
\n",
+ "
R
\n",
+ "
Start running practice.
\n",
+ "
Start_exercise
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
3096 rows × 9 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Sentence Number Disfluent Sentence \\\n",
+ "0 1 Zeige mir Angebote zeigen. \n",
+ "1 2 Pausiere mein mein Lauftraining. \n",
+ "2 3 Meine meine Mitfahrgelegenheit absagen. \n",
+ "3 4 Pause pausiere das Laufen. \n",
+ "4 5 Beende beende meinen Workout. \n",
+ "... ... ... \n",
+ "3091 3092 Übung Übung stoppen. \n",
+ "3092 3093 Stoppe stoppe Workout. \n",
+ "3093 3094 Post schreiben schreiben. \n",
+ "3094 3095 Yoga beenden beenden. \n",
+ "3095 3096 Lauftraining Lauftraining starten. \n",
+ "\n",
+ " Fluent Sentence Disfluency Type \\\n",
+ "0 Mir Angebote zeigen. C \n",
+ "1 Pausiere mein Lauftraining. R \n",
+ "2 Meine Mitfahrgelegenheit absagen. R \n",
+ "3 Pausiere das Laufen. C \n",
+ "4 Beende meinen Workout. R \n",
+ "... ... ... \n",
+ "3091 Übung stoppen. R \n",
+ "3092 Stoppe Workout. R \n",
+ "3093 Post schreiben. R \n",
+ "3094 Yoga beenden. R \n",
+ "3095 Lauftraining starten. R \n",
+ "\n",
+ " English Translation of Fluent Sentence Domain Label Unnamed: 6 \\\n",
+ "0 Show me offers. Other NaN \n",
+ "1 Pause my running training. Pause_exercise NaN \n",
+ "2 Cancel my reide. Cancel_ride NaN \n",
+ "3 Pause the running. Pause_exercise NaN \n",
+ "4 End my workout. Stop_exercise NaN \n",
+ "... ... ... ... \n",
+ "3091 Stop exercise. Stop_exercise NaN \n",
+ "3092 Stop workout. Stop_exercise NaN \n",
+ "3093 Write a post. Post_message NaN \n",
+ "3094 Finish yoga. Stop_exercise NaN \n",
+ "3095 Start running practice. Start_exercise NaN \n",
+ "\n",
+ " Distirbution Unnamed: 8 \n",
+ "0 Other 89.0 \n",
+ "1 Pause_exercise 157.0 \n",
+ "2 Cancel_ride 109.0 \n",
+ "3 Stop_exercise 170.0 \n",
+ "4 Take_photo 140.0 \n",
+ "... ... ... \n",
+ "3091 NaN NaN \n",
+ "3092 NaN NaN \n",
+ "3093 NaN NaN \n",
+ "3094 NaN NaN \n",
+ "3095 NaN NaN \n",
+ "\n",
+ "[3096 rows x 9 columns]"
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# remove a few columns: English Translation of Fluent Sentence, Domain Label, Unnamed: 6, Distirbution, Unnamed: 8\n",
+ "df = df.drop(columns=[\"English Translation of Fluent Sentence\", \"Domain Label\", \"Unnamed: 6\", \"Distirbution\", \"Unnamed: 8\"])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
"
+ ],
+ "text/plain": [
+ " id tokens \\\n",
+ "0 0 [Wegen, der, Teilnahme, des, Antragstellers, a... \n",
+ "1 1 [●, Mitwirkung, im, Sinne, der, Kostenverfügung] \n",
+ "2 2 [Von, der, Ablehnung, eines, Straferlasses, fü... \n",
+ "3 3 [Zwar, führt, bei, der, in, §, 33, Abs., 2, TV... \n",
+ "4 4 [Der, Wortlaut, der, Zulagenregelung, verlange... \n",
+ "\n",
+ " ner_tags \\\n",
+ "0 [O, O, O, O, O, O, O, O, O, O, O, O, O, O, Ort... \n",
+ "1 [O, O, O, O, O, O] \n",
+ "2 [O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ... \n",
+ "3 [O, O, O, O, O, Einzelfallregelung, Einzelfall... \n",
+ "4 [O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, O] \n",
+ "\n",
+ " fine_ner_tags \n",
+ "0 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, ... \n",
+ "1 [0, 0, 0, 0, 0, 0] \n",
+ "2 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n",
+ "3 [0, 0, 0, 0, 0, 17, 17, 17, 17, 17, 17, 17, 0,... \n",
+ "4 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] "
+ ]
+ },
+ "execution_count": 34,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.head()\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 36,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df[\"ner_tags\"] = df[\"ner_tags\"].apply(lambda x: [coarse_labels_merge2id[i] for i in x])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 37,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
id
\n",
+ "
tokens
\n",
+ "
ner_tags
\n",
+ "
fine_ner_tags
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
0
\n",
+ "
[Wegen, der, Teilnahme, des, Antragstellers, a...
\n",
+ "
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, ...
\n",
+ "
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, ...
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
1
\n",
+ "
[●, Mitwirkung, im, Sinne, der, Kostenverfügung]
\n",
+ "
[0, 0, 0, 0, 0, 0]
\n",
+ "
[0, 0, 0, 0, 0, 0]
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
2
\n",
+ "
[Von, der, Ablehnung, eines, Straferlasses, fü...
\n",
+ "
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
\n",
+ "
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
3
\n",
+ "
[Zwar, führt, bei, der, in, §, 33, Abs., 2, TV...
\n",
+ "
[0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, ...
\n",
+ "
[0, 0, 0, 0, 0, 17, 17, 17, 17, 17, 17, 17, 0,...
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
4
\n",
+ "
[Der, Wortlaut, der, Zulagenregelung, verlange...
\n",
+ "
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
\n",
+ "
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " id tokens \\\n",
+ "0 0 [Wegen, der, Teilnahme, des, Antragstellers, a... \n",
+ "1 1 [●, Mitwirkung, im, Sinne, der, Kostenverfügung] \n",
+ "2 2 [Von, der, Ablehnung, eines, Straferlasses, fü... \n",
+ "3 3 [Zwar, führt, bei, der, in, §, 33, Abs., 2, TV... \n",
+ "4 4 [Der, Wortlaut, der, Zulagenregelung, verlange... \n",
+ "\n",
+ " ner_tags \\\n",
+ "0 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, ... \n",
+ "1 [0, 0, 0, 0, 0, 0] \n",
+ "2 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n",
+ "3 [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, ... \n",
+ "4 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] \n",
+ "\n",
+ " fine_ner_tags \n",
+ "0 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, ... \n",
+ "1 [0, 0, 0, 0, 0, 0] \n",
+ "2 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n",
+ "3 [0, 0, 0, 0, 0, 17, 17, 17, 17, 17, 17, 17, 0,... \n",
+ "4 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] "
+ ]
+ },
+ "execution_count": 37,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df.to_parquet(\"german_ler_test.parquet\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.6"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/benchmarks/datasets/german-quotations/.gitignore b/benchmarks/datasets/german-quotations/.gitignore
new file mode 100644
index 000000000..808d0e52b
--- /dev/null
+++ b/benchmarks/datasets/german-quotations/.gitignore
@@ -0,0 +1,4 @@
+*
+!.gitignore
+!README.md
+!quotation_attribution_creation.ipynb
diff --git a/benchmarks/datasets/german-quotations/README.md b/benchmarks/datasets/german-quotations/README.md
new file mode 100644
index 000000000..5bed9854d
--- /dev/null
+++ b/benchmarks/datasets/german-quotations/README.md
@@ -0,0 +1,82 @@
+# German Quotations (Benchmark Dataset)
+
+## What Is This Dataset About?
+
+This dataset focuses on quotation attribution in German news text.
+
+In our benchmark setup, we transform document-level annotations into token-level span labels to support span classification for quote/speaker-related tagging.
+
+## Where Can It Be Found?
+
+- Project repository:
+ - https://github.com/uhh-lt/german-news-quotation-attribution-2024
+
+## Links (Website / Download / Citation)
+
+- ACL Anthology paper:
+ - https://aclanthology.org/2024.lrec-main.394.pdf
+- Project repository:
+ - https://github.com/uhh-lt/german-news-quotation-attribution-2024
+
+## Benchmark Task Usage
+
+- Task 3: Span Classification
+
+## Dataset Size (Current Files)
+
+- `german_quotations_test.parquet`: 998 samples
+- `german_direct_quotations.parquet`: 434 samples
+
+## How We Preprocess It
+
+Preprocessing is implemented in `quotation_attribution_creation.ipynb`.
+
+Main steps:
+
+1. Iterate all `.pretty.json` files from `train/`, `dev/`, and `test/`.
+2. Flatten token streams from each document.
+3. Derive token-level labels for quote/speaker attribution.
+4. Build sequence tag arrays per document.
+5. Track documents without quote annotations (`isempty`).
+6. Build:
+ - a test evaluation file
+ - a larger training-oriented file that keeps all non-empty docs plus a sampled subset of empty docs
+7. Export Parquet outputs.
+
+## Final Dataset Structure
+
+### File: `german_quotations_test.parquet`
+
+- `tokens`: token sequence
+- `tags`: token-level label sequence
+
+### File: `german_direct_quotations.parquet`
+
+- `tokens`: token sequence
+- `tags`: token-level label sequence
+- `isempty`: whether no quote span is present in the sample
+- `__index_level_0__`: pandas index artifact
+
+## Available Tags In The Final Files
+
+### `german_quotations_test.parquet`
+
+Observed string tag values in `tags`:
+
+- `O`
+- `speaker`
+- `quote`
+
+### `german_direct_quotations.parquet`
+
+Observed integer tag values in `tags`:
+
+- `0`
+- `1`
+- `2`
+
+Coarse mapping used in preprocessing:
+
+- `0` -> `O`
+- `1` -> `speaker`
+- `2` -> `quote`
diff --git a/benchmarks/datasets/german-quotations/quotation_attribution_creation.ipynb b/benchmarks/datasets/german-quotations/quotation_attribution_creation.ipynb
new file mode 100644
index 000000000..ec86c10c8
--- /dev/null
+++ b/benchmarks/datasets/german-quotations/quotation_attribution_creation.ipynb
@@ -0,0 +1,2623 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from pathlib import Path\n",
+ "import json\n",
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 68,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dataset_path = Path(\"datasets/german-quotations/test\")\n",
+ "\n",
+ "paths = [\n",
+ " Path(\"datasets/german-quotations/test\"),\n",
+ " Path(\"datasets/german-quotations/train\"),\n",
+ " Path(\"datasets/german-quotations/dev\")\n",
+ "]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 69,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Processing datasets/german-quotations/test/83133 - DFB-Frauenteam siegt glücklich gegen Spanien (2019-06-13).pretty.json\n",
+ "83133 - DFB-Frauenteam siegt glücklich gegen Spanien (2019-06-13)\n",
+ "Processing datasets/german-quotations/test/3560 - 1,3 Millionen Bundesbürger in Deutschland haben kostenlos Pakete verschickt (2005-02-27).pretty.json\n",
+ "3560 - 1,3 Millionen Bundesbürger in Deutschland haben kostenlos Pakete verschickt (2005-02-27)\n",
+ "Processing datasets/german-quotations/test/8684 - Drogenvergehen: Deutsche nach drei Jahren Haft in Singapur wieder frei (2005-07-15).pretty.json\n",
+ "8684 - Drogenvergehen: Deutsche nach drei Jahren Haft in Singapur wieder frei (2005-07-15)\n",
+ "Processing datasets/german-quotations/test/37225 - Fieber-Epidemie in Kenia tötet mindestens 90 Menschen (2007-01-15).pretty.json\n",
+ "37225 - Fieber-Epidemie in Kenia tötet mindestens 90 Menschen (2007-01-15)\n",
+ "Processing datasets/german-quotations/test/18451 - Massenkarambolage auf der Autobahn bei Darmstadt (2005-12-26).pretty.json\n",
+ "18451 - Massenkarambolage auf der Autobahn bei Darmstadt (2005-12-26)\n",
+ "Processing datasets/german-quotations/test/39628 - Iran-Krise spitzt sich zu: Großbritannien „friert“ Beziehungen zum Iran „ein“ (2007-03-31).pretty.json\n",
+ "39628 - Iran-Krise spitzt sich zu: Großbritannien „friert“ Beziehungen zum Iran „ein“ (2007-03-31)\n",
+ "Processing datasets/german-quotations/test/12474 - Jenaer Westbahnhof wird saniert (2005-09-14).pretty.json\n",
+ "12474 - Jenaer Westbahnhof wird saniert (2005-09-14)\n",
+ "Processing datasets/german-quotations/test/58004 - Amtsinhaber Thomas Horn gewinnt Bürgermeisterwahl in Kelkheim (2009-06-25).pretty.json\n",
+ "58004 - Amtsinhaber Thomas Horn gewinnt Bürgermeisterwahl in Kelkheim (2009-06-25)\n",
+ "Processing datasets/german-quotations/test/71466 - Hoteliers rufen aus Protest gegen HRS zur HRS-freien Woche auf (2012-01-03).pretty.json\n",
+ "71466 - Hoteliers rufen aus Protest gegen HRS zur HRS-freien Woche auf (2012-01-03)\n",
+ "Processing datasets/german-quotations/test/67830 - München: Haftentlassener schlägt 82-jährigen Rentner nieder (2011-04-28).pretty.json\n",
+ "67830 - München: Haftentlassener schlägt 82-jährigen Rentner nieder (2011-04-28)\n",
+ "Processing datasets/german-quotations/test/22916 - STANDARD LIFE Versicherung geht weiter in Richtung Demutualisierung (2006-03-02).pretty.json\n",
+ "22916 - STANDARD LIFE Versicherung geht weiter in Richtung Demutualisierung (2006-03-02)\n",
+ "Processing datasets/german-quotations/test/58940 - NPD-Hetzschrift in Parteizentrale sichergestellt (2009-09-24).pretty.json\n",
+ "58940 - NPD-Hetzschrift in Parteizentrale sichergestellt (2009-09-24)\n",
+ "Processing datasets/german-quotations/test/75013 - Zwei Tote bei Massenkarambolage auf der Bundesautobahn 6 (2013-02-20).pretty.json\n",
+ "75013 - Zwei Tote bei Massenkarambolage auf der Bundesautobahn 6 (2013-02-20)\n",
+ "Processing datasets/german-quotations/test/13851 - Vogelgrippe in Europa: Kommt eine Pandemie? (2005-10-13).pretty.json\n",
+ "13851 - Vogelgrippe in Europa: Kommt eine Pandemie? (2005-10-13)\n",
+ "Processing datasets/german-quotations/test/60408 - Neue Bankenpleite in den USA (2010-01-09).pretty.json\n",
+ "60408 - Neue Bankenpleite in den USA (2010-01-09)\n",
+ "Processing datasets/german-quotations/test/67356 - Dalai Lama besorgt um versiegende Wasserquellen in der tibetischen Hochebene (2011-04-03).pretty.json\n",
+ "67356 - Dalai Lama besorgt um versiegende Wasserquellen in der tibetischen Hochebene (2011-04-03)\n",
+ "Processing datasets/german-quotations/test/63051 - Bombenleger von Viernheim muss zwölf Jahre hinter Gitter (2010-06-23).pretty.json\n",
+ "63051 - Bombenleger von Viernheim muss zwölf Jahre hinter Gitter (2010-06-23)\n",
+ "Processing datasets/german-quotations/test/75206 - 9. Markt für Dresdner Geschichte und Geschichten: Aus Vororten werden Vorstädte (2013-03-24).pretty.json\n",
+ "75206 - 9. Markt für Dresdner Geschichte und Geschichten: Aus Vororten werden Vorstädte (2013-03-24)\n",
+ "Processing datasets/german-quotations/test/15867 - Fußballprofi Castro entschied sich für Deutschland (2005-11-10).pretty.json\n",
+ "15867 - Fußballprofi Castro entschied sich für Deutschland (2005-11-10)\n",
+ "Processing datasets/german-quotations/test/42295 - Klausjürgen Wussow ist tot (2007-06-20).pretty.json\n",
+ "42295 - Klausjürgen Wussow ist tot (2007-06-20)\n",
+ "Processing datasets/german-quotations/test/16561 - Bundesregierung verteidigt Haushaltsplan 2006 (2005-12-01).pretty.json\n",
+ "16561 - Bundesregierung verteidigt Haushaltsplan 2006 (2005-12-01)\n",
+ "Processing datasets/german-quotations/test/67548 - New York: Ehemaliger Boss der La Cosa Nostra packt vor Gericht aus (2011-04-16).pretty.json\n",
+ "67548 - New York: Ehemaliger Boss der La Cosa Nostra packt vor Gericht aus (2011-04-16)\n",
+ "Processing datasets/german-quotations/test/46269 - Lebende Legende der Kurven - Oscar Niemeyer feiert seinen 100sten (2007-12-14).pretty.json\n",
+ "46269 - Lebende Legende der Kurven - Oscar Niemeyer feiert seinen 100sten (2007-12-14)\n",
+ "Processing datasets/german-quotations/test/9379 - Antonow 12 fährt leer über das Rollfeld: Bruchlandung (2005-07-27).pretty.json\n",
+ "9379 - Antonow 12 fährt leer über das Rollfeld: Bruchlandung (2005-07-27)\n",
+ "Processing datasets/german-quotations/test/65671 - Neue tunesische „Regierung der nationalen Einheit“ bereits nach einem Tag in der Krise (2011-01-18).pretty.json\n",
+ "65671 - Neue tunesische „Regierung der nationalen Einheit“ bereits nach einem Tag in der Krise (2011-01-18)\n",
+ "Processing datasets/german-quotations/test/65602 - Tunesischer Präsident Ben Ali nach Saudi-Arabien geflohen (2011-01-15).pretty.json\n",
+ "65602 - Tunesischer Präsident Ben Ali nach Saudi-Arabien geflohen (2011-01-15)\n",
+ "Processing datasets/german-quotations/test/18862 - Bad Reichenhall: Dach der Eissporthalle zusammengebrochen (2006-01-02).pretty.json\n",
+ "18862 - Bad Reichenhall: Dach der Eissporthalle zusammengebrochen (2006-01-02)\n",
+ "Processing datasets/german-quotations/test/54074 - Angeklagte nach 31 Jahre zurückliegendem Mord freigesprochen (2008-11-16).pretty.json\n",
+ "54074 - Angeklagte nach 31 Jahre zurückliegendem Mord freigesprochen (2008-11-16)\n",
+ "Processing datasets/german-quotations/test/72243 - Arbeitslosigkeit in der Eurozone erreicht Rekordniveau (2012-04-13).pretty.json\n",
+ "72243 - Arbeitslosigkeit in der Eurozone erreicht Rekordniveau (2012-04-13)\n",
+ "Processing datasets/german-quotations/test/4249 - Müntefering will Pflegeversicherungspflicht ausweiten (2005-03-26).pretty.json\n",
+ "4249 - Müntefering will Pflegeversicherungspflicht ausweiten (2005-03-26)\n",
+ "Processing datasets/german-quotations/test/53341 - Videospiel: Fallout 3 mit speziell für den Trailer angefertigten, hochauflösendem Inhalt (2008-10-07).pretty.json\n",
+ "53341 - Videospiel: Fallout 3 mit speziell für den Trailer angefertigten, hochauflösendem Inhalt (2008-10-07)\n",
+ "Processing datasets/german-quotations/test/43325 - Koblenz: Zwei Erdbeben am Freitagmorgen (2007-08-03).pretty.json\n",
+ "43325 - Koblenz: Zwei Erdbeben am Freitagmorgen (2007-08-03)\n",
+ "Processing datasets/german-quotations/test/73320 - Neuwied: Drei Wochen altes in Tschechien entführtes Mädchen aufgefunden (2012-07-10).pretty.json\n",
+ "73320 - Neuwied: Drei Wochen altes in Tschechien entführtes Mädchen aufgefunden (2012-07-10)\n",
+ "Processing datasets/german-quotations/test/65177 - Venezuela: Präsident Chávez regiert per Dekret (2010-12-18).pretty.json\n",
+ "65177 - Venezuela: Präsident Chávez regiert per Dekret (2010-12-18)\n",
+ "Processing datasets/german-quotations/test/83299 - Kamerun bekämpft Rekrutierungen durch Boko Haram mit Ziegen und Schafen (2019-07-14).pretty.json\n",
+ "83299 - Kamerun bekämpft Rekrutierungen durch Boko Haram mit Ziegen und Schafen (2019-07-14)\n",
+ "Processing datasets/german-quotations/test/63594 - Abrissarbeiten für neuen Stuttgarter Bahnhof beginnen unter Protest (2010-08-28).pretty.json\n",
+ "63594 - Abrissarbeiten für neuen Stuttgarter Bahnhof beginnen unter Protest (2010-08-28)\n",
+ "Processing datasets/german-quotations/test/66750 - US-Luftwaffe schießt unbemanntes Raumschiff ins All (2011-03-06).pretty.json\n",
+ "66750 - US-Luftwaffe schießt unbemanntes Raumschiff ins All (2011-03-06)\n",
+ "Processing datasets/german-quotations/test/74583 - Skandal um Steuerfahndung in Griechenland (2013-01-01).pretty.json\n",
+ "74583 - Skandal um Steuerfahndung in Griechenland (2013-01-01)\n",
+ "Processing datasets/german-quotations/test/37853 - Iran: Angeblich neues Heilmittel für AIDS entdeckt (2007-02-06).pretty.json\n",
+ "37853 - Iran: Angeblich neues Heilmittel für AIDS entdeckt (2007-02-06)\n",
+ "Processing datasets/german-quotations/test/34748 - Großaufgebot von rund 2.500 Polizisten schützte NPD-Demo in Bremen (2006-11-04).pretty.json\n",
+ "34748 - Großaufgebot von rund 2.500 Polizisten schützte NPD-Demo in Bremen (2006-11-04)\n",
+ "Processing datasets/german-quotations/test/62849 - Köhler-Nachfolge: Kandidaten von Schwarz-Gelb und Rot-Grün stehen fest (2010-06-05).pretty.json\n",
+ "62849 - Köhler-Nachfolge: Kandidaten von Schwarz-Gelb und Rot-Grün stehen fest (2010-06-05)\n",
+ "Processing datasets/german-quotations/test/44870 - Methodos e.V. - Freiburger Schüler lernen für das Abitur im eigenen Verein (2007-10-16).pretty.json\n",
+ "44870 - Methodos e.V. - Freiburger Schüler lernen für das Abitur im eigenen Verein (2007-10-16)\n",
+ "Processing datasets/german-quotations/test/69083 - Mafiamorde von Duisburg: Italienisches Gericht spricht lebenslange Haftstrafe aus (2011-07-16).pretty.json\n",
+ "69083 - Mafiamorde von Duisburg: Italienisches Gericht spricht lebenslange Haftstrafe aus (2011-07-16)\n",
+ "Processing datasets/german-quotations/test/6226 - CDU und CSU streiten über künftigen Kurs in der Sozialpolitik (2005-06-14).pretty.json\n",
+ "6226 - CDU und CSU streiten über künftigen Kurs in der Sozialpolitik (2005-06-14)\n",
+ "Processing datasets/german-quotations/test/79481 - Widerstand in Polen gegen die Aufnahme von Flüchtlingen (2016-02-07).pretty.json\n",
+ "79481 - Widerstand in Polen gegen die Aufnahme von Flüchtlingen (2016-02-07)\n",
+ "Processing datasets/german-quotations/test/57479 - Pädagogische Hochschule Heidelberg verhängt Haushaltssperre (2009-05-21).pretty.json\n",
+ "57479 - Pädagogische Hochschule Heidelberg verhängt Haushaltssperre (2009-05-21)\n",
+ "Processing datasets/german-quotations/test/71380 - München: Angriff mit Samuraischwert (2012-01-25).pretty.json\n",
+ "71380 - München: Angriff mit Samuraischwert (2012-01-25)\n",
+ "Processing datasets/german-quotations/test/43568 - Bombenanschlag auf russischen Schnellzug (2007-08-14).pretty.json\n",
+ "43568 - Bombenanschlag auf russischen Schnellzug (2007-08-14)\n",
+ "Processing datasets/german-quotations/test/4927 - Skelett aus Altdorf stammt von Steinzeitmann (2005-04-27).pretty.json\n",
+ "4927 - Skelett aus Altdorf stammt von Steinzeitmann (2005-04-27)\n",
+ "Processing datasets/german-quotations/test/51401 - Nelson Mandela wird 90 (2008-06-28).pretty.json\n",
+ "51401 - Nelson Mandela wird 90 (2008-06-28)\n",
+ "Processing datasets/german-quotations/test/68250 - Afghanistan: Bundeswehrsoldaten schossen gezielt auf Demonstranten (2011-05-21).pretty.json\n",
+ "68250 - Afghanistan: Bundeswehrsoldaten schossen gezielt auf Demonstranten (2011-05-21)\n",
+ "Processing datasets/german-quotations/test/11014 - Messdiener auf dem Weltjugendtag (2005-08-19).pretty.json\n",
+ "11014 - Messdiener auf dem Weltjugendtag (2005-08-19)\n",
+ "Processing datasets/german-quotations/test/26748 - Edmund Stoiber unterstützt erneute Olympia-Kandidatur Münchens (2006-05-13).pretty.json\n",
+ "26748 - Edmund Stoiber unterstützt erneute Olympia-Kandidatur Münchens (2006-05-13)\n",
+ "Processing datasets/german-quotations/test/60335 - Obama: Keine weiteren Guantánamo-Häftlinge in den Jemen (2010-01-06).pretty.json\n",
+ "60335 - Obama: Keine weiteren Guantánamo-Häftlinge in den Jemen (2010-01-06)\n",
+ "Processing datasets/german-quotations/test/77466 - Peking: „Trauer“ über die Vorgänge in Hong Kong (2014-09-29).pretty.json\n",
+ "77466 - Peking: „Trauer“ über die Vorgänge in Hong Kong (2014-09-29)\n",
+ "Processing datasets/german-quotations/test/12299 - Potentiell gefährliche Lücke im Internet-Browser „Firefox“ (2005-09-10).pretty.json\n",
+ "12299 - Potentiell gefährliche Lücke im Internet-Browser „Firefox“ (2005-09-10)\n",
+ "Processing datasets/german-quotations/test/9835 - Inselrepublik Kap Verde erhält eine eigene Börse (2005-08-04).pretty.json\n",
+ "9835 - Inselrepublik Kap Verde erhält eine eigene Börse (2005-08-04)\n",
+ "Processing datasets/german-quotations/test/56411 - US-Autoabsatz bricht im Februar 2009 dramatisch ein (2009-03-09).pretty.json\n",
+ "56411 - US-Autoabsatz bricht im Februar 2009 dramatisch ein (2009-03-09)\n",
+ "Processing datasets/german-quotations/test/56312 - Millionenschaden bei Caravan-Händler Fassbender in Oldenburg (2009-02-28).pretty.json\n",
+ "56312 - Millionenschaden bei Caravan-Händler Fassbender in Oldenburg (2009-02-28)\n",
+ "Processing datasets/german-quotations/test/18120 - IWF: Schuldenerlass für die ärmsten Länder der Erde (2005-12-23).pretty.json\n",
+ "18120 - IWF: Schuldenerlass für die ärmsten Länder der Erde (2005-12-23)\n",
+ "Processing datasets/german-quotations/test/41916 - G8-Proteste: Anzahl schwer verletzter Polizisten möglicherweise als zu hoch angegeben (2007-06-06).pretty.json\n",
+ "41916 - G8-Proteste: Anzahl schwer verletzter Polizisten möglicherweise als zu hoch angegeben (2007-06-06)\n",
+ "Processing datasets/german-quotations/test/74940 - Ukraine: Tote bei Flugzeugunglück (2013-02-14).pretty.json\n",
+ "74940 - Ukraine: Tote bei Flugzeugunglück (2013-02-14)\n",
+ "Processing datasets/german-quotations/test/59230 - Falschmeldung von einem Rücktritt Wolfgang Schäubles auf einer CDU-Website (2009-10-07).pretty.json\n",
+ "59230 - Falschmeldung von einem Rücktritt Wolfgang Schäubles auf einer CDU-Website (2009-10-07)\n",
+ "Processing datasets/german-quotations/test/12825 - Wohnungsdurchsuchung im Fall des eBay-Babys (2005-09-23).pretty.json\n",
+ "12825 - Wohnungsdurchsuchung im Fall des eBay-Babys (2005-09-23)\n",
+ "Processing datasets/german-quotations/test/84324 - Spannungen an der sudanesisch-äthiopischen Grenze in der Konfliktregion al-Fashqa nehmen zu (2021-01-22).pretty.json\n",
+ "84324 - Spannungen an der sudanesisch-äthiopischen Grenze in der Konfliktregion al-Fashqa nehmen zu (2021-01-22)\n",
+ "Processing datasets/german-quotations/test/37332 - Opposition: Parlament muss über Tornado-Einsatz entscheiden (2007-01-21).pretty.json\n",
+ "37332 - Opposition: Parlament muss über Tornado-Einsatz entscheiden (2007-01-21)\n",
+ "Processing datasets/german-quotations/test/73588 - London: Erste Olympia-Medaillen für Deutschland erkämpft (2012-07-31).pretty.json\n",
+ "73588 - London: Erste Olympia-Medaillen für Deutschland erkämpft (2012-07-31)\n",
+ "Processing datasets/german-quotations/test/23777 - Bundesregierung stimmt Kompromiss für EU-Führerschein zu (2006-03-17).pretty.json\n",
+ "23777 - Bundesregierung stimmt Kompromiss für EU-Führerschein zu (2006-03-17)\n",
+ "Processing datasets/german-quotations/test/76513 - Postume Begnadigung für Alan Turing (2013-12-25).pretty.json\n",
+ "76513 - Postume Begnadigung für Alan Turing (2013-12-25)\n",
+ "Processing datasets/german-quotations/test/27244 - Popstar Madonna startete neue Tournee (2006-05-25).pretty.json\n",
+ "27244 - Popstar Madonna startete neue Tournee (2006-05-25)\n",
+ "Processing datasets/german-quotations/test/29410 - Schlägerei an Bord eines serbischen Flugzeuges (2006-07-02).pretty.json\n",
+ "29410 - Schlägerei an Bord eines serbischen Flugzeuges (2006-07-02)\n",
+ "Processing datasets/german-quotations/test/50115 - 13. Karneval der Kulturen in Berlin (2008-05-12).pretty.json\n",
+ "50115 - 13. Karneval der Kulturen in Berlin (2008-05-12)\n",
+ "Processing datasets/german-quotations/test/63379 - Brite schreitet als erster Mensch den Amazonas ab (2010-08-10).pretty.json\n",
+ "63379 - Brite schreitet als erster Mensch den Amazonas ab (2010-08-10)\n",
+ "Processing datasets/german-quotations/test/2954 - In mehreren deutschen Städten demonstrieren StudentInnen gegen Studiengebühren (2005-02-03).pretty.json\n",
+ "2954 - In mehreren deutschen Städten demonstrieren StudentInnen gegen Studiengebühren (2005-02-03)\n",
+ "Processing datasets/german-quotations/test/8648 - Computerhersteller Apple gibt seine Quartalszahlen bekannt (2005-07-15).pretty.json\n",
+ "8648 - Computerhersteller Apple gibt seine Quartalszahlen bekannt (2005-07-15)\n",
+ "Processing datasets/german-quotations/test/83285 - 22 neue Stolpersteine in Hannover (2019-07-12).pretty.json\n",
+ "83285 - 22 neue Stolpersteine in Hannover (2019-07-12)\n",
+ "Processing datasets/german-quotations/test/31608 - Hamas und Al-Fatah bilden Regierung der Nationalen Einheit (2006-09-14).pretty.json\n",
+ "31608 - Hamas und Al-Fatah bilden Regierung der Nationalen Einheit (2006-09-14)\n",
+ "Processing datasets/german-quotations/test/30393 - Saddam Hussein im Krankenhaus (2006-07-24).pretty.json\n",
+ "30393 - Saddam Hussein im Krankenhaus (2006-07-24)\n",
+ "Processing datasets/german-quotations/test/44492 - Raumsonde Dawn auf dem Weg zum Asteroidengürtel (2007-09-27).pretty.json\n",
+ "44492 - Raumsonde Dawn auf dem Weg zum Asteroidengürtel (2007-09-27)\n",
+ "Processing datasets/german-quotations/test/72691 - Indien: Polizei stoppt Eltern beim Versuch, Säugling lebendig zu begraben (2012-05-14).pretty.json\n",
+ "72691 - Indien: Polizei stoppt Eltern beim Versuch, Säugling lebendig zu begraben (2012-05-14)\n",
+ "Processing datasets/german-quotations/test/8417 - Stufenplan für Europas Raumfähre „Kliper“ (2005-07-11).pretty.json\n",
+ "8417 - Stufenplan für Europas Raumfähre „Kliper“ (2005-07-11)\n",
+ "Processing datasets/german-quotations/test/70697 - 13-jährige Tochter in Stolzenau vom Vater erschossen (2011-12-06).pretty.json\n",
+ "70697 - 13-jährige Tochter in Stolzenau vom Vater erschossen (2011-12-06)\n",
+ "Processing datasets/german-quotations/test/23505 - Weiterer Meilenstein bei Wikipedia (2006-03-12).pretty.json\n",
+ "23505 - Weiterer Meilenstein bei Wikipedia (2006-03-12)\n",
+ "Processing datasets/german-quotations/test/14446 - Platz acht für Martina Ertl-Renz im Riesenslalom (2005-10-23).pretty.json\n",
+ "14446 - Platz acht für Martina Ertl-Renz im Riesenslalom (2005-10-23)\n",
+ "Processing datasets/german-quotations/test/50808 - Der Hamburger Schriftsteller Peter Rühmkorf starb im Alter von 78 Jahren (2008-06-09).pretty.json\n",
+ "50808 - Der Hamburger Schriftsteller Peter Rühmkorf starb im Alter von 78 Jahren (2008-06-09)\n",
+ "Processing datasets/german-quotations/test/38864 - Nach Notbremsung: 450 ICE-Passagiere müssen im Tunnel umsteigen (2007-03-07).pretty.json\n",
+ "38864 - Nach Notbremsung: 450 ICE-Passagiere müssen im Tunnel umsteigen (2007-03-07)\n",
+ "Processing datasets/german-quotations/test/37718 - FC Bayern München entlässt Trainer Magath (2007-01-31).pretty.json\n",
+ "37718 - FC Bayern München entlässt Trainer Magath (2007-01-31)\n",
+ "Processing datasets/german-quotations/test/49445 - Fußball-Wettskandal: Außergerichtliche Einigung zwischem dem DFB und dem ehemaligen Schiedsrichter Robert Hoyzer (2008-04-04).pretty.json\n",
+ "49445 - Fußball-Wettskandal: Außergerichtliche Einigung zwischem dem DFB und dem ehemaligen Schiedsrichter Robert Hoyzer (2008-04-04)\n",
+ "Processing datasets/german-quotations/test/29071 - Barbara Ludwig gewann die Oberbürgermeisterwahlen in Chemnitz (2006-06-27).pretty.json\n",
+ "29071 - Barbara Ludwig gewann die Oberbürgermeisterwahlen in Chemnitz (2006-06-27)\n",
+ "Processing datasets/german-quotations/test/4130 - Weitere 130.000 ehemalige Sozialhilfeempfänger in der Statistik (2005-03-24).pretty.json\n",
+ "4130 - Weitere 130.000 ehemalige Sozialhilfeempfänger in der Statistik (2005-03-24)\n",
+ "Processing datasets/german-quotations/test/77285 - Indisch-Pakistanische Wassergespräche ergebnislos vertagt (2014-08-29).pretty.json\n",
+ "77285 - Indisch-Pakistanische Wassergespräche ergebnislos vertagt (2014-08-29)\n",
+ "Processing datasets/german-quotations/test/74142 - USA erhebt Zölle auf billige chinesische Solarmodule (2012-10-18).pretty.json\n",
+ "74142 - USA erhebt Zölle auf billige chinesische Solarmodule (2012-10-18)\n",
+ "Processing datasets/german-quotations/test/30241 - Neue Version der 3D-Software Blender erschienen (2006-07-19).pretty.json\n",
+ "30241 - Neue Version der 3D-Software Blender erschienen (2006-07-19)\n",
+ "Processing datasets/german-quotations/test/45586 - Feldversuch in NRW für versetzt liegende Warnschwellen an Autobahnbaustellen gestartet (2007-12-03).pretty.json\n",
+ "45586 - Feldversuch in NRW für versetzt liegende Warnschwellen an Autobahnbaustellen gestartet (2007-12-03)\n",
+ "Processing datasets/german-quotations/test/8915 - Union über Einführung der neuen Rechtschreibung gespalten (2005-07-19).pretty.json\n",
+ "8915 - Union über Einführung der neuen Rechtschreibung gespalten (2005-07-19)\n",
+ "Processing datasets/german-quotations/test/12162 - Ehemaliger TV-Moderator Türck freigesprochen (2005-09-09).pretty.json\n",
+ "12162 - Ehemaliger TV-Moderator Türck freigesprochen (2005-09-09)\n",
+ "Processing datasets/german-quotations/test/8461 - Zukunft der Kassel Huskies ungewiss (2005-07-11).pretty.json\n",
+ "8461 - Zukunft der Kassel Huskies ungewiss (2005-07-11)\n",
+ "Processing datasets/german-quotations/test/55456 - Haie sind die wahren Opfer (2009-01-21).pretty.json\n",
+ "55456 - Haie sind die wahren Opfer (2009-01-21)\n",
+ "Processing datasets/german-quotations/test/72180 - US-Vorwahlen: Santorum setzt sich in Louisiana durch (2012-03-28).pretty.json\n",
+ "72180 - US-Vorwahlen: Santorum setzt sich in Louisiana durch (2012-03-28)\n",
+ "Processing datasets/german-quotations/test/59934 - Băsescu gewinnt Präsidentschafts-Stichwahl in Rumänien (2009-12-09).pretty.json\n",
+ "59934 - Băsescu gewinnt Präsidentschafts-Stichwahl in Rumänien (2009-12-09)\n",
+ "Processing datasets/german-quotations/test/10437 - Chinesischer Astronaut soll 2007 Weltraumspaziergang machen (2005-08-12).pretty.json\n",
+ "10437 - Chinesischer Astronaut soll 2007 Weltraumspaziergang machen (2005-08-12)\n",
+ "Processing datasets/german-quotations/test/4030 - EU-Stabilitätspakt wird gelockert (2005-03-21).pretty.json\n",
+ "4030 - EU-Stabilitätspakt wird gelockert (2005-03-21)\n",
+ "Processing datasets/german-quotations/test/37231 - 13-Jährige fertigte Nacktbilder selbst an (2007-01-16).pretty.json\n",
+ "37231 - 13-Jährige fertigte Nacktbilder selbst an (2007-01-16)\n",
+ "Processing datasets/german-quotations/test/27778 - Ausnahmezustand in Osttimor erklärt – Lage beruhigt sich langsam (2006-05-31).pretty.json\n",
+ "27778 - Ausnahmezustand in Osttimor erklärt – Lage beruhigt sich langsam (2006-05-31)\n",
+ "Processing datasets/german-quotations/test/63081 - Fußball-WM: Deutschlands Flop gegen Serbien (2010-06-24).pretty.json\n",
+ "63081 - Fußball-WM: Deutschlands Flop gegen Serbien (2010-06-24)\n",
+ "Processing datasets/german-quotations/test/51722 - Elektroauto „Ze-0“: In China gebaut, in Europa verkauft (2008-07-16).pretty.json\n",
+ "51722 - Elektroauto „Ze-0“: In China gebaut, in Europa verkauft (2008-07-16)\n",
+ "Processing datasets/german-quotations/test/44763 - Dumawahl: Oppositionspartei darf nicht antreten (2007-10-11).pretty.json\n",
+ "44763 - Dumawahl: Oppositionspartei darf nicht antreten (2007-10-11)\n",
+ "Processing datasets/german-quotations/test/70474 - Lebensbedrohlich Verletzter nach Überschlag bei Kaiserslautern (2011-11-21).pretty.json\n",
+ "70474 - Lebensbedrohlich Verletzter nach Überschlag bei Kaiserslautern (2011-11-21)\n",
+ "Processing datasets/german-quotations/test/71869 - Mexiko City: Die letzten VW-Käfer nehmen ihren Abschied als Taxi (2012-03-03).pretty.json\n",
+ "71869 - Mexiko City: Die letzten VW-Käfer nehmen ihren Abschied als Taxi (2012-03-03)\n",
+ "Processing datasets/german-quotations/test/33318 - ISS-Expedition 13 und Raumflugteilnehmerin Anousheh Ansari in Kasachstan gelandet (2006-09-29).pretty.json\n",
+ "33318 - ISS-Expedition 13 und Raumflugteilnehmerin Anousheh Ansari in Kasachstan gelandet (2006-09-29)\n",
+ "Processing datasets/german-quotations/test/73472 - Japan: Arbeiter im Atomkraftwerk sollten Strahlenbelastung verschleiern (2012-07-21).pretty.json\n",
+ "73472 - Japan: Arbeiter im Atomkraftwerk sollten Strahlenbelastung verschleiern (2012-07-21)\n",
+ "Processing datasets/german-quotations/test/68080 - Syrien: Artilleriebeschuss der Stadt Homs (2011-05-11).pretty.json\n",
+ "68080 - Syrien: Artilleriebeschuss der Stadt Homs (2011-05-11)\n",
+ "Processing datasets/german-quotations/test/65540 - Abschlussbericht zum Flugzeugabsturz der Maschine des polnischen Präsidenten Kaczyński vorgelegt (2011-01-12).pretty.json\n",
+ "65540 - Abschlussbericht zum Flugzeugabsturz der Maschine des polnischen Präsidenten Kaczyński vorgelegt (2011-01-12)\n",
+ "Processing datasets/german-quotations/test/26502 - Thailand: Verfassungsgericht erklärt die Wahlen vom 2. April für nichtig (2006-05-08).pretty.json\n",
+ "26502 - Thailand: Verfassungsgericht erklärt die Wahlen vom 2. April für nichtig (2006-05-08)\n",
+ "Processing datasets/german-quotations/test/46376 - Monteur stürzt im Windrad ab (2007-12-23).pretty.json\n",
+ "46376 - Monteur stürzt im Windrad ab (2007-12-23)\n",
+ "Processing datasets/german-quotations/test/81036 - Fahrverbot für Dieselfahrzeuge wird in deutschen Städten diskutiert (2016-05-04).pretty.json\n",
+ "81036 - Fahrverbot für Dieselfahrzeuge wird in deutschen Städten diskutiert (2016-05-04)\n",
+ "Processing datasets/german-quotations/test/64221 - Stiftung Warentest schlägt Alarm: Schadstoffe im Kinderspielzeug (2010-10-22).pretty.json\n",
+ "64221 - Stiftung Warentest schlägt Alarm: Schadstoffe im Kinderspielzeug (2010-10-22)\n",
+ "Processing datasets/german-quotations/test/59848 - Israel kündigt 10 Monate Siedlungsstopp in der Westbank an (2009-11-27).pretty.json\n",
+ "59848 - Israel kündigt 10 Monate Siedlungsstopp in der Westbank an (2009-11-27)\n",
+ "Processing datasets/german-quotations/test/70345 - Nach Polizistenmord in Augsburg: 45 neue Hinweise nach ZDF-Sendung (2011-11-11).pretty.json\n",
+ "70345 - Nach Polizistenmord in Augsburg: 45 neue Hinweise nach ZDF-Sendung (2011-11-11)\n",
+ "Processing datasets/german-quotations/test/16260 - Til und Dana Schweiger: Alles aus (2005-11-22).pretty.json\n",
+ "16260 - Til und Dana Schweiger: Alles aus (2005-11-22)\n",
+ "Processing datasets/german-quotations/test/6745 - Satellit „Intelsat Americas 8“ von Seeplattform aus ins All gestartet (2005-06-23).pretty.json\n",
+ "6745 - Satellit „Intelsat Americas 8“ von Seeplattform aus ins All gestartet (2005-06-23)\n",
+ "Processing datasets/german-quotations/test/72779 - Blockupy Frankfurt: Friedliche Demonstrationen gegen Kapitalismus und Krisenpolitik (2012-05-21).pretty.json\n",
+ "72779 - Blockupy Frankfurt: Friedliche Demonstrationen gegen Kapitalismus und Krisenpolitik (2012-05-21)\n",
+ "Processing datasets/german-quotations/test/27945 - Universal-Film dreht Film über Hurrikan Katrina (2006-06-04).pretty.json\n",
+ "27945 - Universal-Film dreht Film über Hurrikan Katrina (2006-06-04)\n",
+ "Processing datasets/german-quotations/test/82818 - Google-freies Android soll bald verfügbar sein (2019-02-03).pretty.json\n",
+ "82818 - Google-freies Android soll bald verfügbar sein (2019-02-03)\n",
+ "Processing datasets/german-quotations/test/52445 - Baden-Württemberg: Umstrittenes Polizeigesetz wird in den Landtag eingebracht, neues Versammlungsrecht zur Anhörung freigegeben (2008-08-29).pretty.json\n",
+ "52445 - Baden-Württemberg: Umstrittenes Polizeigesetz wird in den Landtag eingebracht, neues Versammlungsrecht zur Anhörung freigegeben (2008-08-29)\n",
+ "Processing datasets/german-quotations/test/12984 - Jakob Maria Mierscheid: Diesmal versagte auch seine Wahlprognose (2005-09-27).pretty.json\n",
+ "12984 - Jakob Maria Mierscheid: Diesmal versagte auch seine Wahlprognose (2005-09-27)\n",
+ "Processing datasets/german-quotations/test/45193 - Umstrittene Spielregeln bei Fernsehsender 9Live (2007-11-04).pretty.json\n",
+ "45193 - Umstrittene Spielregeln bei Fernsehsender 9Live (2007-11-04)\n",
+ "Processing datasets/german-quotations/test/21026 - Kreis Euskirchen: Das Konjunkturbarometer steigt (2006-01-29).pretty.json\n",
+ "21026 - Kreis Euskirchen: Das Konjunkturbarometer steigt (2006-01-29)\n",
+ "Processing datasets/german-quotations/test/27195 - Max Raabe und sein Palast Orchester auf Tournee durch China (2006-05-21).pretty.json\n",
+ "27195 - Max Raabe und sein Palast Orchester auf Tournee durch China (2006-05-21)\n",
+ "Processing datasets/german-quotations/test/11733 - Pakistan und Israel verhandeln über die Aufnahme diplomatischer Beziehungen (2005-09-01).pretty.json\n",
+ "11733 - Pakistan und Israel verhandeln über die Aufnahme diplomatischer Beziehungen (2005-09-01)\n",
+ "Processing datasets/german-quotations/test/42342 - Eiszeitliche Wolfsart fraß Mammuts und Bisons (2007-06-22).pretty.json\n",
+ "42342 - Eiszeitliche Wolfsart fraß Mammuts und Bisons (2007-06-22)\n",
+ "Processing datasets/german-quotations/test/1326 - Umbauarbeiten am Erlweinspeicher bis Frühjahr 2006 (2004-12-07).pretty.json\n",
+ "1326 - Umbauarbeiten am Erlweinspeicher bis Frühjahr 2006 (2004-12-07)\n",
+ "Processing datasets/german-quotations/test/13474 - Wieder Terroranschlag in Thailands Südprovinzen (2005-10-06).pretty.json\n",
+ "13474 - Wieder Terroranschlag in Thailands Südprovinzen (2005-10-06)\n",
+ "Processing datasets/german-quotations/test/18703 - Kairo: Zehn sudanesische Flüchtlinge bei der Erstürmung ihres Lagers getötet (2005-12-30).pretty.json\n",
+ "18703 - Kairo: Zehn sudanesische Flüchtlinge bei der Erstürmung ihres Lagers getötet (2005-12-30)\n",
+ "Processing datasets/german-quotations/test/62091 - Deutscher Bundesverkehrsminister will vorläufig keine staatlichen Kaufhilfen für Elektroautos (2010-04-12).pretty.json\n",
+ "62091 - Deutscher Bundesverkehrsminister will vorläufig keine staatlichen Kaufhilfen für Elektroautos (2010-04-12)\n",
+ "Processing datasets/german-quotations/test/13406 - Mit dem Heißluftballon gegen Kinderarbeit (2005-10-04).pretty.json\n",
+ "13406 - Mit dem Heißluftballon gegen Kinderarbeit (2005-10-04)\n",
+ "Processing datasets/german-quotations/test/72379 - Deutschland: Salafisten wollen Gratis-Koran verteilen (2012-04-14).pretty.json\n",
+ "72379 - Deutschland: Salafisten wollen Gratis-Koran verteilen (2012-04-14)\n",
+ "Processing datasets/german-quotations/test/20914 - Auslosung der Ausscheidungsspiele der Europameisterschaft 2008 stattgefunden (2006-01-28).pretty.json\n",
+ "20914 - Auslosung der Ausscheidungsspiele der Europameisterschaft 2008 stattgefunden (2006-01-28)\n",
+ "Processing datasets/german-quotations/test/34097 - Beinahe Flugzeug-Zusammenstoß über Rheinland-Pfalz (2006-10-23).pretty.json\n",
+ "34097 - Beinahe Flugzeug-Zusammenstoß über Rheinland-Pfalz (2006-10-23)\n",
+ "Processing datasets/german-quotations/test/746 - SS-Lagerkommandant Schwammberger gestorben (2004-12-03).pretty.json\n",
+ "746 - SS-Lagerkommandant Schwammberger gestorben (2004-12-03)\n",
+ "Processing datasets/german-quotations/test/10546 - Deutsche Speerwerferinnen gewinnen in Helsinki Silber- und Bronzemedaille (2005-08-14).pretty.json\n",
+ "10546 - Deutsche Speerwerferinnen gewinnen in Helsinki Silber- und Bronzemedaille (2005-08-14)\n",
+ "Processing datasets/german-quotations/test/33349 - Campus Symposium 2006 (2006-10-03).pretty.json\n",
+ "33349 - Campus Symposium 2006 (2006-10-03)\n",
+ "Processing datasets/german-quotations/test/80411 - Brüssel: Drei Festnahmen bei Anti-Terror-Einsatz (2017-01-15).pretty.json\n",
+ "80411 - Brüssel: Drei Festnahmen bei Anti-Terror-Einsatz (2017-01-15)\n",
+ "Processing datasets/german-quotations/test/5080 - IIHF Eishockey WM in Wien und Innsbruck eröffnet (2005-05-01).pretty.json\n",
+ "5080 - IIHF Eishockey WM in Wien und Innsbruck eröffnet (2005-05-01)\n",
+ "Processing datasets/german-quotations/test/45080 - BGH kippt Haftbefehl gegen Andrej H. (2007-10-24).pretty.json\n",
+ "45080 - BGH kippt Haftbefehl gegen Andrej H. (2007-10-24)\n",
+ "Processing datasets/german-quotations/test/64021 - Myanmar: Aung San Suu Kyi wird bei den Nationalwahlen nicht abstimmen (2010-10-13).pretty.json\n",
+ "64021 - Myanmar: Aung San Suu Kyi wird bei den Nationalwahlen nicht abstimmen (2010-10-13)\n",
+ "Processing datasets/german-quotations/test/20690 - Notlandung einer Boeing 747 auf dem Lütticher Flughafen (2006-01-24).pretty.json\n",
+ "20690 - Notlandung einer Boeing 747 auf dem Lütticher Flughafen (2006-01-24)\n",
+ "Processing datasets/german-quotations/test/32884 - Gefahrgutunfall auf der A3 bei Limburg (2006-09-15).pretty.json\n",
+ "32884 - Gefahrgutunfall auf der A3 bei Limburg (2006-09-15)\n",
+ "Processing datasets/german-quotations/train/4174 - Extreme Infektionsgefahr in Krankenhäusern der „Dritten Welt“ (2005-03-25).pretty.json\n",
+ "4174 - Extreme Infektionsgefahr in Krankenhäusern der „Dritten Welt“ (2005-03-25)\n",
+ "Processing datasets/german-quotations/train/84297 - Indonesien: Boeing 737-500 vermutlich abgestürzt (2021-01-10).pretty.json\n",
+ "84297 - Indonesien: Boeing 737-500 vermutlich abgestürzt (2021-01-10)\n",
+ "Processing datasets/german-quotations/train/81009 - Wikipedia in der Türkei nach behördlicher Anordnung blockiert (2017-04-29).pretty.json\n",
+ "81009 - Wikipedia in der Türkei nach behördlicher Anordnung blockiert (2017-04-29)\n",
+ "Processing datasets/german-quotations/train/42267 - Umgestürzter Holz-Transporter blockiert Sauerlandlinie (2007-06-25).pretty.json\n",
+ "42267 - Umgestürzter Holz-Transporter blockiert Sauerlandlinie (2007-06-25)\n",
+ "Processing datasets/german-quotations/train/22065 - Oslo: Prozessbeginn um Raub der Munch-Gemälde (2006-02-14).pretty.json\n",
+ "22065 - Oslo: Prozessbeginn um Raub der Munch-Gemälde (2006-02-14)\n",
+ "Processing datasets/german-quotations/train/82396 - Busunfall im Colca-Tal: zwei deutsche Touristen ums Leben gekommen (2018-04-21).pretty.json\n",
+ "82396 - Busunfall im Colca-Tal: zwei deutsche Touristen ums Leben gekommen (2018-04-21)\n",
+ "Processing datasets/german-quotations/train/16935 - Teheran: Maschine war vor Absturz defekt (2005-12-07).pretty.json\n",
+ "16935 - Teheran: Maschine war vor Absturz defekt (2005-12-07)\n",
+ "Processing datasets/german-quotations/train/61683 - Indonesien: Meistgesuchter Terrorist Südostasiens anscheinend getötet (2010-03-10).pretty.json\n",
+ "61683 - Indonesien: Meistgesuchter Terrorist Südostasiens anscheinend getötet (2010-03-10)\n",
+ "Processing datasets/german-quotations/train/72501 - Frankreich: Wahllokale nach erster Runde der Präsidentenwahl geschlossen (2012-04-22).pretty.json\n",
+ "72501 - Frankreich: Wahllokale nach erster Runde der Präsidentenwahl geschlossen (2012-04-22)\n",
+ "Processing datasets/german-quotations/train/6103 - Brand im Wiener Prater (2005-06-11).pretty.json\n",
+ "6103 - Brand im Wiener Prater (2005-06-11)\n",
+ "Processing datasets/german-quotations/train/45882 - Aufwind am deutschen Arbeitsmarkt hält an – Arbeitslosenquote auf niedrigstem Stand seit 1993 (2007-11-29).pretty.json\n",
+ "45882 - Aufwind am deutschen Arbeitsmarkt hält an – Arbeitslosenquote auf niedrigstem Stand seit 1993 (2007-11-29)\n",
+ "Processing datasets/german-quotations/train/18625 - Bundespräsident Köhler sieht „wachsende Kluft zwischen Arm und Reich“ (2005-12-29).pretty.json\n",
+ "18625 - Bundespräsident Köhler sieht „wachsende Kluft zwischen Arm und Reich“ (2005-12-29)\n",
+ "Processing datasets/german-quotations/train/33184 - NASA-Chef Michael Griffin besucht China (2006-09-25).pretty.json\n",
+ "33184 - NASA-Chef Michael Griffin besucht China (2006-09-25)\n",
+ "Processing datasets/german-quotations/train/37935 - Historischer Bauernhof brennt bis auf die Grundmauern ab (2007-02-07).pretty.json\n",
+ "37935 - Historischer Bauernhof brennt bis auf die Grundmauern ab (2007-02-07)\n",
+ "Processing datasets/german-quotations/train/55776 - Die größte Riesenschlange aller Zeiten war 13 Meter lang (2009-02-05).pretty.json\n",
+ "55776 - Die größte Riesenschlange aller Zeiten war 13 Meter lang (2009-02-05)\n",
+ "Processing datasets/german-quotations/train/22886 - Schwere Ausschreitungen in der Republik Irland (2006-02-27).pretty.json\n",
+ "22886 - Schwere Ausschreitungen in der Republik Irland (2006-02-27)\n",
+ "Processing datasets/german-quotations/train/64651 - Verhandlungen zu EU-Haushalt vorerst gescheitert (2010-11-16).pretty.json\n",
+ "64651 - Verhandlungen zu EU-Haushalt vorerst gescheitert (2010-11-16)\n",
+ "Processing datasets/german-quotations/train/50033 - Italienische Polizei führte Schlag gegen die ’Ndrangheta (2008-05-09).pretty.json\n",
+ "50033 - Italienische Polizei führte Schlag gegen die ’Ndrangheta (2008-05-09)\n",
+ "Processing datasets/german-quotations/train/77549 - Gewalt auf den Straßen von Hongkong (2014-10-14).pretty.json\n",
+ "77549 - Gewalt auf den Straßen von Hongkong (2014-10-14)\n",
+ "Processing datasets/german-quotations/train/69231 - Terroranschläge in Norwegen: Polizei korrigiert Opferzahl auf 76 (2011-07-25).pretty.json\n",
+ "69231 - Terroranschläge in Norwegen: Polizei korrigiert Opferzahl auf 76 (2011-07-25)\n",
+ "Processing datasets/german-quotations/train/22943 - BND-Affäre: Am Montag tagt das parlamentarische Kontrollgremium (2006-03-01).pretty.json\n",
+ "22943 - BND-Affäre: Am Montag tagt das parlamentarische Kontrollgremium (2006-03-01)\n",
+ "Processing datasets/german-quotations/train/52153 - Prominente demonstrieren in Hamburg gegen das Tragen von Pelzen (2008-08-16).pretty.json\n",
+ "52153 - Prominente demonstrieren in Hamburg gegen das Tragen von Pelzen (2008-08-16)\n",
+ "Processing datasets/german-quotations/train/67437 - Plagiatsfall Guttenberg: Universität Bayreuth unterstellt „absichtliche Täuschung“ (2011-04-08).pretty.json\n",
+ "67437 - Plagiatsfall Guttenberg: Universität Bayreuth unterstellt „absichtliche Täuschung“ (2011-04-08)\n",
+ "Processing datasets/german-quotations/train/40973 - Debatte um Ex-RAF-Terroristin Susanne Albrecht (2007-05-07).pretty.json\n",
+ "40973 - Debatte um Ex-RAF-Terroristin Susanne Albrecht (2007-05-07)\n",
+ "Processing datasets/german-quotations/train/19569 - Erdbeben erschütterte Griechenland (2006-01-08).pretty.json\n",
+ "19569 - Erdbeben erschütterte Griechenland (2006-01-08)\n",
+ "Processing datasets/german-quotations/train/36491 - Fahren ohne Führerschein kann tödlich sein (2006-12-24).pretty.json\n",
+ "36491 - Fahren ohne Führerschein kann tödlich sein (2006-12-24)\n",
+ "Processing datasets/german-quotations/train/34728 - UNICEF stellte Studie vor: Gewalt bestimmt den Alltag vieler Kinder (2006-11-03).pretty.json\n",
+ "34728 - UNICEF stellte Studie vor: Gewalt bestimmt den Alltag vieler Kinder (2006-11-03)\n",
+ "Processing datasets/german-quotations/train/50935 - Brandenburgs Wirtschaftsminister Ulrich Junghanns bei Tesla Motors (2008-06-14).pretty.json\n",
+ "50935 - Brandenburgs Wirtschaftsminister Ulrich Junghanns bei Tesla Motors (2008-06-14)\n",
+ "Processing datasets/german-quotations/train/45420 - Neues Blu-ray-Disc-Profil 1.1 in Kraft getreten (2007-11-09).pretty.json\n",
+ "45420 - Neues Blu-ray-Disc-Profil 1.1 in Kraft getreten (2007-11-09)\n",
+ "Processing datasets/german-quotations/train/75701 - Ingolstadt: Ein Toter nach Busunglück auf der Autobahn 9 (2013-06-08).pretty.json\n",
+ "75701 - Ingolstadt: Ein Toter nach Busunglück auf der Autobahn 9 (2013-06-08)\n",
+ "Processing datasets/german-quotations/train/20929 - Spanisches Jagdflugzeug bei Übungsflug abgestürzt (2006-01-29).pretty.json\n",
+ "20929 - Spanisches Jagdflugzeug bei Übungsflug abgestürzt (2006-01-29)\n",
+ "Processing datasets/german-quotations/train/6196 - Michael Jackson „nicht schuldig“ gesprochen (2005-06-13).pretty.json\n",
+ "6196 - Michael Jackson „nicht schuldig“ gesprochen (2005-06-13)\n",
+ "Processing datasets/german-quotations/train/40269 - Vor 25 Jahren: Erstes deutsches Retortenbaby erblickt das Licht der Welt (2007-04-11).pretty.json\n",
+ "40269 - Vor 25 Jahren: Erstes deutsches Retortenbaby erblickt das Licht der Welt (2007-04-11)\n",
+ "Processing datasets/german-quotations/train/79859 - SPD-Bundestagsabgeordnete fälschte ihren Lebenslauf (2016-07-26).pretty.json\n",
+ "79859 - SPD-Bundestagsabgeordnete fälschte ihren Lebenslauf (2016-07-26)\n",
+ "Processing datasets/german-quotations/train/31906 - Flugzeug der Alaska Airlines nach Landung evakuiert (2006-08-20).pretty.json\n",
+ "31906 - Flugzeug der Alaska Airlines nach Landung evakuiert (2006-08-20)\n",
+ "Processing datasets/german-quotations/train/64070 - Hannelore Kraft neue Bundesratspräsidentin (2010-10-16).pretty.json\n",
+ "64070 - Hannelore Kraft neue Bundesratspräsidentin (2010-10-16)\n",
+ "Processing datasets/german-quotations/train/33668 - Der US-Amerikaner Edmund S. Phelps erhält den Nobelpreis für Wirtschaftswissenschaften (2006-10-11).pretty.json\n",
+ "33668 - Der US-Amerikaner Edmund S. Phelps erhält den Nobelpreis für Wirtschaftswissenschaften (2006-10-11)\n",
+ "Processing datasets/german-quotations/train/27811 - Wende der US-Diplomatie: USA zu direkten Gesprächen mit dem Iran bereit (2006-05-31).pretty.json\n",
+ "27811 - Wende der US-Diplomatie: USA zu direkten Gesprächen mit dem Iran bereit (2006-05-31)\n",
+ "Processing datasets/german-quotations/train/67143 - Tötungsdelikt in Krailling: Zwei Mädchen im Alter von acht und elf Jahren tot aufgefunden (2011-03-24).pretty.json\n",
+ "67143 - Tötungsdelikt in Krailling: Zwei Mädchen im Alter von acht und elf Jahren tot aufgefunden (2011-03-24)\n",
+ "Processing datasets/german-quotations/train/83753 - Handball-EM: Deutschland gewinnt Auftaktspiel gegen Neuling Niederlande (2020-01-11).pretty.json\n",
+ "83753 - Handball-EM: Deutschland gewinnt Auftaktspiel gegen Neuling Niederlande (2020-01-11)\n",
+ "Processing datasets/german-quotations/train/76792 - 10. Markt für Dresdner Geschichte und Geschichten: Der Verkehrsknoten Dresden und seine Geschichte (2014-03-23).pretty.json\n",
+ "76792 - 10. Markt für Dresdner Geschichte und Geschichten: Der Verkehrsknoten Dresden und seine Geschichte (2014-03-23)\n",
+ "Processing datasets/german-quotations/train/18551 - Grünen-Politiker wird neuer UN-Sondergesandter für Afghanistan (2005-12-29).pretty.json\n",
+ "18551 - Grünen-Politiker wird neuer UN-Sondergesandter für Afghanistan (2005-12-29)\n",
+ "Processing datasets/german-quotations/train/39074 - Wittlich: Rollerfahrer verunglückt (2007-03-16).pretty.json\n",
+ "39074 - Wittlich: Rollerfahrer verunglückt (2007-03-16)\n",
+ "Processing datasets/german-quotations/train/84585 - Gleichgeschlechtliche Ehe: Jetzt auch in Chile (2021-12-08).pretty.json\n",
+ "84585 - Gleichgeschlechtliche Ehe: Jetzt auch in Chile (2021-12-08)\n",
+ "Processing datasets/german-quotations/train/58874 - Schwulen-Demonstration in Belgrad aus Sicherheitsgründen abgesagt (2009-09-19).pretty.json\n",
+ "58874 - Schwulen-Demonstration in Belgrad aus Sicherheitsgründen abgesagt (2009-09-19)\n",
+ "Processing datasets/german-quotations/train/2668 - Bundespräsident Köhler warnt vor pauschaler Verurteilung deutscher Politiker (2005-01-10).pretty.json\n",
+ "2668 - Bundespräsident Köhler warnt vor pauschaler Verurteilung deutscher Politiker (2005-01-10)\n",
+ "Processing datasets/german-quotations/train/8659 - Irak: Zivilbevölkerung trägt Hauptlast des Terrors (2005-07-15).pretty.json\n",
+ "8659 - Irak: Zivilbevölkerung trägt Hauptlast des Terrors (2005-07-15)\n",
+ "Processing datasets/german-quotations/train/31283 - Britische Moslems warnen Premierminister Tony Blair wegen der Außenpolitik (2006-08-13).pretty.json\n",
+ "31283 - Britische Moslems warnen Premierminister Tony Blair wegen der Außenpolitik (2006-08-13)\n",
+ "Processing datasets/german-quotations/train/22629 - Cannabis: Expertentreffen in Bielefeld (2006-02-23).pretty.json\n",
+ "22629 - Cannabis: Expertentreffen in Bielefeld (2006-02-23)\n",
+ "Processing datasets/german-quotations/train/71677 - Bulgarien: Gesetz zur Konfiszierung von Mafiaeigentum verabschiedet (2012-02-17).pretty.json\n",
+ "71677 - Bulgarien: Gesetz zur Konfiszierung von Mafiaeigentum verabschiedet (2012-02-17)\n",
+ "Processing datasets/german-quotations/train/13194 - Vor dem Verfassungsreferendum im Irak – neue Welle von Anschlägen (2005-09-30).pretty.json\n",
+ "13194 - Vor dem Verfassungsreferendum im Irak – neue Welle von Anschlägen (2005-09-30)\n",
+ "Processing datasets/german-quotations/train/10535 - Neuer Weltrekord im Speerwerfen (2005-08-14).pretty.json\n",
+ "10535 - Neuer Weltrekord im Speerwerfen (2005-08-14)\n",
+ "Processing datasets/german-quotations/train/11775 - Bundesverwaltungsgericht kritisiert deutsche Unterstützung während des Irak-Krieges (2005-09-02).pretty.json\n",
+ "11775 - Bundesverwaltungsgericht kritisiert deutsche Unterstützung während des Irak-Krieges (2005-09-02)\n",
+ "Processing datasets/german-quotations/train/19094 - Cessna in indonesischer Provinz Papua abgestürzt (2006-01-05).pretty.json\n",
+ "19094 - Cessna in indonesischer Provinz Papua abgestürzt (2006-01-05)\n",
+ "Processing datasets/german-quotations/train/37082 - Panne bei Amazon.de (2007-01-12).pretty.json\n",
+ "37082 - Panne bei Amazon.de (2007-01-12)\n",
+ "Processing datasets/german-quotations/train/68437 - Motocross in Freising: ADAC MX Masters (2011-05-30).pretty.json\n",
+ "68437 - Motocross in Freising: ADAC MX Masters (2011-05-30)\n",
+ "Processing datasets/german-quotations/train/79030 - Fotostrecke: So bereitete sich Österreich auf den Eurovision Song Contest vor (2015-05-24).pretty.json\n",
+ "79030 - Fotostrecke: So bereitete sich Österreich auf den Eurovision Song Contest vor (2015-05-24)\n",
+ "Processing datasets/german-quotations/train/82126 - Saudi-Arabien führt Mehrwertsteuer ein (2018-01-06).pretty.json\n",
+ "82126 - Saudi-Arabien führt Mehrwertsteuer ein (2018-01-06)\n",
+ "Processing datasets/german-quotations/train/37353 - Kuipergürtel-Objekt soll Komet werden (2007-01-21).pretty.json\n",
+ "37353 - Kuipergürtel-Objekt soll Komet werden (2007-01-21)\n",
+ "Processing datasets/german-quotations/train/83739 - Al-Kuds-Führer Soleimani von US-Militär getötet (2020-01-05).pretty.json\n",
+ "83739 - Al-Kuds-Führer Soleimani von US-Militär getötet (2020-01-05)\n",
+ "Processing datasets/german-quotations/train/5203 - Uni-Rektorat-Besetzung in Freiburg dauert nun seit Montag an (2005-05-06).pretty.json\n",
+ "5203 - Uni-Rektorat-Besetzung in Freiburg dauert nun seit Montag an (2005-05-06)\n",
+ "Processing datasets/german-quotations/train/67057 - Radioaktives Jod im Trinkwasser der japanischen Hauptstadt (2011-03-19).pretty.json\n",
+ "67057 - Radioaktives Jod im Trinkwasser der japanischen Hauptstadt (2011-03-19)\n",
+ "Processing datasets/german-quotations/train/79793 - Glock gegen Werberat (2016-06-24).pretty.json\n",
+ "79793 - Glock gegen Werberat (2016-06-24)\n",
+ "Processing datasets/german-quotations/train/12814 - FDP-interner Machtkampf entschieden: Gerhardt weicht Westerwelle (2005-09-22).pretty.json\n",
+ "12814 - FDP-interner Machtkampf entschieden: Gerhardt weicht Westerwelle (2005-09-22)\n",
+ "Processing datasets/german-quotations/train/63989 - Gesine Lötzsch distanziert sich von Gregor Gysi (2010-10-14).pretty.json\n",
+ "63989 - Gesine Lötzsch distanziert sich von Gregor Gysi (2010-10-14)\n",
+ "Processing datasets/german-quotations/train/63418 - Unterstützung für “Die kubanischen Fünf“ (2010-08-19).pretty.json\n",
+ "63418 - Unterstützung für “Die kubanischen Fünf“ (2010-08-19)\n",
+ "Processing datasets/german-quotations/train/15420 - Gersfeld: Motorradfahrer tödlich verunglückt (2005-11-02).pretty.json\n",
+ "15420 - Gersfeld: Motorradfahrer tödlich verunglückt (2005-11-02)\n",
+ "Processing datasets/german-quotations/train/82511 - 105. Tour de France hat begonnen (2018-07-07).pretty.json\n",
+ "82511 - 105. Tour de France hat begonnen (2018-07-07)\n",
+ "Processing datasets/german-quotations/train/14742 - Aufsichtsrat der Bundesagentur für Arbeit fordert Lockerung des Datenschutzes (2005-10-25).pretty.json\n",
+ "14742 - Aufsichtsrat der Bundesagentur für Arbeit fordert Lockerung des Datenschutzes (2005-10-25)\n",
+ "Processing datasets/german-quotations/train/5419 - Deutsche Astronomen entdeckten Riesenplaneten (2005-05-18).pretty.json\n",
+ "5419 - Deutsche Astronomen entdeckten Riesenplaneten (2005-05-18)\n",
+ "Processing datasets/german-quotations/train/82520 - Dutzende Tote durch Unwetter in Japan (2018-07-09).pretty.json\n",
+ "82520 - Dutzende Tote durch Unwetter in Japan (2018-07-09)\n",
+ "Processing datasets/german-quotations/train/60304 - Airbus: Aus für A400M? (2010-01-05).pretty.json\n",
+ "60304 - Airbus: Aus für A400M? (2010-01-05)\n",
+ "Processing datasets/german-quotations/train/73273 - Justizopfer Horst Arnold ist tot (2012-07-05).pretty.json\n",
+ "73273 - Justizopfer Horst Arnold ist tot (2012-07-05)\n",
+ "Processing datasets/german-quotations/train/47908 - Berlin hat Klagefrist verschlafen – Reichsvermögen bleibt beim Bund (2008-02-09).pretty.json\n",
+ "47908 - Berlin hat Klagefrist verschlafen – Reichsvermögen bleibt beim Bund (2008-02-09)\n",
+ "Processing datasets/german-quotations/train/82138 - Diskussion um die Ausbeutung von Click- und Crowdworkern (2018-01-04).pretty.json\n",
+ "82138 - Diskussion um die Ausbeutung von Click- und Crowdworkern (2018-01-04)\n",
+ "Processing datasets/german-quotations/train/8183 - Brand im Londoner Hard Rock Café (2005-07-10).pretty.json\n",
+ "8183 - Brand im Londoner Hard Rock Café (2005-07-10)\n",
+ "Processing datasets/german-quotations/train/50736 - Spekulationen über Geheimtreffen zwischen Barack Obama und Hillary Clinton (2008-06-06).pretty.json\n",
+ "50736 - Spekulationen über Geheimtreffen zwischen Barack Obama und Hillary Clinton (2008-06-06)\n",
+ "Processing datasets/german-quotations/train/21016 - Roger Federer gewinnt die Australian Open (2006-01-29).pretty.json\n",
+ "21016 - Roger Federer gewinnt die Australian Open (2006-01-29)\n",
+ "Processing datasets/german-quotations/train/81851 - Ubuntu 17.10 „Artful Aardvark“ veröffentlicht (2017-11-05).pretty.json\n",
+ "81851 - Ubuntu 17.10 „Artful Aardvark“ veröffentlicht (2017-11-05)\n",
+ "Processing datasets/german-quotations/train/57933 - Massendemonstrationen gegen Wahlbetrug im Iran (2009-06-16).pretty.json\n",
+ "57933 - Massendemonstrationen gegen Wahlbetrug im Iran (2009-06-16)\n",
+ "Processing datasets/german-quotations/train/32117 - 2. Bundesliga: FC Carl Zeiss Jena schlägt 1. FC Köln mit 3:2 (2006-08-26).pretty.json\n",
+ "32117 - 2. Bundesliga: FC Carl Zeiss Jena schlägt 1. FC Köln mit 3:2 (2006-08-26)\n",
+ "Processing datasets/german-quotations/train/38073 - Koblenz: Ein Toter und sieben Schwerverletzte bei Wohnungsbrand (2007-02-11).pretty.json\n",
+ "38073 - Koblenz: Ein Toter und sieben Schwerverletzte bei Wohnungsbrand (2007-02-11)\n",
+ "Processing datasets/german-quotations/train/9093 - 61. Jahrestag des Hitler-Attentats (2005-07-22).pretty.json\n",
+ "9093 - 61. Jahrestag des Hitler-Attentats (2005-07-22)\n",
+ "Processing datasets/german-quotations/train/82125 - Betrunkener Autofahrer stößt Fußgängerin von Brücke (2018-01-02).pretty.json\n",
+ "82125 - Betrunkener Autofahrer stößt Fußgängerin von Brücke (2018-01-02)\n",
+ "Processing datasets/german-quotations/train/82556 - Großeinsatz für die Kaiserslauterer Feuerwehr bei sengender Hitze (2018-08-08).pretty.json\n",
+ "82556 - Großeinsatz für die Kaiserslauterer Feuerwehr bei sengender Hitze (2018-08-08)\n",
+ "Processing datasets/german-quotations/train/35750 - Verkehrsunfall in Kaiserslautern: Glück im Unglück (2006-12-02).pretty.json\n",
+ "35750 - Verkehrsunfall in Kaiserslautern: Glück im Unglück (2006-12-02)\n",
+ "Processing datasets/german-quotations/train/13440 - Union erneut im Streit um Gesundheitspolitik (2005-10-06).pretty.json\n",
+ "13440 - Union erneut im Streit um Gesundheitspolitik (2005-10-06)\n",
+ "Processing datasets/german-quotations/train/68713 - Generalstreik in Griechenland gegen Sparpaket (2011-06-16).pretty.json\n",
+ "68713 - Generalstreik in Griechenland gegen Sparpaket (2011-06-16)\n",
+ "Processing datasets/german-quotations/train/58800 - Windows 7 kommt am 22. Oktober in den Handel (2009-09-17).pretty.json\n",
+ "58800 - Windows 7 kommt am 22. Oktober in den Handel (2009-09-17)\n",
+ "Processing datasets/german-quotations/train/57026 - Bremen: Drei 18-Jährige von zwei Männern überfallen (2009-04-09).pretty.json\n",
+ "57026 - Bremen: Drei 18-Jährige von zwei Männern überfallen (2009-04-09)\n",
+ "Processing datasets/german-quotations/train/27869 - Toulouse: Explosion im Airbus-Werk (2006-06-02).pretty.json\n",
+ "27869 - Toulouse: Explosion im Airbus-Werk (2006-06-02)\n",
+ "Processing datasets/german-quotations/train/12120 - Apple bringt „iPod nano“ auf den Markt (2005-09-11).pretty.json\n",
+ "12120 - Apple bringt „iPod nano“ auf den Markt (2005-09-11)\n",
+ "Processing datasets/german-quotations/train/23333 - Verteidigungsminister der EU noch uneinig über eine Kongomission (2006-03-07).pretty.json\n",
+ "23333 - Verteidigungsminister der EU noch uneinig über eine Kongomission (2006-03-07)\n",
+ "Processing datasets/german-quotations/train/25575 - Rauchen auf dem Flughafen Brüssel seit Karsamstag verboten (2006-04-19).pretty.json\n",
+ "25575 - Rauchen auf dem Flughafen Brüssel seit Karsamstag verboten (2006-04-19)\n",
+ "Processing datasets/german-quotations/train/45244 - Togliatti (Russland): Bombenanschlag auf Bus (2007-10-31).pretty.json\n",
+ "45244 - Togliatti (Russland): Bombenanschlag auf Bus (2007-10-31)\n",
+ "Processing datasets/german-quotations/train/7546 - Heikle Situation vor der Vertrauensfrage des Kanzlers (2005-06-30).pretty.json\n",
+ "7546 - Heikle Situation vor der Vertrauensfrage des Kanzlers (2005-06-30)\n",
+ "Processing datasets/german-quotations/train/23714 - Nächste Spaceshuttle-Mission STS-121 erneut verschoben (2006-03-15).pretty.json\n",
+ "23714 - Nächste Spaceshuttle-Mission STS-121 erneut verschoben (2006-03-15)\n",
+ "Processing datasets/german-quotations/train/80391 - Irans ehemaliger Präsident Rafsandschani ist tot (2017-01-08).pretty.json\n",
+ "80391 - Irans ehemaliger Präsident Rafsandschani ist tot (2017-01-08)\n",
+ "Processing datasets/german-quotations/train/55265 - Batteriehersteller gibt Finanzspritze für Elektroautobauer Think Global (2009-01-16).pretty.json\n",
+ "55265 - Batteriehersteller gibt Finanzspritze für Elektroautobauer Think Global (2009-01-16)\n",
+ "Processing datasets/german-quotations/train/73475 - EU zahlt trotz Krise weiter Subventionen an Griechenland (2012-07-24).pretty.json\n",
+ "73475 - EU zahlt trotz Krise weiter Subventionen an Griechenland (2012-07-24)\n",
+ "Processing datasets/german-quotations/train/71365 - Unterfranken: Rotorblatt eines 80 Meter hohen Windkraftrades abgebrochen (2012-01-24).pretty.json\n",
+ "71365 - Unterfranken: Rotorblatt eines 80 Meter hohen Windkraftrades abgebrochen (2012-01-24)\n",
+ "Processing datasets/german-quotations/train/14955 - Vogelgrippe: Entwarnung bei Chinesin und Franzosen (2005-10-27).pretty.json\n",
+ "14955 - Vogelgrippe: Entwarnung bei Chinesin und Franzosen (2005-10-27)\n",
+ "Processing datasets/german-quotations/train/81501 - Der Absatz von Borgward brach im Juli ein (2017-08-19).pretty.json\n",
+ "81501 - Der Absatz von Borgward brach im Juli ein (2017-08-19)\n",
+ "Processing datasets/german-quotations/train/15980 - Erneutes Erdbeben in der Rheinebene (2005-11-12).pretty.json\n",
+ "15980 - Erneutes Erdbeben in der Rheinebene (2005-11-12)\n",
+ "Processing datasets/german-quotations/train/5583 - Indianer haben wenige Urahnen (2005-05-25).pretty.json\n",
+ "5583 - Indianer haben wenige Urahnen (2005-05-25)\n",
+ "Processing datasets/german-quotations/train/50226 - Weiterhin katastrophale Lage in Myanmar nach dem Zyklon „Nargis“ (2008-05-16).pretty.json\n",
+ "50226 - Weiterhin katastrophale Lage in Myanmar nach dem Zyklon „Nargis“ (2008-05-16)\n",
+ "Processing datasets/german-quotations/train/79990 - Wackelt der Stuhl von Justizminister Heiko Maas? (2016-09-08).pretty.json\n",
+ "79990 - Wackelt der Stuhl von Justizminister Heiko Maas? (2016-09-08)\n",
+ "Processing datasets/german-quotations/train/12554 - Flugverbot für Cameroon Airlines in Frankreich (2005-09-17).pretty.json\n",
+ "12554 - Flugverbot für Cameroon Airlines in Frankreich (2005-09-17)\n",
+ "Processing datasets/german-quotations/train/5049 - FC Bayern München vorzeitig deutscher Fußball-Meister (2005-05-01).pretty.json\n",
+ "5049 - FC Bayern München vorzeitig deutscher Fußball-Meister (2005-05-01)\n",
+ "Processing datasets/german-quotations/train/13682 - Serieneinbrüche im Raum Knittelfeld (2005-10-10).pretty.json\n",
+ "13682 - Serieneinbrüche im Raum Knittelfeld (2005-10-10)\n",
+ "Processing datasets/german-quotations/train/32592 - Haushaltsdebatte 2007: „Ja, es gibt Zumutungen“ (2006-09-05).pretty.json\n",
+ "32592 - Haushaltsdebatte 2007: „Ja, es gibt Zumutungen“ (2006-09-05)\n",
+ "Processing datasets/german-quotations/train/75225 - Das Weltsozialforum in Tunesien will den Arabischen Frühling neu beleben (2013-03-27).pretty.json\n",
+ "75225 - Das Weltsozialforum in Tunesien will den Arabischen Frühling neu beleben (2013-03-27)\n",
+ "Processing datasets/german-quotations/train/68040 - Hohe Waldbrandgefahr in weiten Teilen Deutschlands (2011-05-09).pretty.json\n",
+ "68040 - Hohe Waldbrandgefahr in weiten Teilen Deutschlands (2011-05-09)\n",
+ "Processing datasets/german-quotations/train/28736 - Europäisch-afrikanische Migrationskonferenz beginnt im Juli (2006-06-21).pretty.json\n",
+ "28736 - Europäisch-afrikanische Migrationskonferenz beginnt im Juli (2006-06-21)\n",
+ "Processing datasets/german-quotations/train/67724 - Ungarn: Rechtsextreme Gruppe errichtet Trainingscamp (2011-04-23).pretty.json\n",
+ "67724 - Ungarn: Rechtsextreme Gruppe errichtet Trainingscamp (2011-04-23)\n",
+ "Processing datasets/german-quotations/train/41694 - Demonstration gegen das ASEM-Treffen in Hamburg (2007-05-28).pretty.json\n",
+ "41694 - Demonstration gegen das ASEM-Treffen in Hamburg (2007-05-28)\n",
+ "Processing datasets/german-quotations/train/6439 - EU-Gipfel scheitert an fehlender Kompromissbereitschaft (2005-06-18).pretty.json\n",
+ "6439 - EU-Gipfel scheitert an fehlender Kompromissbereitschaft (2005-06-18)\n",
+ "Processing datasets/german-quotations/train/25118 - Zehn Soldaten bei Hubschrauberabsturz in Nepal getötet (2006-04-08).pretty.json\n",
+ "25118 - Zehn Soldaten bei Hubschrauberabsturz in Nepal getötet (2006-04-08)\n",
+ "Processing datasets/german-quotations/train/21224 - Experte: Falscher Leim ist für den Einsturz der Eissporthalle verantwortlich (2006-02-01).pretty.json\n",
+ "21224 - Experte: Falscher Leim ist für den Einsturz der Eissporthalle verantwortlich (2006-02-01)\n",
+ "Processing datasets/german-quotations/train/50049 - Kaiserslautern: Benzin als Grillanzünder führt zu erheblichem Brandschaden (2008-05-11).pretty.json\n",
+ "50049 - Kaiserslautern: Benzin als Grillanzünder führt zu erheblichem Brandschaden (2008-05-11)\n",
+ "Processing datasets/german-quotations/train/35901 - In Deutschland sind 13 Prozent der Bevölkerung armutsgefährdet (2006-12-05).pretty.json\n",
+ "35901 - In Deutschland sind 13 Prozent der Bevölkerung armutsgefährdet (2006-12-05)\n",
+ "Processing datasets/german-quotations/train/33980 - Singapur in Rauchschwaden eingehüllt (2006-10-17).pretty.json\n",
+ "33980 - Singapur in Rauchschwaden eingehüllt (2006-10-17)\n",
+ "Processing datasets/german-quotations/train/48348 - Spanische Parlamentswahlen rücken näher (2008-02-27).pretty.json\n",
+ "48348 - Spanische Parlamentswahlen rücken näher (2008-02-27)\n",
+ "Processing datasets/german-quotations/train/35566 - S-Bahn-Gleisbauarbeiten in Bad Homburg abgeschlossen (2006-11-29).pretty.json\n",
+ "35566 - S-Bahn-Gleisbauarbeiten in Bad Homburg abgeschlossen (2006-11-29)\n",
+ "Processing datasets/german-quotations/train/61889 - US-Polizei verhaftet Mitglieder einer christlichen paramilitärischen Gruppe (2010-03-30).pretty.json\n",
+ "61889 - US-Polizei verhaftet Mitglieder einer christlichen paramilitärischen Gruppe (2010-03-30)\n",
+ "Processing datasets/german-quotations/train/44338 - Blauzungenkrankheit jetzt auch in Baden-Württemberg nachgewiesen (2007-09-19).pretty.json\n",
+ "44338 - Blauzungenkrankheit jetzt auch in Baden-Württemberg nachgewiesen (2007-09-19)\n",
+ "Processing datasets/german-quotations/train/12291 - Grüne wollen Tankstellen zu Biodiesel-Verkauf zwingen (2005-09-10).pretty.json\n",
+ "12291 - Grüne wollen Tankstellen zu Biodiesel-Verkauf zwingen (2005-09-10)\n",
+ "Processing datasets/german-quotations/train/26226 - Schweizer Politiker Joseph Deiss kündigte Rücktritt an (2006-05-04).pretty.json\n",
+ "26226 - Schweizer Politiker Joseph Deiss kündigte Rücktritt an (2006-05-04)\n",
+ "Processing datasets/german-quotations/train/59410 - Swantje Hartmann vom Vorstand der niedersächsischen SPD-Landtagsfraktion zurückgetreten (2008-07-08).pretty.json\n",
+ "59410 - Swantje Hartmann vom Vorstand der niedersächsischen SPD-Landtagsfraktion zurückgetreten (2008-07-08)\n",
+ "Processing datasets/german-quotations/train/14127 - Ferrari-Teamchef stellt sich vor Michael Schumacher (2005-10-18).pretty.json\n",
+ "14127 - Ferrari-Teamchef stellt sich vor Michael Schumacher (2005-10-18)\n",
+ "Processing datasets/german-quotations/train/19599 - US-Hubschrauber mit zwölf Menschen an Bord im Irak abgestürzt (2006-01-09).pretty.json\n",
+ "19599 - US-Hubschrauber mit zwölf Menschen an Bord im Irak abgestürzt (2006-01-09)\n",
+ "Processing datasets/german-quotations/train/55730 - Kenia: Über hundert Menschen sterben nach Tankwagenunglück (2009-02-01).pretty.json\n",
+ "55730 - Kenia: Über hundert Menschen sterben nach Tankwagenunglück (2009-02-01)\n",
+ "Processing datasets/german-quotations/train/81706 - Immer mehr Stars lassen sich Tätowieren – Schmuck, Modeerscheinung oder Tieferer Sinn? (2017-10-12).pretty.json\n",
+ "81706 - Immer mehr Stars lassen sich Tätowieren – Schmuck, Modeerscheinung oder Tieferer Sinn? (2017-10-12)\n",
+ "Processing datasets/german-quotations/train/64137 - Studie: Steinzeitmenschen aßen nicht nur Fleisch (2010-10-19).pretty.json\n",
+ "64137 - Studie: Steinzeitmenschen aßen nicht nur Fleisch (2010-10-19)\n",
+ "Processing datasets/german-quotations/train/5114 - Papst-Golf bei eBay auf 60.000 Euro gestiegen (2005-05-02).pretty.json\n",
+ "5114 - Papst-Golf bei eBay auf 60.000 Euro gestiegen (2005-05-02)\n",
+ "Processing datasets/german-quotations/train/34828 - Fresenius AG plant Umwandlung der Rechtsform und Neuordnung des Stammkapitals (2006-11-10).pretty.json\n",
+ "34828 - Fresenius AG plant Umwandlung der Rechtsform und Neuordnung des Stammkapitals (2006-11-10)\n",
+ "Processing datasets/german-quotations/train/49378 - Nach Milliardenverlusten bei der Schweizer Bank UBS: Bankchef Marcel Ospel zurückgetreten (2008-04-01).pretty.json\n",
+ "49378 - Nach Milliardenverlusten bei der Schweizer Bank UBS: Bankchef Marcel Ospel zurückgetreten (2008-04-01)\n",
+ "Processing datasets/german-quotations/train/54204 - Schwerer Verkehrsunfall auf der L 502 in Kaiserslautern (2008-11-23).pretty.json\n",
+ "54204 - Schwerer Verkehrsunfall auf der L 502 in Kaiserslautern (2008-11-23)\n",
+ "Processing datasets/german-quotations/train/43411 - 75 Prozent der Abgeordneten für Offenlegung ihrer Nebeneinkünfte (2007-08-08).pretty.json\n",
+ "43411 - 75 Prozent der Abgeordneten für Offenlegung ihrer Nebeneinkünfte (2007-08-08)\n",
+ "Processing datasets/german-quotations/train/59662 - USA: Der demokratische Senator Christopher Dodd will die „Fed“ entmachten (2009-11-13).pretty.json\n",
+ "59662 - USA: Der demokratische Senator Christopher Dodd will die „Fed“ entmachten (2009-11-13)\n",
+ "Processing datasets/german-quotations/train/49204 - In Rio de Janeiro grassiert das Dengue-Fieber (2008-03-25).pretty.json\n",
+ "49204 - In Rio de Janeiro grassiert das Dengue-Fieber (2008-03-25)\n",
+ "Processing datasets/german-quotations/train/12667 - ARD-Hochrechnungen doch mit Microsoft-Logo ausgestrahlt (2005-09-19).pretty.json\n",
+ "12667 - ARD-Hochrechnungen doch mit Microsoft-Logo ausgestrahlt (2005-09-19)\n",
+ "Processing datasets/german-quotations/train/49854 - Erneute Schulschließung wegen Masern an einer Freiburger Schule (2008-04-30).pretty.json\n",
+ "49854 - Erneute Schulschließung wegen Masern an einer Freiburger Schule (2008-04-30)\n",
+ "Processing datasets/german-quotations/train/58768 - Polizeigewalt am Rande der Demonstration „Freiheit statt Angst“ in Berlin (2009-09-14).pretty.json\n",
+ "58768 - Polizeigewalt am Rande der Demonstration „Freiheit statt Angst“ in Berlin (2009-09-14)\n",
+ "Processing datasets/german-quotations/train/35600 - Die Volkswagen AG baut in Indien eine neue Produktionsstätte (2006-11-30).pretty.json\n",
+ "35600 - Die Volkswagen AG baut in Indien eine neue Produktionsstätte (2006-11-30)\n",
+ "Processing datasets/german-quotations/train/3002 - Staatsstreich in Togo (2005-02-06).pretty.json\n",
+ "3002 - Staatsstreich in Togo (2005-02-06)\n",
+ "Processing datasets/german-quotations/train/13761 - Streit um Richtlinienkompetenz einer Bundeskanzlerin Angela Merkel (2005-10-12).pretty.json\n",
+ "13761 - Streit um Richtlinienkompetenz einer Bundeskanzlerin Angela Merkel (2005-10-12)\n",
+ "Processing datasets/german-quotations/train/50858 - Tesla Motors startet PR-Kampagne in Europa (2008-06-12).pretty.json\n",
+ "50858 - Tesla Motors startet PR-Kampagne in Europa (2008-06-12)\n",
+ "Processing datasets/german-quotations/train/68811 - Stadtrat Dresden beschließt Entwicklung eines CO2-neutralen Stadtteils (2011-06-24).pretty.json\n",
+ "68811 - Stadtrat Dresden beschließt Entwicklung eines CO2-neutralen Stadtteils (2011-06-24)\n",
+ "Processing datasets/german-quotations/train/25158 - Razzia bei EADS und Airbus (2006-04-11).pretty.json\n",
+ "25158 - Razzia bei EADS und Airbus (2006-04-11)\n",
+ "Processing datasets/german-quotations/train/72118 - Mitt Romney gewinnt Vorwahl in Illinois (2012-03-23).pretty.json\n",
+ "72118 - Mitt Romney gewinnt Vorwahl in Illinois (2012-03-23)\n",
+ "Processing datasets/german-quotations/train/6659 - Afrikaner wird neuer Chef der UNIDO (2005-06-22).pretty.json\n",
+ "6659 - Afrikaner wird neuer Chef der UNIDO (2005-06-22)\n",
+ "Processing datasets/german-quotations/train/12325 - Hurrikan Katrina: USA lehnten Lebensmittelhilfe aus Deutschland ab (2005-09-10).pretty.json\n",
+ "12325 - Hurrikan Katrina: USA lehnten Lebensmittelhilfe aus Deutschland ab (2005-09-10)\n",
+ "Processing datasets/german-quotations/train/46316 - Saudi-Arabien: König begnadigt „Qatif Girl“ (2007-12-17).pretty.json\n",
+ "46316 - Saudi-Arabien: König begnadigt „Qatif Girl“ (2007-12-17)\n",
+ "Processing datasets/german-quotations/train/59896 - Schwerverbrecher Michalski und Heckhoff wieder gefasst (2009-12-02).pretty.json\n",
+ "59896 - Schwerverbrecher Michalski und Heckhoff wieder gefasst (2009-12-02)\n",
+ "Processing datasets/german-quotations/train/80813 - Zunehmende Angriffe gegen Juden in Deutschland (2017-04-04).pretty.json\n",
+ "80813 - Zunehmende Angriffe gegen Juden in Deutschland (2017-04-04)\n",
+ "Processing datasets/german-quotations/train/9907 - Passagierflugzeug in Leeds notgelandet (2005-08-04).pretty.json\n",
+ "9907 - Passagierflugzeug in Leeds notgelandet (2005-08-04)\n",
+ "Processing datasets/german-quotations/train/33932 - Großrazzia in Wieslocher Discothek (2006-10-17).pretty.json\n",
+ "33932 - Großrazzia in Wieslocher Discothek (2006-10-17)\n",
+ "Processing datasets/german-quotations/train/8845 - Indiens Trägerraketenprogramm vor weiteren Tests (2005-07-18).pretty.json\n",
+ "8845 - Indiens Trägerraketenprogramm vor weiteren Tests (2005-07-18)\n",
+ "Processing datasets/german-quotations/train/30456 - Möglicherweise Wrack des Flugzeugträgers „Graf Zeppelin“ entdeckt (2006-07-26).pretty.json\n",
+ "30456 - Möglicherweise Wrack des Flugzeugträgers „Graf Zeppelin“ entdeckt (2006-07-26)\n",
+ "Processing datasets/german-quotations/train/24326 - Bangkok: Demonstranten fordern vom König die Einsetzung einer Interimsregierung (2006-03-26).pretty.json\n",
+ "24326 - Bangkok: Demonstranten fordern vom König die Einsetzung einer Interimsregierung (2006-03-26)\n",
+ "Processing datasets/german-quotations/train/33446 - Ayaan Hirsi Ali erhielt Preis der Stadt Kassel (2006-10-02).pretty.json\n",
+ "33446 - Ayaan Hirsi Ali erhielt Preis der Stadt Kassel (2006-10-02)\n",
+ "Processing datasets/german-quotations/train/80622 - Ex-Verkehrsminister Günther Krause wurde Opfer eines Betrügers (2017-03-07).pretty.json\n",
+ "80622 - Ex-Verkehrsminister Günther Krause wurde Opfer eines Betrügers (2017-03-07)\n",
+ "Processing datasets/german-quotations/train/12873 - Notlandung auf dem Hamburger Flughafen (2005-09-24).pretty.json\n",
+ "12873 - Notlandung auf dem Hamburger Flughafen (2005-09-24)\n",
+ "Processing datasets/german-quotations/train/27237 - Braunbär in Deutschland: Freigabe zum Abschuss (2006-05-22).pretty.json\n",
+ "27237 - Braunbär in Deutschland: Freigabe zum Abschuss (2006-05-22)\n",
+ "Processing datasets/german-quotations/train/27258 - Danziger Katharinenkirche bei Brand schwer beschädigt (2006-05-22).pretty.json\n",
+ "27258 - Danziger Katharinenkirche bei Brand schwer beschädigt (2006-05-22)\n",
+ "Processing datasets/german-quotations/train/67014 - UN-Sicherheitsrat beschließt Einrichtung einer Flugverbotszone über Libyen (2011-03-18).pretty.json\n",
+ "67014 - UN-Sicherheitsrat beschließt Einrichtung einer Flugverbotszone über Libyen (2011-03-18)\n",
+ "Processing datasets/german-quotations/train/42492 - Kernkraftwerk Brunsbüttel geht nach Störung wieder ans Netz (2007-07-01).pretty.json\n",
+ "42492 - Kernkraftwerk Brunsbüttel geht nach Störung wieder ans Netz (2007-07-01)\n",
+ "Processing datasets/german-quotations/train/74982 - NASA beobachtet ISON-Kometen im Weltraum (2013-02-25).pretty.json\n",
+ "74982 - NASA beobachtet ISON-Kometen im Weltraum (2013-02-25)\n",
+ "Processing datasets/german-quotations/train/20735 - Zwei deutsche Ingenieure im Irak entführt (2006-01-24).pretty.json\n",
+ "20735 - Zwei deutsche Ingenieure im Irak entführt (2006-01-24)\n",
+ "Processing datasets/german-quotations/train/47946 - London: Großbrand auf Straßenmarkt in Camden (2008-02-11).pretty.json\n",
+ "47946 - London: Großbrand auf Straßenmarkt in Camden (2008-02-11)\n",
+ "Processing datasets/german-quotations/train/30404 - Zustand Ariel Scharons deutlich verschlechtert (2006-07-24).pretty.json\n",
+ "30404 - Zustand Ariel Scharons deutlich verschlechtert (2006-07-24)\n",
+ "Processing datasets/german-quotations/train/51314 - Frieda Borchert ist mit 111 Jahren in Berlin verstorben (2008-06-26).pretty.json\n",
+ "51314 - Frieda Borchert ist mit 111 Jahren in Berlin verstorben (2008-06-26)\n",
+ "Processing datasets/german-quotations/train/63500 - Bayerischer Grünen-Politiker Sepp Daxenberger gestorben (2010-08-19).pretty.json\n",
+ "63500 - Bayerischer Grünen-Politiker Sepp Daxenberger gestorben (2010-08-19)\n",
+ "Processing datasets/german-quotations/train/43134 - Thailand: Thai-Rak-Thai-Mitglieder suchen neue organisatorische Basis (2007-07-29).pretty.json\n",
+ "43134 - Thailand: Thai-Rak-Thai-Mitglieder suchen neue organisatorische Basis (2007-07-29)\n",
+ "Processing datasets/german-quotations/train/18890 - Bad Reichenhall: Bergungsarbeiten in der Eissporthalle dauern an (2006-01-03).pretty.json\n",
+ "18890 - Bad Reichenhall: Bergungsarbeiten in der Eissporthalle dauern an (2006-01-03)\n",
+ "Processing datasets/german-quotations/train/6062 - Einigung über Bundestagswahlbündnis PDS-WASG bis Samstag möglich (2005-06-09).pretty.json\n",
+ "6062 - Einigung über Bundestagswahlbündnis PDS-WASG bis Samstag möglich (2005-06-09)\n",
+ "Processing datasets/german-quotations/train/70653 - Deutscher Aktienindex im Plus (2011-12-02).pretty.json\n",
+ "70653 - Deutscher Aktienindex im Plus (2011-12-02)\n",
+ "Processing datasets/german-quotations/train/14990 - Österreichische Forscher entwickeln Plasmaantrieb (2005-10-28).pretty.json\n",
+ "14990 - Österreichische Forscher entwickeln Plasmaantrieb (2005-10-28)\n",
+ "Processing datasets/german-quotations/train/9006 - EBay verzeichnet einen Gewinnsprung von 53 Prozent (2005-07-21).pretty.json\n",
+ "9006 - EBay verzeichnet einen Gewinnsprung von 53 Prozent (2005-07-21)\n",
+ "Processing datasets/german-quotations/train/69856 - Bulgarien: Berüchtigter Roma-Boss festgenommen - Proteste gegen die Minderheit überschatten Wahlkampf (2011-09-28).pretty.json\n",
+ "69856 - Bulgarien: Berüchtigter Roma-Boss festgenommen - Proteste gegen die Minderheit überschatten Wahlkampf (2011-09-28)\n",
+ "Processing datasets/german-quotations/train/77153 - Kommt es in Sachsen zur schwarz-grünen Koalition? (2014-08-15).pretty.json\n",
+ "77153 - Kommt es in Sachsen zur schwarz-grünen Koalition? (2014-08-15)\n",
+ "Processing datasets/german-quotations/train/61550 - Terrorismus in Deutschland: Langjährige Freiheitsstrafen gegen Mitglieder der so genannten Sauerland-Gruppe (2010-03-04).pretty.json\n",
+ "61550 - Terrorismus in Deutschland: Langjährige Freiheitsstrafen gegen Mitglieder der so genannten Sauerland-Gruppe (2010-03-04)\n",
+ "Processing datasets/german-quotations/train/2124 - Handball: Wegen Lizenzverstoßes acht Punkte Abzug für den HSV (2004-12-23).pretty.json\n",
+ "2124 - Handball: Wegen Lizenzverstoßes acht Punkte Abzug für den HSV (2004-12-23)\n",
+ "Processing datasets/german-quotations/train/69725 - Mann soll Tochter 34 Jahre lang vergewaltigt haben (2011-09-14).pretty.json\n",
+ "69725 - Mann soll Tochter 34 Jahre lang vergewaltigt haben (2011-09-14)\n",
+ "Processing datasets/german-quotations/train/77468 - Fotostrecke: Proteste in Hong Kong am 27. und 28. September 2014 (2014-09-29).pretty.json\n",
+ "77468 - Fotostrecke: Proteste in Hong Kong am 27. und 28. September 2014 (2014-09-29)\n",
+ "Processing datasets/german-quotations/train/52016 - Olympische Spiele: Thailänderin holt erstes Gold für ihr Land im Gewichtheben (2008-08-10).pretty.json\n",
+ "52016 - Olympische Spiele: Thailänderin holt erstes Gold für ihr Land im Gewichtheben (2008-08-10)\n",
+ "Processing datasets/german-quotations/train/61557 - BASF hofft auf weitere Genehmigungen für gentechnisch veränderte Kartoffeln (2010-03-04).pretty.json\n",
+ "61557 - BASF hofft auf weitere Genehmigungen für gentechnisch veränderte Kartoffeln (2010-03-04)\n",
+ "Processing datasets/german-quotations/train/25991 - Der FC Bayern München gewinnt den DFB-Pokal 2006 (2006-05-01).pretty.json\n",
+ "25991 - Der FC Bayern München gewinnt den DFB-Pokal 2006 (2006-05-01)\n",
+ "Processing datasets/german-quotations/train/33563 - Notlandung einer Boeing 757 in Budapest (2006-10-05).pretty.json\n",
+ "33563 - Notlandung einer Boeing 757 in Budapest (2006-10-05)\n",
+ "Processing datasets/german-quotations/train/43684 - Pétanque: EuroCup-Endrunde findet in Rastatt statt (2007-08-20).pretty.json\n",
+ "43684 - Pétanque: EuroCup-Endrunde findet in Rastatt statt (2007-08-20)\n",
+ "Processing datasets/german-quotations/train/9251 - Thailands Ministerpräsident unter Druck wegen Notstandsvollmachten (2005-07-24).pretty.json\n",
+ "9251 - Thailands Ministerpräsident unter Druck wegen Notstandsvollmachten (2005-07-24)\n",
+ "Processing datasets/german-quotations/train/49334 - Interview mit dem deutschen Regisseur von Musikvideos, Uwe Flade (2008-03-30).pretty.json\n",
+ "49334 - Interview mit dem deutschen Regisseur von Musikvideos, Uwe Flade (2008-03-30)\n",
+ "Processing datasets/german-quotations/train/38651 - Internationaler Gerichtshof: Massaker von Srebrenica im Jahre 1995 war Völkermord (2007-03-02).pretty.json\n",
+ "38651 - Internationaler Gerichtshof: Massaker von Srebrenica im Jahre 1995 war Völkermord (2007-03-02)\n",
+ "Processing datasets/german-quotations/train/45626 - Franz Müntefering tritt von seinen Ämtern zurück (2007-11-13).pretty.json\n",
+ "45626 - Franz Müntefering tritt von seinen Ämtern zurück (2007-11-13)\n",
+ "Processing datasets/german-quotations/train/73463 - München: Zehnte Stadtmeisterschaft im Klettern (2012-07-22).pretty.json\n",
+ "73463 - München: Zehnte Stadtmeisterschaft im Klettern (2012-07-22)\n",
+ "Processing datasets/german-quotations/train/45609 - Großes Feuer brennt in London (2007-11-12).pretty.json\n",
+ "45609 - Großes Feuer brennt in London (2007-11-12)\n",
+ "Processing datasets/german-quotations/train/35318 - Klaus Wowereit fiel bei Wiederwahl im ersten Wahlgang durch – im zweiten erhielt er genügend Stimmen (2006-11-23).pretty.json\n",
+ "35318 - Klaus Wowereit fiel bei Wiederwahl im ersten Wahlgang durch – im zweiten erhielt er genügend Stimmen (2006-11-23)\n",
+ "Processing datasets/german-quotations/train/80937 - Tesla: Droht nach Übernahme ein Streik in Deutschland? (2017-04-17).pretty.json\n",
+ "80937 - Tesla: Droht nach Übernahme ein Streik in Deutschland? (2017-04-17)\n",
+ "Processing datasets/german-quotations/train/64617 - Zwölfter Spieltag der Fußball-Bundesliga in der Saison 2010-11 (2010-11-18).pretty.json\n",
+ "64617 - Zwölfter Spieltag der Fußball-Bundesliga in der Saison 2010-11 (2010-11-18)\n",
+ "Processing datasets/german-quotations/train/38621 - Dengue-Fieber: Paraguay ruft den Notstand aus (2007-02-27).pretty.json\n",
+ "38621 - Dengue-Fieber: Paraguay ruft den Notstand aus (2007-02-27)\n",
+ "Processing datasets/german-quotations/train/23657 - Aktionen gegen Verzögerung der Veröffentlichungspflicht von Abgeordnetengehältern (2005-03-13).pretty.json\n",
+ "23657 - Aktionen gegen Verzögerung der Veröffentlichungspflicht von Abgeordnetengehältern (2005-03-13)\n",
+ "Processing datasets/german-quotations/train/21661 - Torwart des SV Werder Bremen schwer verletzt in Klinik eingeliefert (2006-02-09).pretty.json\n",
+ "21661 - Torwart des SV Werder Bremen schwer verletzt in Klinik eingeliefert (2006-02-09)\n",
+ "Processing datasets/german-quotations/train/80548 - Chinesischer Bauer verklagt Chemiegiganten (2017-02-24).pretty.json\n",
+ "80548 - Chinesischer Bauer verklagt Chemiegiganten (2017-02-24)\n",
+ "Processing datasets/german-quotations/train/30253 - Der „Southwest Regional Spaceport“ heißt jetzt „Spaceport America“ (2006-07-21).pretty.json\n",
+ "30253 - Der „Southwest Regional Spaceport“ heißt jetzt „Spaceport America“ (2006-07-21)\n",
+ "Processing datasets/german-quotations/train/70416 - Hochbrisante Datei: Planten die Neonazis aus Thüringen Anschläge auf Politiker? (2011-11-16).pretty.json\n",
+ "70416 - Hochbrisante Datei: Planten die Neonazis aus Thüringen Anschläge auf Politiker? (2011-11-16)\n",
+ "Processing datasets/german-quotations/train/38926 - Deutscher in Thailand wegen Kindesmissbrauchs festgenommen (2007-03-09).pretty.json\n",
+ "38926 - Deutscher in Thailand wegen Kindesmissbrauchs festgenommen (2007-03-09)\n",
+ "Processing datasets/german-quotations/train/83502 - Italien: Neuwahlen vorerst abgewendet (2019-09-02).pretty.json\n",
+ "83502 - Italien: Neuwahlen vorerst abgewendet (2019-09-02)\n",
+ "Processing datasets/german-quotations/train/46722 - Erde am 3. Januar in Sonnennähe (2008-01-04).pretty.json\n",
+ "46722 - Erde am 3. Januar in Sonnennähe (2008-01-04)\n",
+ "Processing datasets/german-quotations/train/6662 - Österreich: Ursache für Explosion in Stahlwerk ermittelt (2005-04-09).pretty.json\n",
+ "6662 - Österreich: Ursache für Explosion in Stahlwerk ermittelt (2005-04-09)\n",
+ "Processing datasets/german-quotations/train/71448 - Europa: Kältewelle fordert Todesopfer (2012-01-31).pretty.json\n",
+ "71448 - Europa: Kältewelle fordert Todesopfer (2012-01-31)\n",
+ "Processing datasets/german-quotations/train/33338 - UP Aerospace veröffentlicht erste Analyse des gescheiterten Erstfluges (2006-10-01).pretty.json\n",
+ "33338 - UP Aerospace veröffentlicht erste Analyse des gescheiterten Erstfluges (2006-10-01)\n",
+ "Processing datasets/german-quotations/train/2937 - Nürnberger Bürger müssen tiefer in die Tasche greifen (2005-02-02).pretty.json\n",
+ "2937 - Nürnberger Bürger müssen tiefer in die Tasche greifen (2005-02-02)\n",
+ "Processing datasets/german-quotations/train/31223 - Bank von England veröffentlichte Namensliste von mutmaßlichen Terroristen (2006-08-13).pretty.json\n",
+ "31223 - Bank von England veröffentlichte Namensliste von mutmaßlichen Terroristen (2006-08-13)\n",
+ "Processing datasets/german-quotations/train/28493 - Wien: Komponist György Ligeti gestorben (2006-06-15).pretty.json\n",
+ "28493 - Wien: Komponist György Ligeti gestorben (2006-06-15)\n",
+ "Processing datasets/german-quotations/train/33276 - Ermittlungsergebnis wegen Hubschrauberabsturz bei Weilheim-Teck (2006-09-27).pretty.json\n",
+ "33276 - Ermittlungsergebnis wegen Hubschrauberabsturz bei Weilheim-Teck (2006-09-27)\n",
+ "Processing datasets/german-quotations/train/37132 - Aktionen gegen Rechts in Magdeburg (2007-01-13).pretty.json\n",
+ "37132 - Aktionen gegen Rechts in Magdeburg (2007-01-13)\n",
+ "Processing datasets/german-quotations/train/48551 - Der deutsche Sänger Ivan Rebroff ist tot (2008-02-29).pretty.json\n",
+ "48551 - Der deutsche Sänger Ivan Rebroff ist tot (2008-02-29)\n",
+ "Processing datasets/german-quotations/train/12980 - Kleinflugzeug stürzte in Nordschweden ab (2005-09-26).pretty.json\n",
+ "12980 - Kleinflugzeug stürzte in Nordschweden ab (2005-09-26)\n",
+ "Processing datasets/german-quotations/train/47835 - Baden-Württemberg: Schüler sollen keine Hausaufgaben mehr bekommen (2008-02-07).pretty.json\n",
+ "47835 - Baden-Württemberg: Schüler sollen keine Hausaufgaben mehr bekommen (2008-02-07)\n",
+ "Processing datasets/german-quotations/train/51446 - Studie: „Große grundsätzliche Distanz der Bürger zur Politik“ in Deutschland (2008-06-30).pretty.json\n",
+ "51446 - Studie: „Große grundsätzliche Distanz der Bürger zur Politik“ in Deutschland (2008-06-30)\n",
+ "Processing datasets/german-quotations/train/52330 - US-Wahlen: Spitzenduo der Demokraten für die US-Präsidentschaftswahl steht fest (2008-08-24).pretty.json\n",
+ "52330 - US-Wahlen: Spitzenduo der Demokraten für die US-Präsidentschaftswahl steht fest (2008-08-24)\n",
+ "Processing datasets/german-quotations/train/83244 - Badeunfälle: Fußballspielerin Florijana Ismaili, 24, Schauspielerin Lisa Martinek, 47, gestorben (2019-07-04).pretty.json\n",
+ "83244 - Badeunfälle: Fußballspielerin Florijana Ismaili, 24, Schauspielerin Lisa Martinek, 47, gestorben (2019-07-04)\n",
+ "Processing datasets/german-quotations/train/66494 - Mehrere Dutzend Tote bei Erdbeben in Neuseeland (2011-02-22).pretty.json\n",
+ "66494 - Mehrere Dutzend Tote bei Erdbeben in Neuseeland (2011-02-22)\n",
+ "Processing datasets/german-quotations/train/49225 - Nicolas Sarkozys Staatsbesuch im Vereinigten Königreich (2008-03-27).pretty.json\n",
+ "49225 - Nicolas Sarkozys Staatsbesuch im Vereinigten Königreich (2008-03-27)\n",
+ "Processing datasets/german-quotations/train/30204 - Zahl der Frauenmorde in Guatemala nimmt weiter zu (2006-07-19).pretty.json\n",
+ "30204 - Zahl der Frauenmorde in Guatemala nimmt weiter zu (2006-07-19)\n",
+ "Processing datasets/german-quotations/train/75280 - Nordkorea: Experten im Interview zur aktuellen Situation (0001-01-01).pretty.json\n",
+ "75280 - Nordkorea: Experten im Interview zur aktuellen Situation (0001-01-01)\n",
+ "Processing datasets/german-quotations/train/4792 - Der ehemalige ÖTV-Chef, Heinz Kluncker, ist tot (2005-04-22).pretty.json\n",
+ "4792 - Der ehemalige ÖTV-Chef, Heinz Kluncker, ist tot (2005-04-22)\n",
+ "Processing datasets/german-quotations/train/2097 - Topmanager verurteilt – 300 Arbeitsplätze weg (2004-12-20).pretty.json\n",
+ "2097 - Topmanager verurteilt – 300 Arbeitsplätze weg (2004-12-20)\n",
+ "Processing datasets/german-quotations/train/4867 - Urvögel werden oft fehlgedeutet (2005-04-24).pretty.json\n",
+ "4867 - Urvögel werden oft fehlgedeutet (2005-04-24)\n",
+ "Processing datasets/german-quotations/train/70718 - Niedersachsen: CDU-Abgeordneter beendet wegen Internetkontakts zu 15-Jähriger seine politische Karriere (2011-12-09).pretty.json\n",
+ "70718 - Niedersachsen: CDU-Abgeordneter beendet wegen Internetkontakts zu 15-Jähriger seine politische Karriere (2011-12-09)\n",
+ "Processing datasets/german-quotations/train/3574 - A1-Ausbau wird privat finanziert (2005-02-27).pretty.json\n",
+ "3574 - A1-Ausbau wird privat finanziert (2005-02-27)\n",
+ "Processing datasets/german-quotations/train/59921 - Heidelberg: LKW 20 Meter in die Tiefe gestürzt (2009-12-13).pretty.json\n",
+ "59921 - Heidelberg: LKW 20 Meter in die Tiefe gestürzt (2009-12-13)\n",
+ "Processing datasets/german-quotations/train/45213 - FIFA vergibt Fußball-Weltmeisterschaften nach Deutschland und Brasilien (2007-10-30).pretty.json\n",
+ "45213 - FIFA vergibt Fußball-Weltmeisterschaften nach Deutschland und Brasilien (2007-10-30)\n",
+ "Processing datasets/german-quotations/train/20800 - Flugpassagier sprang aus rollendem Flugzeug auf die Startbahn (2006-01-26).pretty.json\n",
+ "20800 - Flugpassagier sprang aus rollendem Flugzeug auf die Startbahn (2006-01-26)\n",
+ "Processing datasets/german-quotations/train/58108 - Gutachten: John Demjanjuk ist verhandlungsfähig (2009-07-03).pretty.json\n",
+ "58108 - Gutachten: John Demjanjuk ist verhandlungsfähig (2009-07-03)\n",
+ "Processing datasets/german-quotations/train/43807 - Elfjähriger auf offener Straße erschossen – mutmaßlicher Mörder auf Kaution entlassen (2007-08-25).pretty.json\n",
+ "43807 - Elfjähriger auf offener Straße erschossen – mutmaßlicher Mörder auf Kaution entlassen (2007-08-25)\n",
+ "Processing datasets/german-quotations/train/36639 - Anti-Piraterie-Kopierschutz für hochauflösende Speichermedien möglicherweise gehackt (2006-12-30).pretty.json\n",
+ "36639 - Anti-Piraterie-Kopierschutz für hochauflösende Speichermedien möglicherweise gehackt (2006-12-30)\n",
+ "Processing datasets/german-quotations/train/36397 - Stefan Hentschel ist tot (2006-12-19).pretty.json\n",
+ "36397 - Stefan Hentschel ist tot (2006-12-19)\n",
+ "Processing datasets/german-quotations/train/46358 - Schweres Zugunglück in Pakistan (2007-12-20).pretty.json\n",
+ "46358 - Schweres Zugunglück in Pakistan (2007-12-20)\n",
+ "Processing datasets/german-quotations/train/74557 - Russischer Präsident Putin unterzeichnet Gesetz zu Adoptionsverbot durch US-Bürger (2012-12-30).pretty.json\n",
+ "74557 - Russischer Präsident Putin unterzeichnet Gesetz zu Adoptionsverbot durch US-Bürger (2012-12-30)\n",
+ "Processing datasets/german-quotations/train/48591 - Die Hamburger Grünen wollen in Koalitionsverhandlungen mit der CDU eintreten (2008-03-03).pretty.json\n",
+ "48591 - Die Hamburger Grünen wollen in Koalitionsverhandlungen mit der CDU eintreten (2008-03-03)\n",
+ "Processing datasets/german-quotations/train/14986 - Aserbaidschan: UNO-Hubschrauber abgestürzt (2005-10-28).pretty.json\n",
+ "14986 - Aserbaidschan: UNO-Hubschrauber abgestürzt (2005-10-28)\n",
+ "Processing datasets/german-quotations/train/22508 - Düsseldorf: Randale in LTU-Airbus (2006-02-21).pretty.json\n",
+ "22508 - Düsseldorf: Randale in LTU-Airbus (2006-02-21)\n",
+ "Processing datasets/german-quotations/train/44301 - Freiwilliger Produktrückruf von Mars-Süßwaren (2007-09-18).pretty.json\n",
+ "44301 - Freiwilliger Produktrückruf von Mars-Süßwaren (2007-09-18)\n",
+ "Processing datasets/german-quotations/train/81518 - Kein Investor für Qoros (2017-08-24).pretty.json\n",
+ "81518 - Kein Investor für Qoros (2017-08-24)\n",
+ "Processing datasets/german-quotations/train/67886 - Edelmetallpreise auf Höhenflug (2011-04-30).pretty.json\n",
+ "67886 - Edelmetallpreise auf Höhenflug (2011-04-30)\n",
+ "Processing datasets/german-quotations/train/74006 - Georgien: Rücktritte nach Folterskandal (2012-09-21).pretty.json\n",
+ "74006 - Georgien: Rücktritte nach Folterskandal (2012-09-21)\n",
+ "Processing datasets/german-quotations/train/70935 - Anonymous hackt sich bei US-Sicherheitsunternehmen ein und bucht 1 Million Dollar für gemeinnützige Zwecke ab (2011-12-26).pretty.json\n",
+ "70935 - Anonymous hackt sich bei US-Sicherheitsunternehmen ein und bucht 1 Million Dollar für gemeinnützige Zwecke ab (2011-12-26)\n",
+ "Processing datasets/german-quotations/train/2096 - Hilde Gerg schafft 20. Weltcupsieg in St. Moritz (2004-12-21).pretty.json\n",
+ "2096 - Hilde Gerg schafft 20. Weltcupsieg in St. Moritz (2004-12-21)\n",
+ "Processing datasets/german-quotations/train/62459 - Thailand: Premierminister kündigt Auflösung des Parlaments für September an (2010-05-06).pretty.json\n",
+ "62459 - Thailand: Premierminister kündigt Auflösung des Parlaments für September an (2010-05-06)\n",
+ "Processing datasets/german-quotations/train/74327 - Ägypten: Mindestens 40 Kinder sterben bei Unfall an einem Bahnübergang (2012-11-17).pretty.json\n",
+ "74327 - Ägypten: Mindestens 40 Kinder sterben bei Unfall an einem Bahnübergang (2012-11-17)\n",
+ "Processing datasets/german-quotations/train/45695 - IPCC: Der Klimawandel hat bereits begonnen (2007-11-17).pretty.json\n",
+ "45695 - IPCC: Der Klimawandel hat bereits begonnen (2007-11-17)\n",
+ "Processing datasets/german-quotations/train/2240 - Forscher möchten den perfekten Weihnachtsbaum in unser Wohnzimmer stellen (2004-12-24).pretty.json\n",
+ "2240 - Forscher möchten den perfekten Weihnachtsbaum in unser Wohnzimmer stellen (2004-12-24)\n",
+ "Processing datasets/german-quotations/train/56965 - Verhandlungsunfähig: John Demjanjuk wird doch nicht ausgeliefert (2009-04-05).pretty.json\n",
+ "56965 - Verhandlungsunfähig: John Demjanjuk wird doch nicht ausgeliefert (2009-04-05)\n",
+ "Processing datasets/german-quotations/train/52208 - 75 Jahre Volksempfänger (2008-08-19).pretty.json\n",
+ "52208 - 75 Jahre Volksempfänger (2008-08-19)\n",
+ "Processing datasets/german-quotations/train/17705 - Englischsprachige Wikipedia nun größer als die spanische Enzyklopädie ESPASA (2005-12-17).pretty.json\n",
+ "17705 - Englischsprachige Wikipedia nun größer als die spanische Enzyklopädie ESPASA (2005-12-17)\n",
+ "Processing datasets/german-quotations/train/71480 - Frankreich: Mélenchon empfiehlt Sarkozy Kandidatur in Deutschland (2012-02-03).pretty.json\n",
+ "71480 - Frankreich: Mélenchon empfiehlt Sarkozy Kandidatur in Deutschland (2012-02-03)\n",
+ "Processing datasets/german-quotations/train/55268 - Tesla Motors wird Batterienlieferant für Daimler (2009-01-16).pretty.json\n",
+ "55268 - Tesla Motors wird Batterienlieferant für Daimler (2009-01-16)\n",
+ "Processing datasets/german-quotations/train/7537 - NASA gab Starttermin für Raumfähre „Discovery“ bekannt (2005-06-30).pretty.json\n",
+ "7537 - NASA gab Starttermin für Raumfähre „Discovery“ bekannt (2005-06-30)\n",
+ "Processing datasets/german-quotations/train/83346 - Vereinigtes Königreich: Boris Johnson neuer britischer Premierminister (2019-07-25).pretty.json\n",
+ "83346 - Vereinigtes Königreich: Boris Johnson neuer britischer Premierminister (2019-07-25)\n",
+ "Processing datasets/german-quotations/train/60764 - Iran: Zwei Anhänger der Opposition hingerichtet (2010-01-28).pretty.json\n",
+ "60764 - Iran: Zwei Anhänger der Opposition hingerichtet (2010-01-28)\n",
+ "Processing datasets/german-quotations/train/27753 - Kolumbien: Präsident Álvaro Uribe Vélez wiedergewählt (2006-05-31).pretty.json\n",
+ "27753 - Kolumbien: Präsident Álvaro Uribe Vélez wiedergewählt (2006-05-31)\n",
+ "Processing datasets/german-quotations/train/8562 - NASA nimmt Spaceshuttle-Flüge mit dem Start der Discovery wieder auf (2005-07-26).pretty.json\n",
+ "8562 - NASA nimmt Spaceshuttle-Flüge mit dem Start der Discovery wieder auf (2005-07-26)\n",
+ "Processing datasets/german-quotations/train/49443 - Astronomen entdeckten bislang jüngsten Planeten außerhalb unseres Sonnensystems (2008-04-04).pretty.json\n",
+ "49443 - Astronomen entdeckten bislang jüngsten Planeten außerhalb unseres Sonnensystems (2008-04-04)\n",
+ "Processing datasets/german-quotations/train/36202 - Siemens-Affäre: Ex-Vorstand Thomas Ganswindt in Haft (2006-12-13).pretty.json\n",
+ "36202 - Siemens-Affäre: Ex-Vorstand Thomas Ganswindt in Haft (2006-12-13)\n",
+ "Processing datasets/german-quotations/train/53657 - Deutschland: Tausende Abiturienten nehmen wegen Studiengebühren kein Studium auf (2008-10-29).pretty.json\n",
+ "53657 - Deutschland: Tausende Abiturienten nehmen wegen Studiengebühren kein Studium auf (2008-10-29)\n",
+ "Processing datasets/german-quotations/train/25475 - Selbstmordanschlag in Tel Aviv (2006-04-19).pretty.json\n",
+ "25475 - Selbstmordanschlag in Tel Aviv (2006-04-19)\n",
+ "Processing datasets/german-quotations/train/58846 - Im Norden des Jemen sterben zahlreiche Menschen bei einem Luftangriff (2009-09-18).pretty.json\n",
+ "58846 - Im Norden des Jemen sterben zahlreiche Menschen bei einem Luftangriff (2009-09-18)\n",
+ "Processing datasets/german-quotations/train/4566 - Luftraum über den USA gesperrt (2005-04-11).pretty.json\n",
+ "4566 - Luftraum über den USA gesperrt (2005-04-11)\n",
+ "Processing datasets/german-quotations/train/74430 - PNE Wind aus Cuxhaven - die Aktie des Jahres? (2012-12-08).pretty.json\n",
+ "74430 - PNE Wind aus Cuxhaven - die Aktie des Jahres? (2012-12-08)\n",
+ "Processing datasets/german-quotations/train/78858 - Missbrauch durch linke Pädagogik schlimmer als durch Kirche ? (2015-03-21).pretty.json\n",
+ "78858 - Missbrauch durch linke Pädagogik schlimmer als durch Kirche ? (2015-03-21)\n",
+ "Processing datasets/german-quotations/train/12809 - Norwegische Studie: Auch leichtes Rauchen kann tödlich sein (2005-09-22).pretty.json\n",
+ "12809 - Norwegische Studie: Auch leichtes Rauchen kann tödlich sein (2005-09-22)\n",
+ "Processing datasets/german-quotations/train/53092 - Reinhold Gall: „Polizeigesetz ist von einem Geist der Stärkung der Eingriffsbefugnisse des Staates geprägt“ (2008-08-22).pretty.json\n",
+ "53092 - Reinhold Gall: „Polizeigesetz ist von einem Geist der Stärkung der Eingriffsbefugnisse des Staates geprägt“ (2008-08-22)\n",
+ "Processing datasets/german-quotations/train/28391 - WM 2006: Lückenhafte Ticket-Kontrolle ermöglicht Schwarzhandel (2006-06-12).pretty.json\n",
+ "28391 - WM 2006: Lückenhafte Ticket-Kontrolle ermöglicht Schwarzhandel (2006-06-12)\n",
+ "Processing datasets/german-quotations/train/65561 - Bundeskartellamt: Strompreise nicht manipuliert (2011-01-13).pretty.json\n",
+ "65561 - Bundeskartellamt: Strompreise nicht manipuliert (2011-01-13)\n",
+ "Processing datasets/german-quotations/train/41547 - Second Life: Virtueller Bombenanschlag auf ABC-Hauptquartier (2007-05-26).pretty.json\n",
+ "41547 - Second Life: Virtueller Bombenanschlag auf ABC-Hauptquartier (2007-05-26)\n",
+ "Processing datasets/german-quotations/train/2896 - LKW Maut im Elsass? (2005-02-01).pretty.json\n",
+ "2896 - LKW Maut im Elsass? (2005-02-01)\n",
+ "Processing datasets/german-quotations/train/74899 - Papst Benedikt XVI. tritt zurück (2013-02-11).pretty.json\n",
+ "74899 - Papst Benedikt XVI. tritt zurück (2013-02-11)\n",
+ "Processing datasets/german-quotations/train/79621 - Ostern in Deutschland: Muslime konvertieren zum Christentum (2016-04-03).pretty.json\n",
+ "79621 - Ostern in Deutschland: Muslime konvertieren zum Christentum (2016-04-03)\n",
+ "Processing datasets/german-quotations/train/44953 - Schwerer Unfall in Hövelhof: Zug zerteilt Traktor (2007-10-19).pretty.json\n",
+ "44953 - Schwerer Unfall in Hövelhof: Zug zerteilt Traktor (2007-10-19)\n",
+ "Processing datasets/german-quotations/train/1265 - IAEO behauptet: Nord-Korea hat Atombomben (2004-12-06).pretty.json\n",
+ "1265 - IAEO behauptet: Nord-Korea hat Atombomben (2004-12-06)\n",
+ "Processing datasets/german-quotations/train/12839 - Umstrukturierung führt zu Stellenabbau bei RTL (2005-09-24).pretty.json\n",
+ "12839 - Umstrukturierung führt zu Stellenabbau bei RTL (2005-09-24)\n",
+ "Processing datasets/german-quotations/train/80703 - Forscher entdecken 400.000 Jahre alten Schädel (2017-03-15).pretty.json\n",
+ "80703 - Forscher entdecken 400.000 Jahre alten Schädel (2017-03-15)\n",
+ "Processing datasets/german-quotations/train/31627 - Viele Tote durch Überschwemmungen in Äthiopien (2006-08-17).pretty.json\n",
+ "31627 - Viele Tote durch Überschwemmungen in Äthiopien (2006-08-17)\n",
+ "Processing datasets/german-quotations/train/12491 - Ergebnisse der Bundestagswahl 2005 (2005-09-18).pretty.json\n",
+ "12491 - Ergebnisse der Bundestagswahl 2005 (2005-09-18)\n",
+ "Processing datasets/german-quotations/train/58160 - Magdeburg: Auftaktsitzung des Stadtrates (2009-07-07).pretty.json\n",
+ "58160 - Magdeburg: Auftaktsitzung des Stadtrates (2009-07-07)\n",
+ "Processing datasets/german-quotations/train/6200 - Wege aus der Haushaltskrise (2005-06-14).pretty.json\n",
+ "6200 - Wege aus der Haushaltskrise (2005-06-14)\n",
+ "Processing datasets/german-quotations/train/9679 - Flugzeit von Discovery um einen Tag verlängert (2005-07-31).pretty.json\n",
+ "9679 - Flugzeit von Discovery um einen Tag verlängert (2005-07-31)\n",
+ "Processing datasets/german-quotations/train/24294 - Unklarheit über die Festnahme weißrussischer Oppositionspolitiker (2006-03-27).pretty.json\n",
+ "24294 - Unklarheit über die Festnahme weißrussischer Oppositionspolitiker (2006-03-27)\n",
+ "Processing datasets/german-quotations/train/73970 - Frankreich will 15.000 Roma zur Rückkehr in ihre Heimatländer bewegen (2012-09-14).pretty.json\n",
+ "73970 - Frankreich will 15.000 Roma zur Rückkehr in ihre Heimatländer bewegen (2012-09-14)\n",
+ "Processing datasets/german-quotations/train/80806 - St. Petersburg: Tote bei Explosion in der Metro (2017-04-03).pretty.json\n",
+ "80806 - St. Petersburg: Tote bei Explosion in der Metro (2017-04-03)\n",
+ "Processing datasets/german-quotations/train/6203 - 800 Autogastankstellen in Deutschland (2005-06-14).pretty.json\n",
+ "6203 - 800 Autogastankstellen in Deutschland (2005-06-14)\n",
+ "Processing datasets/german-quotations/train/64840 - Drogenbandenbekämpfung: Polizei stürmt Armenviertel von Rio de Janeiro (2010-11-27).pretty.json\n",
+ "64840 - Drogenbandenbekämpfung: Polizei stürmt Armenviertel von Rio de Janeiro (2010-11-27)\n",
+ "Processing datasets/german-quotations/train/29640 - Berlin: Amokfahrer in psychiatrische Klinik eingeliefert, Beifahrerin frei (2006-07-04).pretty.json\n",
+ "29640 - Berlin: Amokfahrer in psychiatrische Klinik eingeliefert, Beifahrerin frei (2006-07-04)\n",
+ "Processing datasets/german-quotations/train/7804 - Bundeskabinett stimmt der Einführung biometrischer Reisepässe zu (2005-07-05).pretty.json\n",
+ "7804 - Bundeskabinett stimmt der Einführung biometrischer Reisepässe zu (2005-07-05)\n",
+ "Processing datasets/german-quotations/train/56533 - Zyklon Hamish bedroht Australiens Ostküste (2009-03-10).pretty.json\n",
+ "56533 - Zyklon Hamish bedroht Australiens Ostküste (2009-03-10)\n",
+ "Processing datasets/german-quotations/train/35877 - NASA plant permanent bemannte Mondstation (2006-12-05).pretty.json\n",
+ "35877 - NASA plant permanent bemannte Mondstation (2006-12-05)\n",
+ "Processing datasets/german-quotations/train/48563 - Bundesligaspiel Cottbus gegen Stuttgart wegen Orkan abgesagt (2008-03-01).pretty.json\n",
+ "48563 - Bundesligaspiel Cottbus gegen Stuttgart wegen Orkan abgesagt (2008-03-01)\n",
+ "Processing datasets/german-quotations/train/13554 - Erfolgreiches Abschneiden der deutschen Judoka (2005-10-08).pretty.json\n",
+ "13554 - Erfolgreiches Abschneiden der deutschen Judoka (2005-10-08)\n",
+ "Processing datasets/german-quotations/train/75229 - Papst Franziskus und der Richtungswechsel (2013-03-31).pretty.json\n",
+ "75229 - Papst Franziskus und der Richtungswechsel (2013-03-31)\n",
+ "Processing datasets/german-quotations/train/73758 - Afghanistan: 17 Besucher einer Feier hingerichtet (2012-08-28).pretty.json\n",
+ "73758 - Afghanistan: 17 Besucher einer Feier hingerichtet (2012-08-28)\n",
+ "Processing datasets/german-quotations/train/43098 - Schwere Explosion am Weltraumbahnhof Mojave (2007-07-28).pretty.json\n",
+ "43098 - Schwere Explosion am Weltraumbahnhof Mojave (2007-07-28)\n",
+ "Processing datasets/german-quotations/train/83332 - Premiere von Rigoletto in Bregenz (2019-07-23).pretty.json\n",
+ "83332 - Premiere von Rigoletto in Bregenz (2019-07-23)\n",
+ "Processing datasets/german-quotations/train/26835 - Europatournee von Bon Jovi in Düsseldorf eröffnet (2006-05-15).pretty.json\n",
+ "26835 - Europatournee von Bon Jovi in Düsseldorf eröffnet (2006-05-15)\n",
+ "Processing datasets/german-quotations/train/64095 - Nils Schmid zum SPD-Spitzenkandidaten bei den baden-württembergischen Landtagswahlen gewählt (2010-10-18).pretty.json\n",
+ "64095 - Nils Schmid zum SPD-Spitzenkandidaten bei den baden-württembergischen Landtagswahlen gewählt (2010-10-18)\n",
+ "Processing datasets/german-quotations/train/51747 - Deutschland: Linkspartei wegen Nähe zur PKK in der Kritik (2008-07-20).pretty.json\n",
+ "51747 - Deutschland: Linkspartei wegen Nähe zur PKK in der Kritik (2008-07-20)\n",
+ "Processing datasets/german-quotations/train/46721 - Randale und Unfälle an Silvester (2008-01-02).pretty.json\n",
+ "46721 - Randale und Unfälle an Silvester (2008-01-02)\n",
+ "Processing datasets/german-quotations/train/71492 - Deutschland muss Nazi-Opfern keine Entschädigung zahlen (2012-02-03).pretty.json\n",
+ "71492 - Deutschland muss Nazi-Opfern keine Entschädigung zahlen (2012-02-03)\n",
+ "Processing datasets/german-quotations/train/52789 - Neun Jahre altes Hühnerfleisch beschlagnahmt (2008-09-10).pretty.json\n",
+ "52789 - Neun Jahre altes Hühnerfleisch beschlagnahmt (2008-09-10)\n",
+ "Processing datasets/german-quotations/train/13443 - NHL: Nach Lockout nun erster Spieltag in der Saison 2005-06 (2005-10-06).pretty.json\n",
+ "13443 - NHL: Nach Lockout nun erster Spieltag in der Saison 2005-06 (2005-10-06)\n",
+ "Processing datasets/german-quotations/train/59630 - Fußballnationaltorwart Robert Enke tot – Polizei spricht von Suizid (2009-11-11).pretty.json\n",
+ "59630 - Fußballnationaltorwart Robert Enke tot – Polizei spricht von Suizid (2009-11-11)\n",
+ "Processing datasets/german-quotations/train/52120 - Mindestens 18 Tote bei Bombenanschlag im Libanon (2008-08-13).pretty.json\n",
+ "52120 - Mindestens 18 Tote bei Bombenanschlag im Libanon (2008-08-13)\n",
+ "Processing datasets/german-quotations/train/64689 - Flugsicherheit: Mutmaßliche Paketbombe auf dem Flug Windhoek - München war Attrappe (2010-11-22).pretty.json\n",
+ "64689 - Flugsicherheit: Mutmaßliche Paketbombe auf dem Flug Windhoek - München war Attrappe (2010-11-22)\n",
+ "Processing datasets/german-quotations/train/3552 - Wahlen im Kanton Solothurn (2005-02-27).pretty.json\n",
+ "3552 - Wahlen im Kanton Solothurn (2005-02-27)\n",
+ "Processing datasets/german-quotations/train/45274 - Gold so teuer wie schon lange nicht mehr (2007-11-01).pretty.json\n",
+ "45274 - Gold so teuer wie schon lange nicht mehr (2007-11-01)\n",
+ "Processing datasets/german-quotations/train/69120 - Israelische Soldaten überwältigen 16 pro-palästinensische Aktivisten (2011-07-20).pretty.json\n",
+ "69120 - Israelische Soldaten überwältigen 16 pro-palästinensische Aktivisten (2011-07-20)\n",
+ "Processing datasets/german-quotations/train/54978 - Tag 5 der Angriffe auf Gaza – Israel lehnt Waffenstillstand vorerst ab (2008-12-31).pretty.json\n",
+ "54978 - Tag 5 der Angriffe auf Gaza – Israel lehnt Waffenstillstand vorerst ab (2008-12-31)\n",
+ "Processing datasets/german-quotations/train/21932 - Elterninitiative „Vermisste Kinder“ fand Kind nach sechs Jahren (2006-02-12).pretty.json\n",
+ "21932 - Elterninitiative „Vermisste Kinder“ fand Kind nach sechs Jahren (2006-02-12)\n",
+ "Processing datasets/german-quotations/train/50554 - EADS: Airbus-Werk in Laupheim soll an Diehl-Thales verkauft werden (2008-05-31).pretty.json\n",
+ "50554 - EADS: Airbus-Werk in Laupheim soll an Diehl-Thales verkauft werden (2008-05-31)\n",
+ "Processing datasets/german-quotations/train/69598 - Osram: Preisanstieg bei Seltenen Erden macht Energiesparlampen teuer (2011-08-31).pretty.json\n",
+ "69598 - Osram: Preisanstieg bei Seltenen Erden macht Energiesparlampen teuer (2011-08-31)\n",
+ "Processing datasets/german-quotations/train/4833 - Neuer Zwischenfall an gefährlicher Bahnschranke (2005-04-23).pretty.json\n",
+ "4833 - Neuer Zwischenfall an gefährlicher Bahnschranke (2005-04-23)\n",
+ "Processing datasets/german-quotations/train/77041 - Islamische Missionierung via SMS (2014-07-03).pretty.json\n",
+ "77041 - Islamische Missionierung via SMS (2014-07-03)\n",
+ "Processing datasets/german-quotations/train/12716 - Absturz der Su-27: Russland erwartet von Litauen Einhaltung des Völkerrechts (2005-09-20).pretty.json\n",
+ "12716 - Absturz der Su-27: Russland erwartet von Litauen Einhaltung des Völkerrechts (2005-09-20)\n",
+ "Processing datasets/german-quotations/train/84342 - Früherer US-Außenminister Shultz ist tot (2021-02-09).pretty.json\n",
+ "84342 - Früherer US-Außenminister Shultz ist tot (2021-02-09)\n",
+ "Processing datasets/german-quotations/train/38177 - Kreis Kusel: Um Zigaretten gebeten und verprügelt (2007-02-14).pretty.json\n",
+ "38177 - Kreis Kusel: Um Zigaretten gebeten und verprügelt (2007-02-14)\n",
+ "Processing datasets/german-quotations/train/80902 - Nach Explosionen beim BVB-Bus: Polizei geht von terroristischem Motiv aus (2017-04-12).pretty.json\n",
+ "80902 - Nach Explosionen beim BVB-Bus: Polizei geht von terroristischem Motiv aus (2017-04-12)\n",
+ "Processing datasets/german-quotations/train/77697 - OPEC unter Druck : Ölpreis fällt weiter (2014-11-28).pretty.json\n",
+ "77697 - OPEC unter Druck : Ölpreis fällt weiter (2014-11-28)\n",
+ "Processing datasets/german-quotations/train/36600 - Eisbären sollen in den USA auf die Liste bedrohter Tierarten (2006-12-28).pretty.json\n",
+ "36600 - Eisbären sollen in den USA auf die Liste bedrohter Tierarten (2006-12-28)\n",
+ "Processing datasets/german-quotations/train/70721 - Pieper bittet nach Entgleisung um Entschuldigung (2011-12-09).pretty.json\n",
+ "70721 - Pieper bittet nach Entgleisung um Entschuldigung (2011-12-09)\n",
+ "Processing datasets/german-quotations/train/69813 - NASA-Forschungssatellit stürzt auf die Erde (2011-09-23).pretty.json\n",
+ "69813 - NASA-Forschungssatellit stürzt auf die Erde (2011-09-23)\n",
+ "Processing datasets/german-quotations/train/37530 - „Münstersche Zeitung“: Über Nacht komplette Redaktion ausgetauscht (2007-01-25).pretty.json\n",
+ "37530 - „Münstersche Zeitung“: Über Nacht komplette Redaktion ausgetauscht (2007-01-25)\n",
+ "Processing datasets/german-quotations/train/52796 - OSZE kritisiert Verlauf der Parlamentswahl in Georgien (2008-09-10).pretty.json\n",
+ "52796 - OSZE kritisiert Verlauf der Parlamentswahl in Georgien (2008-09-10)\n",
+ "Processing datasets/german-quotations/train/15794 - Dritte Nacht in Folge: Brandstiftungen in Bremen (2005-11-09).pretty.json\n",
+ "15794 - Dritte Nacht in Folge: Brandstiftungen in Bremen (2005-11-09)\n",
+ "Processing datasets/german-quotations/train/74342 - Expansion: DB übernimmt Busverkehr in Budapest (2012-11-30).pretty.json\n",
+ "74342 - Expansion: DB übernimmt Busverkehr in Budapest (2012-11-30)\n",
+ "Processing datasets/german-quotations/train/75759 - Loeschcontainer-Prism-Spähprogramms (2013-06-18).pretty.json\n",
+ "75759 - Loeschcontainer-Prism-Spähprogramms (2013-06-18)\n",
+ "Processing datasets/german-quotations/train/33494 - Mörder von Jennifer vor Gericht (2006-10-03).pretty.json\n",
+ "33494 - Mörder von Jennifer vor Gericht (2006-10-03)\n",
+ "Processing datasets/german-quotations/train/70915 - Ukraine: Berufungsgericht bestätigt hohe Haftstrafe für Timoschenko (2011-12-25).pretty.json\n",
+ "70915 - Ukraine: Berufungsgericht bestätigt hohe Haftstrafe für Timoschenko (2011-12-25)\n",
+ "Processing datasets/german-quotations/train/47722 - Schusswechsel an der israelisch-libanesischen Grenze (2008-02-04).pretty.json\n",
+ "47722 - Schusswechsel an der israelisch-libanesischen Grenze (2008-02-04)\n",
+ "Processing datasets/german-quotations/train/1959 - Ice Tigers an der Spitze (2004-12-17).pretty.json\n",
+ "1959 - Ice Tigers an der Spitze (2004-12-17)\n",
+ "Processing datasets/german-quotations/train/81786 - München-Hauptbahnhof: Sachse mit 6,52 Promille in Gewahrsam genommen (2017-10-18).pretty.json\n",
+ "81786 - München-Hauptbahnhof: Sachse mit 6,52 Promille in Gewahrsam genommen (2017-10-18)\n",
+ "Processing datasets/german-quotations/train/5456 - Türkische Chartermaschine musste auf dem Flughafen von Tel Aviv notlanden (2005-05-20).pretty.json\n",
+ "5456 - Türkische Chartermaschine musste auf dem Flughafen von Tel Aviv notlanden (2005-05-20)\n",
+ "Processing datasets/german-quotations/train/50016 - Niedersachsen: Proteste gegen Verordnungsentwurf zum Lehrerarbeitszeitkonto erfolgreich (2008-05-08).pretty.json\n",
+ "50016 - Niedersachsen: Proteste gegen Verordnungsentwurf zum Lehrerarbeitszeitkonto erfolgreich (2008-05-08)\n",
+ "Processing datasets/german-quotations/train/45124 - Schweres Unglück im Braunkohle-Kraftwerk Neurath (2007-10-26).pretty.json\n",
+ "45124 - Schweres Unglück im Braunkohle-Kraftwerk Neurath (2007-10-26)\n",
+ "Processing datasets/german-quotations/train/35012 - Pfaff entlässt bis zu 130 Mitarbeiter (2006-11-15).pretty.json\n",
+ "35012 - Pfaff entlässt bis zu 130 Mitarbeiter (2006-11-15)\n",
+ "Processing datasets/german-quotations/train/64109 - Eisenbahnerstreik in Belgien (2010-10-18).pretty.json\n",
+ "64109 - Eisenbahnerstreik in Belgien (2010-10-18)\n",
+ "Processing datasets/german-quotations/train/3814 - Umsatzeinbruch bei KarstadtQuelle zu Jahresbeginn (2005-03-09).pretty.json\n",
+ "3814 - Umsatzeinbruch bei KarstadtQuelle zu Jahresbeginn (2005-03-09)\n",
+ "Processing datasets/german-quotations/train/55189 - Somalische Piraten ertrinken mit Lösegeld (2009-01-12).pretty.json\n",
+ "55189 - Somalische Piraten ertrinken mit Lösegeld (2009-01-12)\n",
+ "Processing datasets/german-quotations/train/79034 - Chefredakteur der Schweizer Sonntagszeitung schreckt deutsche Medien auf (2015-05-27).pretty.json\n",
+ "79034 - Chefredakteur der Schweizer Sonntagszeitung schreckt deutsche Medien auf (2015-05-27)\n",
+ "Processing datasets/german-quotations/train/18979 - Schalke 04 hat einen neuen Trainer (2006-01-04).pretty.json\n",
+ "18979 - Schalke 04 hat einen neuen Trainer (2006-01-04)\n",
+ "Processing datasets/german-quotations/train/27782 - Weltnichtrauchertag 2006 (2006-06-09).pretty.json\n",
+ "27782 - Weltnichtrauchertag 2006 (2006-06-09)\n",
+ "Processing datasets/german-quotations/train/77730 - Leerer Koffer sorgt für Großeinsatz am Praterstern (2014-12-02).pretty.json\n",
+ "77730 - Leerer Koffer sorgt für Großeinsatz am Praterstern (2014-12-02)\n",
+ "Processing datasets/german-quotations/train/58907 - Polizei räumt Flüchtlingslager bei Calais (2009-09-22).pretty.json\n",
+ "58907 - Polizei räumt Flüchtlingslager bei Calais (2009-09-22)\n",
+ "Processing datasets/german-quotations/train/13726 - Seeschnecken: Sex ist eine Kostenfrage (2005-10-11).pretty.json\n",
+ "13726 - Seeschnecken: Sex ist eine Kostenfrage (2005-10-11)\n",
+ "Processing datasets/german-quotations/train/12438 - Olympiaturm in München nach Bombendrohung geräumt (2005-09-13).pretty.json\n",
+ "12438 - Olympiaturm in München nach Bombendrohung geräumt (2005-09-13)\n",
+ "Processing datasets/german-quotations/train/33262 - Thailands Militärjunta will nach Machtübergabe weiter Einfluss ausüben (2006-09-26).pretty.json\n",
+ "33262 - Thailands Militärjunta will nach Machtübergabe weiter Einfluss ausüben (2006-09-26)\n",
+ "Processing datasets/german-quotations/train/833 - 40. Jahrestag der Gründung von Stiftung Warentest (2004-12-04).pretty.json\n",
+ "833 - 40. Jahrestag der Gründung von Stiftung Warentest (2004-12-04)\n",
+ "Processing datasets/german-quotations/train/55796 - Wiener Linien – Warum sollten wir zahlen? (2009-02-07).pretty.json\n",
+ "55796 - Wiener Linien – Warum sollten wir zahlen? (2009-02-07)\n",
+ "Processing datasets/german-quotations/train/54578 - Kürzung der Pendlerpauschale ist verfassungswidrig (2008-12-09).pretty.json\n",
+ "54578 - Kürzung der Pendlerpauschale ist verfassungswidrig (2008-12-09)\n",
+ "Processing datasets/german-quotations/train/5943 - Kein EU-Referendum in Großbritannien (2005-06-06).pretty.json\n",
+ "5943 - Kein EU-Referendum in Großbritannien (2005-06-06)\n",
+ "Processing datasets/german-quotations/train/83439 - Erdrutsch in Chile: Mindestens sechs Tote bei Einsturz von zwei Häusern (2019-08-20).pretty.json\n",
+ "83439 - Erdrutsch in Chile: Mindestens sechs Tote bei Einsturz von zwei Häusern (2019-08-20)\n",
+ "Processing datasets/german-quotations/train/3212 - Hans-Joachim Watzke wird neuer Geschäftsführer von Borussia Dortmund (2005-02-15).pretty.json\n",
+ "3212 - Hans-Joachim Watzke wird neuer Geschäftsführer von Borussia Dortmund (2005-02-15)\n",
+ "Processing datasets/german-quotations/train/3681 - Riesiges Ozonloch über der nördlichen Erdkugel entdeckt (2005-03-03).pretty.json\n",
+ "3681 - Riesiges Ozonloch über der nördlichen Erdkugel entdeckt (2005-03-03)\n",
+ "Processing datasets/german-quotations/train/5014 - Weltgrößtes Containerschiff in Hamburg eingetroffen (2005-04-30).pretty.json\n",
+ "5014 - Weltgrößtes Containerschiff in Hamburg eingetroffen (2005-04-30)\n",
+ "Processing datasets/german-quotations/train/34501 - Lager von „Genreis“ der Sorte LL601 im Hamburger Hafen entdeckt (2006-10-30).pretty.json\n",
+ "34501 - Lager von „Genreis“ der Sorte LL601 im Hamburger Hafen entdeckt (2006-10-30)\n",
+ "Processing datasets/german-quotations/train/10367 - Franka Dietzsch wird Weltmeisterin im Diskuswerfen (2005-08-11).pretty.json\n",
+ "10367 - Franka Dietzsch wird Weltmeisterin im Diskuswerfen (2005-08-11)\n",
+ "Processing datasets/german-quotations/train/63107 - Fußball-WM: Kameruns Ausscheiden steht bereits fest (2010-06-27).pretty.json\n",
+ "63107 - Fußball-WM: Kameruns Ausscheiden steht bereits fest (2010-06-27)\n",
+ "Processing datasets/german-quotations/train/14183 - Saddam-Prozess in Bagdad begonnen (2005-10-19).pretty.json\n",
+ "14183 - Saddam-Prozess in Bagdad begonnen (2005-10-19)\n",
+ "Processing datasets/german-quotations/train/17789 - Sorge um Gedenktafel für abgestürzten „Rosinenbomber“ (2005-12-18).pretty.json\n",
+ "17789 - Sorge um Gedenktafel für abgestürzten „Rosinenbomber“ (2005-12-18)\n",
+ "Processing datasets/german-quotations/train/82411 - Polizei erhöht Kontrolldruck in Kaiserslauterer Innenstadt (2018-05-13).pretty.json\n",
+ "82411 - Polizei erhöht Kontrolldruck in Kaiserslauterer Innenstadt (2018-05-13)\n",
+ "Processing datasets/german-quotations/train/40316 - Thailand: König begnadigt wegen Majestätsbeleidigung verurteilten Schweizer (2007-04-12).pretty.json\n",
+ "40316 - Thailand: König begnadigt wegen Majestätsbeleidigung verurteilten Schweizer (2007-04-12)\n",
+ "Processing datasets/german-quotations/train/52199 - Pakistans Präsident Musharraf kündigt Rücktritt an (2008-08-18).pretty.json\n",
+ "52199 - Pakistans Präsident Musharraf kündigt Rücktritt an (2008-08-18)\n",
+ "Processing datasets/german-quotations/train/60138 - China: Fünf Todesurteile wegen Juli-Unruhen in der Provinz Xinjiang (2009-12-24).pretty.json\n",
+ "60138 - China: Fünf Todesurteile wegen Juli-Unruhen in der Provinz Xinjiang (2009-12-24)\n",
+ "Processing datasets/german-quotations/train/77719 - Hannover, Heidelberg und Mannheim sind jetzt „UNESCO Creative Cities“ (2014-12-03).pretty.json\n",
+ "77719 - Hannover, Heidelberg und Mannheim sind jetzt „UNESCO Creative Cities“ (2014-12-03)\n",
+ "Processing datasets/german-quotations/train/42688 - Al Qaida droht Vergeltungsschläge für Rushdie-Ehrung an (2007-07-11).pretty.json\n",
+ "42688 - Al Qaida droht Vergeltungsschläge für Rushdie-Ehrung an (2007-07-11)\n",
+ "Processing datasets/german-quotations/train/30570 - Echtheit des Wracks von „Graf Zeppelin“ bestätigt (2006-07-28).pretty.json\n",
+ "30570 - Echtheit des Wracks von „Graf Zeppelin“ bestätigt (2006-07-28)\n",
+ "Processing datasets/german-quotations/train/55554 - Kirsten Gillibrand zur Nachfolgerin Hillary Clintons als Senatorin ernannt (2009-01-26).pretty.json\n",
+ "55554 - Kirsten Gillibrand zur Nachfolgerin Hillary Clintons als Senatorin ernannt (2009-01-26)\n",
+ "Processing datasets/german-quotations/train/6392 - Florida: Notlandung auf dreispuriger Straße (2005-06-17).pretty.json\n",
+ "6392 - Florida: Notlandung auf dreispuriger Straße (2005-06-17)\n",
+ "Processing datasets/german-quotations/train/28750 - New Orleans Bürgermeister forderte Nationalgarde zur Unterstützung an (2006-06-22).pretty.json\n",
+ "28750 - New Orleans Bürgermeister forderte Nationalgarde zur Unterstützung an (2006-06-22)\n",
+ "Processing datasets/german-quotations/train/72173 - Polen: Erster Auslandsbesuch Gaucks (2012-03-31).pretty.json\n",
+ "72173 - Polen: Erster Auslandsbesuch Gaucks (2012-03-31)\n",
+ "Processing datasets/german-quotations/train/21465 - Dokumentarfilm versucht, Licht in das Geheimnis des Bermudadreiecks zu bringen (2006-02-05).pretty.json\n",
+ "21465 - Dokumentarfilm versucht, Licht in das Geheimnis des Bermudadreiecks zu bringen (2006-02-05)\n",
+ "Processing datasets/german-quotations/train/82713 - Merkel kündigt ihren Abschied als CDU-Chefin an (2018-10-31).pretty.json\n",
+ "82713 - Merkel kündigt ihren Abschied als CDU-Chefin an (2018-10-31)\n",
+ "Processing datasets/german-quotations/train/5954 - Pride of America mit Verspätung an Reederei übergeben (2005-06-07).pretty.json\n",
+ "5954 - Pride of America mit Verspätung an Reederei übergeben (2005-06-07)\n",
+ "Processing datasets/german-quotations/train/68296 - Situation vor Unabhängigkeit Südsudans gespannt – Kämpfe in Ölregion (2011-05-23).pretty.json\n",
+ "68296 - Situation vor Unabhängigkeit Südsudans gespannt – Kämpfe in Ölregion (2011-05-23)\n",
+ "Processing datasets/german-quotations/train/40144 - WHO empfiehlt Beschneidung von Männern (2007-04-08).pretty.json\n",
+ "40144 - WHO empfiehlt Beschneidung von Männern (2007-04-08)\n",
+ "Processing datasets/german-quotations/train/49483 - Olympischer Fackellauf in Paris endet im Chaos (2008-04-08).pretty.json\n",
+ "49483 - Olympischer Fackellauf in Paris endet im Chaos (2008-04-08)\n",
+ "Processing datasets/german-quotations/train/54361 - Mehrheit der Grönländer spricht sich für mehr Unabhängigkeit von Dänemark aus (2008-11-27).pretty.json\n",
+ "54361 - Mehrheit der Grönländer spricht sich für mehr Unabhängigkeit von Dänemark aus (2008-11-27)\n",
+ "Processing datasets/german-quotations/train/62831 - England: Taxifahrer richtet Blutbad an – 13 Tote (2010-06-03).pretty.json\n",
+ "62831 - England: Taxifahrer richtet Blutbad an – 13 Tote (2010-06-03)\n",
+ "Processing datasets/german-quotations/train/75684 - Fairphone: Nachhaltiges Smartphone geht in Produktion (2013-06-08).pretty.json\n",
+ "75684 - Fairphone: Nachhaltiges Smartphone geht in Produktion (2013-06-08)\n",
+ "Processing datasets/german-quotations/train/48246 - EU will illegale Downloads mit kommerziellen Absichten unter Strafe stellen (2008-02-23).pretty.json\n",
+ "48246 - EU will illegale Downloads mit kommerziellen Absichten unter Strafe stellen (2008-02-23)\n",
+ "Processing datasets/german-quotations/train/80961 - Anschlag auf Buskonvoi in Syrien international geächtet (2017-04-17).pretty.json\n",
+ "80961 - Anschlag auf Buskonvoi in Syrien international geächtet (2017-04-17)\n",
+ "Processing datasets/german-quotations/train/50164 - Myanmar: Die Arbeit von Hilfsorganisationen wird weiter behindert (2008-05-14).pretty.json\n",
+ "50164 - Myanmar: Die Arbeit von Hilfsorganisationen wird weiter behindert (2008-05-14)\n",
+ "Processing datasets/german-quotations/train/48690 - Deutschland: Streiks im öffentlichen Dienst – Mittwoch auch Flughäfen betroffen (2008-03-07).pretty.json\n",
+ "48690 - Deutschland: Streiks im öffentlichen Dienst – Mittwoch auch Flughäfen betroffen (2008-03-07)\n",
+ "Processing datasets/german-quotations/train/79138 - Großbritannien plant Sperrung von Internetdiensten (2015-07-10).pretty.json\n",
+ "79138 - Großbritannien plant Sperrung von Internetdiensten (2015-07-10)\n",
+ "Processing datasets/german-quotations/train/66967 - London: Alkoholentzug eines Dreijährigen (2011-03-15).pretty.json\n",
+ "66967 - London: Alkoholentzug eines Dreijährigen (2011-03-15)\n",
+ "Processing datasets/german-quotations/train/40335 - Kritik am geplanten Online-Zugriff der Polizei auf digitalisierte Passfotos (2007-04-12).pretty.json\n",
+ "40335 - Kritik am geplanten Online-Zugriff der Polizei auf digitalisierte Passfotos (2007-04-12)\n",
+ "Processing datasets/german-quotations/train/60990 - 130. Shuttle Mission: Raumfähre Endeavour zur Internationalen Raumstation gestartet (2010-02-08).pretty.json\n",
+ "60990 - 130. Shuttle Mission: Raumfähre Endeavour zur Internationalen Raumstation gestartet (2010-02-08)\n",
+ "Processing datasets/german-quotations/train/15578 - Zwölfter Spieltag der Fußball-Bundesligasaison 2005-06 (2005-11-05).pretty.json\n",
+ "15578 - Zwölfter Spieltag der Fußball-Bundesligasaison 2005-06 (2005-11-05)\n",
+ "Processing datasets/german-quotations/train/71723 - Verdeckte Ermittler des FBI verhindern Anschlag auf das Kapitol (2012-02-19).pretty.json\n",
+ "71723 - Verdeckte Ermittler des FBI verhindern Anschlag auf das Kapitol (2012-02-19)\n",
+ "Processing datasets/german-quotations/train/51344 - 34-jähriger Balver wegen versuchten Totschlags in Untersuchungshaft (2008-06-28).pretty.json\n",
+ "51344 - 34-jähriger Balver wegen versuchten Totschlags in Untersuchungshaft (2008-06-28)\n",
+ "Processing datasets/german-quotations/train/37427 - Unbekannter besucht jährlich Edgar Allan Poes Grab (2007-01-22).pretty.json\n",
+ "37427 - Unbekannter besucht jährlich Edgar Allan Poes Grab (2007-01-22)\n",
+ "Processing datasets/german-quotations/train/73781 - Wurde Jassir Arafat vergiftet? Französische Justiz ermittelt (2012-09-02).pretty.json\n",
+ "73781 - Wurde Jassir Arafat vergiftet? Französische Justiz ermittelt (2012-09-02)\n",
+ "Processing datasets/german-quotations/train/51963 - Hamburg: Mitglieder der GRÜNEN zur ödp gewechselt (2008-08-07).pretty.json\n",
+ "51963 - Hamburg: Mitglieder der GRÜNEN zur ödp gewechselt (2008-08-07)\n",
+ "Processing datasets/german-quotations/train/21815 - Steve Fossett: Benzinverlust beim Start des Rekordflugversuchs beunruhigt Kontrollpersonal (2006-02-10).pretty.json\n",
+ "21815 - Steve Fossett: Benzinverlust beim Start des Rekordflugversuchs beunruhigt Kontrollpersonal (2006-02-10)\n",
+ "Processing datasets/german-quotations/train/40724 - Phil Spector wegen Mordes vor Gericht (2007-05-01).pretty.json\n",
+ "40724 - Phil Spector wegen Mordes vor Gericht (2007-05-01)\n",
+ "Processing datasets/german-quotations/train/5248 - Charterflugzeug in Australien abgestürzt (2005-05-07).pretty.json\n",
+ "5248 - Charterflugzeug in Australien abgestürzt (2005-05-07)\n",
+ "Processing datasets/german-quotations/train/60485 - Kartellamt in Deutschland: Erneut Razzien wegen des Verdachts auf illegale Preisabsprachen (2010-01-14).pretty.json\n",
+ "60485 - Kartellamt in Deutschland: Erneut Razzien wegen des Verdachts auf illegale Preisabsprachen (2010-01-14)\n",
+ "Processing datasets/german-quotations/train/33957 - Türkischer Hochschulratspräsident gab französische Auszeichnung zurück (2006-10-17).pretty.json\n",
+ "33957 - Türkischer Hochschulratspräsident gab französische Auszeichnung zurück (2006-10-17)\n",
+ "Processing datasets/german-quotations/train/20089 - Hamburg: Betreiberwechsel in der Luftrettung (2006-01-15).pretty.json\n",
+ "20089 - Hamburg: Betreiberwechsel in der Luftrettung (2006-01-15)\n",
+ "Processing datasets/german-quotations/train/30965 - Überschwemmungen in Äthiopien fordern mehr als 100 Tote (2006-08-07).pretty.json\n",
+ "30965 - Überschwemmungen in Äthiopien fordern mehr als 100 Tote (2006-08-07)\n",
+ "Processing datasets/german-quotations/train/3434 - Giftmüllskandal in Basel? (2005-02-24).pretty.json\n",
+ "3434 - Giftmüllskandal in Basel? (2005-02-24)\n",
+ "Processing datasets/german-quotations/train/4430 - Neuer Parlamentspräsident im Irak (2005-04-03).pretty.json\n",
+ "4430 - Neuer Parlamentspräsident im Irak (2005-04-03)\n",
+ "Processing datasets/german-quotations/train/13100 - Laut Stiftung Warentest sind viele alternative Heilverfahren unwirksam (2005-09-29).pretty.json\n",
+ "13100 - Laut Stiftung Warentest sind viele alternative Heilverfahren unwirksam (2005-09-29)\n",
+ "Processing datasets/german-quotations/train/2840 - Papier hält NPD-Verbot für möglich (2005-01-29).pretty.json\n",
+ "2840 - Papier hält NPD-Verbot für möglich (2005-01-29)\n",
+ "Processing datasets/german-quotations/train/71200 - Rolls Royce bricht Verkaufsrekord (2012-01-10).pretty.json\n",
+ "71200 - Rolls Royce bricht Verkaufsrekord (2012-01-10)\n",
+ "Processing datasets/german-quotations/train/43535 - MSV Duisburg siegt in Dortmund mit 3:1 (2007-08-13).pretty.json\n",
+ "43535 - MSV Duisburg siegt in Dortmund mit 3:1 (2007-08-13)\n",
+ "Processing datasets/german-quotations/train/56876 - Mehrere Tote bei Amoklauf im Pinelake-Altersheim in Carthage (2009-03-30).pretty.json\n",
+ "56876 - Mehrere Tote bei Amoklauf im Pinelake-Altersheim in Carthage (2009-03-30)\n",
+ "Processing datasets/german-quotations/train/48539 - Mehr als 1.000 Messer in Laguiole mutmaßlich gestohlen (2008-02-29).pretty.json\n",
+ "48539 - Mehr als 1.000 Messer in Laguiole mutmaßlich gestohlen (2008-02-29)\n",
+ "Processing datasets/german-quotations/train/64977 - Deutschland: Gewerkschaften kündigen Warnstreiks gegen RWE an (2010-12-05).pretty.json\n",
+ "64977 - Deutschland: Gewerkschaften kündigen Warnstreiks gegen RWE an (2010-12-05)\n",
+ "Processing datasets/german-quotations/train/63385 - Flugzeugabsturz in Alaska fordert fünf Opfer (2010-08-11).pretty.json\n",
+ "63385 - Flugzeugabsturz in Alaska fordert fünf Opfer (2010-08-11)\n",
+ "Processing datasets/german-quotations/train/70140 - Gaddafi in der Sahara beerdigt (2011-10-25).pretty.json\n",
+ "70140 - Gaddafi in der Sahara beerdigt (2011-10-25)\n",
+ "Processing datasets/german-quotations/train/39262 - Lateinamerikanische Migranten sandten im letzten Jahr 62 Milliarden Dollar in ihre Heimat (2007-03-19).pretty.json\n",
+ "39262 - Lateinamerikanische Migranten sandten im letzten Jahr 62 Milliarden Dollar in ihre Heimat (2007-03-19)\n",
+ "Processing datasets/german-quotations/train/56063 - Designierter Linzer Weihbischof Wagner verzichtet auf Amt (2009-02-16).pretty.json\n",
+ "56063 - Designierter Linzer Weihbischof Wagner verzichtet auf Amt (2009-02-16)\n",
+ "Processing datasets/german-quotations/train/71593 - Alstereisvergnügen in Hamburg lockt zahlreiche Besucher an (2012-02-14).pretty.json\n",
+ "71593 - Alstereisvergnügen in Hamburg lockt zahlreiche Besucher an (2012-02-14)\n",
+ "Processing datasets/german-quotations/train/73882 - Ungarn: Roma-Gardechef Ferenc Bago festgenommen (2012-09-07).pretty.json\n",
+ "73882 - Ungarn: Roma-Gardechef Ferenc Bago festgenommen (2012-09-07)\n",
+ "Processing datasets/german-quotations/train/38180 - EU-Gerichtsgutachter: VW-Gesetz verstößt gegen Europarecht (2007-02-13).pretty.json\n",
+ "38180 - EU-Gerichtsgutachter: VW-Gesetz verstößt gegen Europarecht (2007-02-13)\n",
+ "Processing datasets/german-quotations/train/9837 - Adidas kauft Reebok (2005-08-03).pretty.json\n",
+ "9837 - Adidas kauft Reebok (2005-08-03)\n",
+ "Processing datasets/german-quotations/train/40419 - Frankfurt: Mindestens eintausend Menschen demonstrieren gegen den „Überwachungswahn“ (2007-04-16).pretty.json\n",
+ "40419 - Frankfurt: Mindestens eintausend Menschen demonstrieren gegen den „Überwachungswahn“ (2007-04-16)\n",
+ "Processing datasets/german-quotations/train/46350 - 26-Jähriger überfuhr Fahrradfahrer in München: 18 Monate Haft (2007-12-20).pretty.json\n",
+ "46350 - 26-Jähriger überfuhr Fahrradfahrer in München: 18 Monate Haft (2007-12-20)\n",
+ "Processing datasets/german-quotations/train/64227 - USA: Republikaner wollen Subventionen für öffentlichen Rundfunk streichen (2010-10-23).pretty.json\n",
+ "64227 - USA: Republikaner wollen Subventionen für öffentlichen Rundfunk streichen (2010-10-23)\n",
+ "Processing datasets/german-quotations/train/14002 - Rumänien: Verdacht auf Vogelgrippe bestätigt (2005-10-16).pretty.json\n",
+ "14002 - Rumänien: Verdacht auf Vogelgrippe bestätigt (2005-10-16)\n",
+ "Processing datasets/german-quotations/train/52082 - Eröffnungsfeier in Peking offenbar manipuliert (2008-08-13).pretty.json\n",
+ "52082 - Eröffnungsfeier in Peking offenbar manipuliert (2008-08-13)\n",
+ "Processing datasets/german-quotations/train/74210 - Erinnerungsstätte an Hexenprozesse in Schottland (2012-10-30).pretty.json\n",
+ "74210 - Erinnerungsstätte an Hexenprozesse in Schottland (2012-10-30)\n",
+ "Processing datasets/german-quotations/train/22808 - Jean Todt: Der Ferrari-Teamchef wurde 60 (2006-03-02).pretty.json\n",
+ "22808 - Jean Todt: Der Ferrari-Teamchef wurde 60 (2006-03-02)\n",
+ "Processing datasets/german-quotations/train/1034 - BGH erlässt Haftbefehl gegen drei mutmaßliche irakische Terroristen (2004-12-05).pretty.json\n",
+ "1034 - BGH erlässt Haftbefehl gegen drei mutmaßliche irakische Terroristen (2004-12-05)\n",
+ "Processing datasets/german-quotations/train/60146 - Studenten erhöhen Rekordsumme bei weihnachtlicher Benefizveranstaltung (2009-12-25).pretty.json\n",
+ "60146 - Studenten erhöhen Rekordsumme bei weihnachtlicher Benefizveranstaltung (2009-12-25)\n",
+ "Processing datasets/german-quotations/train/1229 - Geiselnahme in Saudi-Arabien (2004-12-06).pretty.json\n",
+ "1229 - Geiselnahme in Saudi-Arabien (2004-12-06)\n",
+ "Processing datasets/german-quotations/train/14704 - Michael Ballack ist Kandidat bei der Wahl zu Europas Fußballer des Jahres (2005-10-25).pretty.json\n",
+ "14704 - Michael Ballack ist Kandidat bei der Wahl zu Europas Fußballer des Jahres (2005-10-25)\n",
+ "Processing datasets/german-quotations/train/27912 - Weltkonferenz im Ausland lebender Griechen in Athen (2006-06-02).pretty.json\n",
+ "27912 - Weltkonferenz im Ausland lebender Griechen in Athen (2006-06-02)\n",
+ "Processing datasets/german-quotations/train/9019 - Horst Köhler lässt den Bundestag auflösen (2005-07-21).pretty.json\n",
+ "9019 - Horst Köhler lässt den Bundestag auflösen (2005-07-21)\n",
+ "Processing datasets/german-quotations/train/2464 - Emissionshandel in der Europäischen Union beginnt (2005-01-01).pretty.json\n",
+ "2464 - Emissionshandel in der Europäischen Union beginnt (2005-01-01)\n",
+ "Processing datasets/german-quotations/train/75575 - Fracking gefährdet Wasserversorgung der Bierbrauer (2013-05-30).pretty.json\n",
+ "75575 - Fracking gefährdet Wasserversorgung der Bierbrauer (2013-05-30)\n",
+ "Processing datasets/german-quotations/train/76253 - Oliver Sebrantke zum dritten Mal Sieger beim Marathon in Bremen (2013-10-07).pretty.json\n",
+ "76253 - Oliver Sebrantke zum dritten Mal Sieger beim Marathon in Bremen (2013-10-07)\n",
+ "Processing datasets/german-quotations/train/45362 - Winterwelt am Potsdamer Platz ist eröffnet (2007-11-05).pretty.json\n",
+ "45362 - Winterwelt am Potsdamer Platz ist eröffnet (2007-11-05)\n",
+ "Processing datasets/german-quotations/train/68853 - Mordversuch in München: Eine Beziehung war 20-jähriger Schülerin nicht genug (2011-06-27).pretty.json\n",
+ "68853 - Mordversuch in München: Eine Beziehung war 20-jähriger Schülerin nicht genug (2011-06-27)\n",
+ "Processing datasets/german-quotations/train/39451 - Zehn Tote bei Brand in Moskauer Nachtclub (2007-03-26).pretty.json\n",
+ "39451 - Zehn Tote bei Brand in Moskauer Nachtclub (2007-03-26)\n",
+ "Processing datasets/german-quotations/train/53748 - Deutsche Big Brother Awards 2008 in Bielefeld verliehen (2008-10-27).pretty.json\n",
+ "53748 - Deutsche Big Brother Awards 2008 in Bielefeld verliehen (2008-10-27)\n",
+ "Processing datasets/german-quotations/train/3882 - Keine Dividende bei Beate Uhse (2005-03-11).pretty.json\n",
+ "3882 - Keine Dividende bei Beate Uhse (2005-03-11)\n",
+ "Processing datasets/german-quotations/train/62691 - Oderhochwasser erreicht Brandenburg (2010-05-26).pretty.json\n",
+ "62691 - Oderhochwasser erreicht Brandenburg (2010-05-26)\n",
+ "Processing datasets/german-quotations/train/25328 - Italien: Mafiaboss Bernardo Provenzano verhaftet (2006-04-12).pretty.json\n",
+ "25328 - Italien: Mafiaboss Bernardo Provenzano verhaftet (2006-04-12)\n",
+ "Processing datasets/german-quotations/train/2028 - Luftschiffhalle wird zum Urlaubsparadies (2004-12-19).pretty.json\n",
+ "2028 - Luftschiffhalle wird zum Urlaubsparadies (2004-12-19)\n",
+ "Processing datasets/german-quotations/train/6385 - Regierungsgebäude in Kirgisistan besetzt (2005-06-17).pretty.json\n",
+ "6385 - Regierungsgebäude in Kirgisistan besetzt (2005-06-17)\n",
+ "Processing datasets/german-quotations/train/54054 - BVG setzt Schutzfolien gegen Vandalismus ein (2008-11-16).pretty.json\n",
+ "54054 - BVG setzt Schutzfolien gegen Vandalismus ein (2008-11-16)\n",
+ "Processing datasets/german-quotations/train/26203 - Amyotrophische Lateralsklerose: Risiko kann halbiert werden (2006-05-04).pretty.json\n",
+ "26203 - Amyotrophische Lateralsklerose: Risiko kann halbiert werden (2006-05-04)\n",
+ "Processing datasets/german-quotations/train/68535 - Non liquet – Kachelmann freigesprochen (2011-06-04).pretty.json\n",
+ "68535 - Non liquet – Kachelmann freigesprochen (2011-06-04)\n",
+ "Processing datasets/german-quotations/train/52151 - Steigende Fluggastzahlen für Billigflieger Ryanair am Standort Bremen (2008-08-15).pretty.json\n",
+ "52151 - Steigende Fluggastzahlen für Billigflieger Ryanair am Standort Bremen (2008-08-15)\n",
+ "Processing datasets/german-quotations/train/28062 - Alan García gewinnt die Präsidentenwahl in Peru (2006-06-05).pretty.json\n",
+ "28062 - Alan García gewinnt die Präsidentenwahl in Peru (2006-06-05)\n",
+ "Processing datasets/german-quotations/train/13741 - Astronauten für „Shenzhou 6“ benannt - Start wird erstmals live übertragen (2005-10-11).pretty.json\n",
+ "13741 - Astronauten für „Shenzhou 6“ benannt - Start wird erstmals live übertragen (2005-10-11)\n",
+ "Processing datasets/german-quotations/train/77429 - Afghanistan: „Während der Wahl wurde von allen Seiten betrogen“ (2014-09-22).pretty.json\n",
+ "77429 - Afghanistan: „Während der Wahl wurde von allen Seiten betrogen“ (2014-09-22)\n",
+ "Processing datasets/german-quotations/train/12611 - Dritte Notlandung eines Flugzeuges in Italien innerhalb weniger Wochen (2005-09-18).pretty.json\n",
+ "12611 - Dritte Notlandung eines Flugzeuges in Italien innerhalb weniger Wochen (2005-09-18)\n",
+ "Processing datasets/german-quotations/train/35026 - Österreich: Zusammenstoß zwischen Hubschrauber und Kleinflugzeug (2006-11-15).pretty.json\n",
+ "35026 - Österreich: Zusammenstoß zwischen Hubschrauber und Kleinflugzeug (2006-11-15)\n",
+ "Processing datasets/german-quotations/train/82834 - Katastrophen-Warnungen bundesweit verfügbar (2019-02-07).pretty.json\n",
+ "82834 - Katastrophen-Warnungen bundesweit verfügbar (2019-02-07)\n",
+ "Processing datasets/german-quotations/train/71936 - Kony 2012 – Kritik an den Filmemachern (2012-03-11).pretty.json\n",
+ "71936 - Kony 2012 – Kritik an den Filmemachern (2012-03-11)\n",
+ "Processing datasets/german-quotations/train/66614 - SPD-regierte Bundesländer und Grüne bringen Laufzeitverlängerung für Atomkraftwerke vor das Bundesverfassungsgericht (2011-02-28).pretty.json\n",
+ "66614 - SPD-regierte Bundesländer und Grüne bringen Laufzeitverlängerung für Atomkraftwerke vor das Bundesverfassungsgericht (2011-02-28)\n",
+ "Processing datasets/german-quotations/train/23441 - Aus in der Champions League: FC Bayern München im Achtelfinale ausgeschieden (2006-03-09).pretty.json\n",
+ "23441 - Aus in der Champions League: FC Bayern München im Achtelfinale ausgeschieden (2006-03-09)\n",
+ "Processing datasets/german-quotations/train/79492 - B.Z. erklärt: Der typische Berliner Linksradikale wohnt noch daheim bei Mutti (2016-01-31).pretty.json\n",
+ "79492 - B.Z. erklärt: Der typische Berliner Linksradikale wohnt noch daheim bei Mutti (2016-01-31)\n",
+ "Processing datasets/german-quotations/train/72918 - Japan: 64-jähriger Boss einer Yakuza-Bande kommt gegen 15 Millionen Euro Kaution frei (2012-06-12).pretty.json\n",
+ "72918 - Japan: 64-jähriger Boss einer Yakuza-Bande kommt gegen 15 Millionen Euro Kaution frei (2012-06-12)\n",
+ "Processing datasets/german-quotations/train/61190 - Afghanistan: Auch zivile Opfer bei Militäroffensive in der Provinz Helmand (2010-02-16).pretty.json\n",
+ "61190 - Afghanistan: Auch zivile Opfer bei Militäroffensive in der Provinz Helmand (2010-02-16)\n",
+ "Processing datasets/german-quotations/train/43924 - Unerwartete Wende im Lokführer-Tarifstreit (2007-08-30).pretty.json\n",
+ "43924 - Unerwartete Wende im Lokführer-Tarifstreit (2007-08-30)\n",
+ "Processing datasets/german-quotations/train/66791 - Kairo: Tote und Verletzte bei Kämpfen zwischen Muslimen und koptischen Christen (2011-03-09).pretty.json\n",
+ "66791 - Kairo: Tote und Verletzte bei Kämpfen zwischen Muslimen und koptischen Christen (2011-03-09)\n",
+ "Processing datasets/german-quotations/train/70712 - München: Drei Polizeifahrzeuge gehen in Flammen auf (2011-12-08).pretty.json\n",
+ "70712 - München: Drei Polizeifahrzeuge gehen in Flammen auf (2011-12-08)\n",
+ "Processing datasets/german-quotations/train/69157 - Abschiedsmission der Raumfähre Atlantis beendet (2011-07-23).pretty.json\n",
+ "69157 - Abschiedsmission der Raumfähre Atlantis beendet (2011-07-23)\n",
+ "Processing datasets/german-quotations/train/43595 - Sechsfacher Mord in Duisburg – Mafia-Hintergrund vermutet (2007-08-15).pretty.json\n",
+ "43595 - Sechsfacher Mord in Duisburg – Mafia-Hintergrund vermutet (2007-08-15)\n",
+ "Processing datasets/german-quotations/train/21319 - „Deus caritas est“ in dritter Auflage erschienen (2006-02-02).pretty.json\n",
+ "21319 - „Deus caritas est“ in dritter Auflage erschienen (2006-02-02)\n",
+ "Processing datasets/german-quotations/train/80888 - Gibt es Frieden zu Ostern in Syrien? (2017-04-11).pretty.json\n",
+ "80888 - Gibt es Frieden zu Ostern in Syrien? (2017-04-11)\n",
+ "Processing datasets/german-quotations/train/12953 - Hans Küng zu Besuch bei Papst Benedikt XVI. (2005-09-26).pretty.json\n",
+ "12953 - Hans Küng zu Besuch bei Papst Benedikt XVI. (2005-09-26)\n",
+ "Processing datasets/german-quotations/train/47872 - Neunzehnter Spieltag der Fußball-Bundesliga 2007-08 (2008-02-11).pretty.json\n",
+ "47872 - Neunzehnter Spieltag der Fußball-Bundesliga 2007-08 (2008-02-11)\n",
+ "Processing datasets/german-quotations/train/72414 - Oberpfalz: Polizei beendet familiäre Geiselnahme unblutig (2012-04-16).pretty.json\n",
+ "72414 - Oberpfalz: Polizei beendet familiäre Geiselnahme unblutig (2012-04-16)\n",
+ "Processing datasets/german-quotations/train/53890 - Über 120 Tote durch Hochwasser in Vietnam und China (2008-11-05).pretty.json\n",
+ "53890 - Über 120 Tote durch Hochwasser in Vietnam und China (2008-11-05)\n",
+ "Processing datasets/german-quotations/train/64897 - Parlamentswahl in Moldawien: weiterhin keine klaren Mehrheiten (2010-11-30).pretty.json\n",
+ "64897 - Parlamentswahl in Moldawien: weiterhin keine klaren Mehrheiten (2010-11-30)\n",
+ "Processing datasets/german-quotations/train/45940 - Deutscher Wetterdienst gab für gestern eine Wind--Sturmwarnung für das gesamte Bundesgebiet heraus (2007-12-03).pretty.json\n",
+ "45940 - Deutscher Wetterdienst gab für gestern eine Wind--Sturmwarnung für das gesamte Bundesgebiet heraus (2007-12-03)\n",
+ "Processing datasets/german-quotations/train/1212 - IAEA will iranische Militäranlagen nicht untersuchen (2004-12-04).pretty.json\n",
+ "1212 - IAEA will iranische Militäranlagen nicht untersuchen (2004-12-04)\n",
+ "Processing datasets/german-quotations/train/50415 - Ehemaliger Vizepräsident der Demokratischen Republik Kongo, Jean-Pierre Bemba, in Belgien verhaftet (2008-05-25).pretty.json\n",
+ "50415 - Ehemaliger Vizepräsident der Demokratischen Republik Kongo, Jean-Pierre Bemba, in Belgien verhaftet (2008-05-25)\n",
+ "Processing datasets/german-quotations/train/81799 - Korruptionsverdacht bei rheinland-pfälzischer Straßenbaubehörde, Behördenleiter begeht Suizid (2017-10-20).pretty.json\n",
+ "81799 - Korruptionsverdacht bei rheinland-pfälzischer Straßenbaubehörde, Behördenleiter begeht Suizid (2017-10-20)\n",
+ "Processing datasets/german-quotations/train/83783 - Handball-EM: Deutschland gewinnt gegen Weißrussland, Österreich unterliegt Kroatien (2020-01-16).pretty.json\n",
+ "83783 - Handball-EM: Deutschland gewinnt gegen Weißrussland, Österreich unterliegt Kroatien (2020-01-16)\n",
+ "Processing datasets/german-quotations/train/53754 - Großbrand zerstört Möbellager in Hermeskeil (2008-10-27).pretty.json\n",
+ "53754 - Großbrand zerstört Möbellager in Hermeskeil (2008-10-27)\n",
+ "Processing datasets/german-quotations/train/18645 - Verhandlungen über die Freilassung von Jürgen Chrobog und seiner Familie (2005-12-29).pretty.json\n",
+ "18645 - Verhandlungen über die Freilassung von Jürgen Chrobog und seiner Familie (2005-12-29)\n",
+ "Processing datasets/german-quotations/train/59510 - Schläfer des Kalten Krieges in Bremen entdeckt? (2009-10-29).pretty.json\n",
+ "59510 - Schläfer des Kalten Krieges in Bremen entdeckt? (2009-10-29)\n",
+ "Processing datasets/german-quotations/train/5178 - Der Papst-Golf schlägt alle Rekorde (2005-05-05).pretty.json\n",
+ "5178 - Der Papst-Golf schlägt alle Rekorde (2005-05-05)\n",
+ "Processing datasets/german-quotations/train/64872 - Wulff: Deutschland trägt Verantwortung für das Existenzrecht Israels (2010-11-28).pretty.json\n",
+ "64872 - Wulff: Deutschland trägt Verantwortung für das Existenzrecht Israels (2010-11-28)\n",
+ "Processing datasets/german-quotations/train/24349 - CDU-Spitzenkandidat Christoph Böhr von allen Ämtern zurückgetreten (2006-03-27).pretty.json\n",
+ "24349 - CDU-Spitzenkandidat Christoph Böhr von allen Ämtern zurückgetreten (2006-03-27)\n",
+ "Processing datasets/german-quotations/train/59262 - Herta Müller erhält den Nobelpreis für Literatur (2009-10-08).pretty.json\n",
+ "59262 - Herta Müller erhält den Nobelpreis für Literatur (2009-10-08)\n",
+ "Processing datasets/german-quotations/train/61951 - Frachter am Great Barrrier Reef droht auseinanderzubrechen (2010-04-06).pretty.json\n",
+ "61951 - Frachter am Great Barrrier Reef droht auseinanderzubrechen (2010-04-06)\n",
+ "Processing datasets/german-quotations/train/71599 - Nina Hagen und Tochter Cosma Shiva ziehen aufs Land (2012-02-13).pretty.json\n",
+ "71599 - Nina Hagen und Tochter Cosma Shiva ziehen aufs Land (2012-02-13)\n",
+ "Processing datasets/german-quotations/train/71772 - Serbien wird den Status eines EU-Beitrittskandidaten erhalten (2012-02-25).pretty.json\n",
+ "71772 - Serbien wird den Status eines EU-Beitrittskandidaten erhalten (2012-02-25)\n",
+ "Processing datasets/german-quotations/train/35769 - Schneesturm im Mittleren Westen der USA (2006-12-03).pretty.json\n",
+ "35769 - Schneesturm im Mittleren Westen der USA (2006-12-03)\n",
+ "Processing datasets/german-quotations/train/14879 - Erstmals Zapfenstreich zum Bundeswehr-Jubiläum vor dem Berliner Reichstag (2005-10-27).pretty.json\n",
+ "14879 - Erstmals Zapfenstreich zum Bundeswehr-Jubiläum vor dem Berliner Reichstag (2005-10-27)\n",
+ "Processing datasets/german-quotations/train/66793 - Gouverneur des US-Bundesstaates Illinois unterzeichnet Gesetz zur Abschaffung der Todesstrafe (2011-03-09).pretty.json\n",
+ "66793 - Gouverneur des US-Bundesstaates Illinois unterzeichnet Gesetz zur Abschaffung der Todesstrafe (2011-03-09)\n",
+ "Processing datasets/german-quotations/train/37033 - Nach 25 Jahren Anklage wegen Sexualmordes an 16-Jähriger (2007-01-11).pretty.json\n",
+ "37033 - Nach 25 Jahren Anklage wegen Sexualmordes an 16-Jähriger (2007-01-11)\n",
+ "Processing datasets/german-quotations/train/19560 - Flugverbot für peruanische Fluggesellschaft TANS (2006-01-09).pretty.json\n",
+ "19560 - Flugverbot für peruanische Fluggesellschaft TANS (2006-01-09)\n",
+ "Processing datasets/german-quotations/train/58343 - Porsche-Übernahme durch die Volkswagen AG perfekt – Wiedeking tritt zurück (2009-07-24).pretty.json\n",
+ "58343 - Porsche-Übernahme durch die Volkswagen AG perfekt – Wiedeking tritt zurück (2009-07-24)\n",
+ "Processing datasets/german-quotations/train/72767 - Erdbeben in Norditalien: sechs Tote und erhebliche Schäden an Kulturdenkmälern (2012-05-21).pretty.json\n",
+ "72767 - Erdbeben in Norditalien: sechs Tote und erhebliche Schäden an Kulturdenkmälern (2012-05-21)\n",
+ "Processing datasets/german-quotations/train/83589 - Super Bowl LIV: Halbzeitshow mit Jennifer Lopez und Shakira (2019-09-29).pretty.json\n",
+ "83589 - Super Bowl LIV: Halbzeitshow mit Jennifer Lopez und Shakira (2019-09-29)\n",
+ "Processing datasets/german-quotations/train/24558 - Verfahren wegen Körperverletzung gegen Formel-1-Pilot Christian Klien eingestellt (2006-03-31).pretty.json\n",
+ "24558 - Verfahren wegen Körperverletzung gegen Formel-1-Pilot Christian Klien eingestellt (2006-03-31)\n",
+ "Processing datasets/german-quotations/train/32740 - Der DFB hat einen neuen Vorsitzenden: Theo Zwanziger (2006-09-08).pretty.json\n",
+ "32740 - Der DFB hat einen neuen Vorsitzenden: Theo Zwanziger (2006-09-08)\n",
+ "Processing datasets/german-quotations/train/44436 - LKW-Brand: Sauerlandlinie stundenlang blockiert (2007-09-25).pretty.json\n",
+ "44436 - LKW-Brand: Sauerlandlinie stundenlang blockiert (2007-09-25)\n",
+ "Processing datasets/german-quotations/train/19835 - Streit um Montezumas Kopfschmuck (2006-01-11).pretty.json\n",
+ "19835 - Streit um Montezumas Kopfschmuck (2006-01-11)\n",
+ "Processing datasets/german-quotations/train/33591 - Milliardär Friedrich Karl Flick gestorben (2006-10-06).pretty.json\n",
+ "33591 - Milliardär Friedrich Karl Flick gestorben (2006-10-06)\n",
+ "Processing datasets/german-quotations/train/15588 - Mutmaßlicher Entführer der Göttinger Familie Wallert verhaftet (2005-11-06).pretty.json\n",
+ "15588 - Mutmaßlicher Entführer der Göttinger Familie Wallert verhaftet (2005-11-06)\n",
+ "Processing datasets/german-quotations/train/15010 - Mord an junger Frau in Darmstadt (2005-10-28).pretty.json\n",
+ "15010 - Mord an junger Frau in Darmstadt (2005-10-28)\n",
+ "Processing datasets/german-quotations/train/69852 - Anklage fordert 7 Jahre Haft für Timoschenko (2011-09-27).pretty.json\n",
+ "69852 - Anklage fordert 7 Jahre Haft für Timoschenko (2011-09-27)\n",
+ "Processing datasets/german-quotations/train/5310 - Weiterhin Probleme mit ALG-II-Software (2005-05-11).pretty.json\n",
+ "5310 - Weiterhin Probleme mit ALG-II-Software (2005-05-11)\n",
+ "Processing datasets/german-quotations/train/54805 - EinsFestival HD mit Weihnachtsshowcase 2008 gestartet (2008-12-23).pretty.json\n",
+ "54805 - EinsFestival HD mit Weihnachtsshowcase 2008 gestartet (2008-12-23)\n",
+ "Processing datasets/german-quotations/train/82348 - Gemeinschaftsschulen in Baden-Württemberg zu erfolgreich für manche? (2018-03-20).pretty.json\n",
+ "82348 - Gemeinschaftsschulen in Baden-Württemberg zu erfolgreich für manche? (2018-03-20)\n",
+ "Processing datasets/german-quotations/train/25147 - Bundestag genehmigte Privatisierung der „Deutschen Flugsicherung“ (DFS) (2006-04-09).pretty.json\n",
+ "25147 - Bundestag genehmigte Privatisierung der „Deutschen Flugsicherung“ (DFS) (2006-04-09)\n",
+ "Processing datasets/german-quotations/train/5882 - „Verlorene Hörspielmusik“ erscheint nach 20 Jahren auf CD (2005-06-04).pretty.json\n",
+ "5882 - „Verlorene Hörspielmusik“ erscheint nach 20 Jahren auf CD (2005-06-04)\n",
+ "Processing datasets/german-quotations/train/81848 - Sizilien: Mafia Boss befiehlt die Ermordung der eigenen Tochter (2017-11-05).pretty.json\n",
+ "81848 - Sizilien: Mafia Boss befiehlt die Ermordung der eigenen Tochter (2017-11-05)\n",
+ "Processing datasets/german-quotations/train/39672 - Neuigkeiten zum Actionspiel „Grand Theft Auto IV“ (2007-03-31).pretty.json\n",
+ "39672 - Neuigkeiten zum Actionspiel „Grand Theft Auto IV“ (2007-03-31)\n",
+ "Processing datasets/german-quotations/train/48012 - Deutscher in Somalia entführt und wieder befreit (2008-02-13).pretty.json\n",
+ "48012 - Deutscher in Somalia entführt und wieder befreit (2008-02-13)\n",
+ "Processing datasets/german-quotations/train/19927 - Eine Maus wurde zur Brandstifterin (2006-01-13).pretty.json\n",
+ "19927 - Eine Maus wurde zur Brandstifterin (2006-01-13)\n",
+ "Processing datasets/german-quotations/train/29373 - Argentiniens Nationaltrainer José Pekerman zurückgetreten (2006-07-01).pretty.json\n",
+ "29373 - Argentiniens Nationaltrainer José Pekerman zurückgetreten (2006-07-01)\n",
+ "Processing datasets/german-quotations/train/24259 - Deutschlands Fußball-WM-Gruppengegner Ecuador in Nöten (2006-03-25).pretty.json\n",
+ "24259 - Deutschlands Fußball-WM-Gruppengegner Ecuador in Nöten (2006-03-25)\n",
+ "Processing datasets/german-quotations/train/25900 - Ground Zero: Neubau des World Trade Center begonnen (2006-04-28).pretty.json\n",
+ "25900 - Ground Zero: Neubau des World Trade Center begonnen (2006-04-28)\n",
+ "Processing datasets/german-quotations/train/25582 - Documenta 12 mit neuem grafischen Erscheinungsbild (2006-04-20).pretty.json\n",
+ "25582 - Documenta 12 mit neuem grafischen Erscheinungsbild (2006-04-20)\n",
+ "Processing datasets/german-quotations/train/17869 - John F. Kennedys Armbanduhr für 350.000 US-Dollar versteigert (2005-12-20).pretty.json\n",
+ "17869 - John F. Kennedys Armbanduhr für 350.000 US-Dollar versteigert (2005-12-20)\n",
+ "Processing datasets/german-quotations/train/63711 - Koalition einigt sich auf Laufzeitverlängerung für Atomkraftwerke (2010-09-07).pretty.json\n",
+ "63711 - Koalition einigt sich auf Laufzeitverlängerung für Atomkraftwerke (2010-09-07)\n",
+ "Processing datasets/german-quotations/train/25851 - Moritz Schenk Graf von Stauffenberg: 1,1 Promille Alkohol im Blut (2006-04-27).pretty.json\n",
+ "25851 - Moritz Schenk Graf von Stauffenberg: 1,1 Promille Alkohol im Blut (2006-04-27)\n",
+ "Processing datasets/german-quotations/train/29108 - Ex-Präsident von Liberia nach Den Haag überstellt (2006-06-27).pretty.json\n",
+ "29108 - Ex-Präsident von Liberia nach Den Haag überstellt (2006-06-27)\n",
+ "Processing datasets/german-quotations/train/65500 - Frankreich: Kommunisten verschieben Entscheidung über Präsidentschaftskandidatur (2011-01-10).pretty.json\n",
+ "65500 - Frankreich: Kommunisten verschieben Entscheidung über Präsidentschaftskandidatur (2011-01-10)\n",
+ "Processing datasets/german-quotations/train/24911 - Nach Parlamentswahl in Kanada: Stephen Harper stellte Regierungsprogramm vor (2006-04-05).pretty.json\n",
+ "24911 - Nach Parlamentswahl in Kanada: Stephen Harper stellte Regierungsprogramm vor (2006-04-05)\n",
+ "Processing datasets/german-quotations/train/34731 - Putschvorbereitungen in Fidschi (2006-11-04).pretty.json\n",
+ "34731 - Putschvorbereitungen in Fidschi (2006-11-04)\n",
+ "Processing datasets/german-quotations/train/45812 - Kaiserslautern: Tödlicher Verkehrsunfall auf der BAB 6 (2007-11-25).pretty.json\n",
+ "45812 - Kaiserslautern: Tödlicher Verkehrsunfall auf der BAB 6 (2007-11-25)\n",
+ "Processing datasets/german-quotations/train/6399 - Giovanni Trapattoni wird neuer Trainer beim VFB Stuttgart (2005-06-17).pretty.json\n",
+ "6399 - Giovanni Trapattoni wird neuer Trainer beim VFB Stuttgart (2005-06-17)\n",
+ "Processing datasets/german-quotations/train/12599 - Fall des eBay-Babys doch anders als gedacht (2005-09-17).pretty.json\n",
+ "12599 - Fall des eBay-Babys doch anders als gedacht (2005-09-17)\n",
+ "Processing datasets/german-quotations/train/58397 - Bombenexplosion auf der Baleareninsel Mallorca (2009-08-02).pretty.json\n",
+ "58397 - Bombenexplosion auf der Baleareninsel Mallorca (2009-08-02)\n",
+ "Processing datasets/german-quotations/train/18208 - Hubschrauber mit drei Besatzungsmitgliedern in Sibirien vermisst (2005-12-24).pretty.json\n",
+ "18208 - Hubschrauber mit drei Besatzungsmitgliedern in Sibirien vermisst (2005-12-24)\n",
+ "Processing datasets/german-quotations/train/18718 - 13 Tonnen Kerosin über der Schweiz abgelassen (2005-12-31).pretty.json\n",
+ "18718 - 13 Tonnen Kerosin über der Schweiz abgelassen (2005-12-31)\n",
+ "Processing datasets/german-quotations/train/34485 - November 2006: Treffen der großen Schachspieler in Moskau (2006-10-30).pretty.json\n",
+ "34485 - November 2006: Treffen der großen Schachspieler in Moskau (2006-10-30)\n",
+ "Processing datasets/german-quotations/train/65962 - München: Italienische Touristin begeht räuberischen Diebstahl im Hauptbahnhof (2011-02-02).pretty.json\n",
+ "65962 - München: Italienische Touristin begeht räuberischen Diebstahl im Hauptbahnhof (2011-02-02)\n",
+ "Processing datasets/german-quotations/train/37751 - Handball-Weltmeisterschaft: Deutschland im Finale (2007-02-02).pretty.json\n",
+ "37751 - Handball-Weltmeisterschaft: Deutschland im Finale (2007-02-02)\n",
+ "Processing datasets/german-quotations/train/17843 - Fred Delmare leidet an Alzheimer (2005-12-18).pretty.json\n",
+ "17843 - Fred Delmare leidet an Alzheimer (2005-12-18)\n",
+ "Processing datasets/german-quotations/train/13380 - Elf Verletzte beim Transport von Fallschirmspringern im US-amerikanischen DeLand (2005-10-04).pretty.json\n",
+ "13380 - Elf Verletzte beim Transport von Fallschirmspringern im US-amerikanischen DeLand (2005-10-04)\n",
+ "Processing datasets/german-quotations/train/5167 - Trigema-Chef Grupp steht hinter Münteferings Kapitalismus-Kritik (2005-05-11).pretty.json\n",
+ "5167 - Trigema-Chef Grupp steht hinter Münteferings Kapitalismus-Kritik (2005-05-11)\n",
+ "Processing datasets/german-quotations/train/74636 - Deutsche Bischofskonferenz stoppt kriminologische Studie zum sexuellen Missbrauch (2013-01-13).pretty.json\n",
+ "74636 - Deutsche Bischofskonferenz stoppt kriminologische Studie zum sexuellen Missbrauch (2013-01-13)\n",
+ "Processing datasets/german-quotations/train/42185 - VW-Affäre: SPD-Landtagsabgeordneter Lenz legt Mandat nieder (2007-06-15).pretty.json\n",
+ "42185 - VW-Affäre: SPD-Landtagsabgeordneter Lenz legt Mandat nieder (2007-06-15)\n",
+ "Processing datasets/german-quotations/train/38098 - Angela Merkel fordert mehr benzinsparende Autos (2007-02-12).pretty.json\n",
+ "38098 - Angela Merkel fordert mehr benzinsparende Autos (2007-02-12)\n",
+ "Processing datasets/german-quotations/train/27312 - Verfassungsschutzbericht 2005 vorgelegt – Anstieg rechter Gewalt (2006-05-24).pretty.json\n",
+ "27312 - Verfassungsschutzbericht 2005 vorgelegt – Anstieg rechter Gewalt (2006-05-24)\n",
+ "Processing datasets/german-quotations/train/60160 - Bürgerkriegsähnliche Zustände in Teheran (2009-12-27).pretty.json\n",
+ "60160 - Bürgerkriegsähnliche Zustände in Teheran (2009-12-27)\n",
+ "Processing datasets/german-quotations/train/54964 - Jahresbilanz 2008 von „Reporter ohne Grenzen“: Journalisten leben weiter gefährlich (2008-12-30).pretty.json\n",
+ "54964 - Jahresbilanz 2008 von „Reporter ohne Grenzen“: Journalisten leben weiter gefährlich (2008-12-30)\n",
+ "Processing datasets/german-quotations/train/20136 - ZDF DokuDrama: Karol Wojtyla – Geheimnisse eines Papstes (2006-01-16).pretty.json\n",
+ "20136 - ZDF DokuDrama: Karol Wojtyla – Geheimnisse eines Papstes (2006-01-16)\n",
+ "Processing datasets/german-quotations/train/14074 - Sabotage mit Metallgegenstand in einem Schwelmer Maisfeld (2005-10-21).pretty.json\n",
+ "14074 - Sabotage mit Metallgegenstand in einem Schwelmer Maisfeld (2005-10-21)\n",
+ "Processing datasets/german-quotations/train/50978 - Afghanistans Präsident Karzai will „Kampf gegen den Terror“ auf das pakistanische Grenzgebiet ausweiten (2008-06-15).pretty.json\n",
+ "50978 - Afghanistans Präsident Karzai will „Kampf gegen den Terror“ auf das pakistanische Grenzgebiet ausweiten (2008-06-15)\n",
+ "Processing datasets/german-quotations/train/69903 - Arktis: Forscher von Ozonloch beunruhigt (2011-10-04).pretty.json\n",
+ "69903 - Arktis: Forscher von Ozonloch beunruhigt (2011-10-04)\n",
+ "Processing datasets/german-quotations/train/68514 - Warnung vor spanischen Gurken ‒ Zapatero verlangt Entschädigung von Deutschland (2011-06-02).pretty.json\n",
+ "68514 - Warnung vor spanischen Gurken ‒ Zapatero verlangt Entschädigung von Deutschland (2011-06-02)\n",
+ "Processing datasets/german-quotations/train/48238 - Pétanque: Deutsches Damenteam Dritte in Genf (2008-02-24).pretty.json\n",
+ "48238 - Pétanque: Deutsches Damenteam Dritte in Genf (2008-02-24)\n",
+ "Processing datasets/german-quotations/train/8561 - Zukunftsvertrag regelt die Finanzierung der niedersächsischen Hochschulen (2005-07-13).pretty.json\n",
+ "8561 - Zukunftsvertrag regelt die Finanzierung der niedersächsischen Hochschulen (2005-07-13)\n",
+ "Processing datasets/german-quotations/train/23893 - Abschlussbericht zum Flugzeugabsturz in Athen fertiggestellt (2006-03-19).pretty.json\n",
+ "23893 - Abschlussbericht zum Flugzeugabsturz in Athen fertiggestellt (2006-03-19)\n",
+ "Processing datasets/german-quotations/train/29688 - Fußballskandal Italien: Weit reichende Strafen von Untersuchungsrichter gefordert (2006-07-07).pretty.json\n",
+ "29688 - Fußballskandal Italien: Weit reichende Strafen von Untersuchungsrichter gefordert (2006-07-07)\n",
+ "Processing datasets/german-quotations/train/45701 - ATTAC: Streit um Unterstützung des Lokführerstreiks (2007-11-18).pretty.json\n",
+ "45701 - ATTAC: Streit um Unterstützung des Lokführerstreiks (2007-11-18)\n",
+ "Processing datasets/german-quotations/train/28728 - US-Soldat wegen Tötung des italienischen Geheimdienstagenten Calipari angeklagt (2006-06-22).pretty.json\n",
+ "28728 - US-Soldat wegen Tötung des italienischen Geheimdienstagenten Calipari angeklagt (2006-06-22)\n",
+ "Processing datasets/german-quotations/train/56998 - Steigende Spannungen in Thailand durch Proteste von Regierungsgegnern (2009-04-07).pretty.json\n",
+ "56998 - Steigende Spannungen in Thailand durch Proteste von Regierungsgegnern (2009-04-07)\n",
+ "Processing datasets/german-quotations/train/27100 - Nationalspieler Philipp Lahm reist am Samstag nach Sardinien (2006-05-19).pretty.json\n",
+ "27100 - Nationalspieler Philipp Lahm reist am Samstag nach Sardinien (2006-05-19)\n",
+ "Processing datasets/german-quotations/train/41379 - NBA Playoffs 2007: Halbfinale sind komplett (2007-05-19).pretty.json\n",
+ "41379 - NBA Playoffs 2007: Halbfinale sind komplett (2007-05-19)\n",
+ "Processing datasets/german-quotations/train/17865 - Der vor Genua vermisste Pilot ist möglicherweise noch am Leben (2005-12-19).pretty.json\n",
+ "17865 - Der vor Genua vermisste Pilot ist möglicherweise noch am Leben (2005-12-19)\n",
+ "Processing datasets/german-quotations/train/24321 - Nach dem Absturz der Trägerrakete „Falcon 1“: Elon Musk will Ursachenforschung betreiben (2006-03-27).pretty.json\n",
+ "24321 - Nach dem Absturz der Trägerrakete „Falcon 1“: Elon Musk will Ursachenforschung betreiben (2006-03-27)\n",
+ "Processing datasets/german-quotations/train/65110 - Guttenberg besucht Truppen in Afghanistan (2010-12-14).pretty.json\n",
+ "65110 - Guttenberg besucht Truppen in Afghanistan (2010-12-14)\n",
+ "Processing datasets/german-quotations/train/13587 - Notlandung eines polnischen Löschhubschraubers auf einem Golfplatz im Walzbachtal (2005-10-09).pretty.json\n",
+ "13587 - Notlandung eines polnischen Löschhubschraubers auf einem Golfplatz im Walzbachtal (2005-10-09)\n",
+ "Processing datasets/german-quotations/train/54334 - Berlin: Rot-rote Koalition plant Einführung einer „Schülerdatei“ (2008-11-26).pretty.json\n",
+ "54334 - Berlin: Rot-rote Koalition plant Einführung einer „Schülerdatei“ (2008-11-26)\n",
+ "Processing datasets/german-quotations/train/27206 - Thaksin Shinawatra kündigt Rückkehr in die Politik an (2006-05-21).pretty.json\n",
+ "27206 - Thaksin Shinawatra kündigt Rückkehr in die Politik an (2006-05-21)\n",
+ "Processing datasets/german-quotations/train/45074 - Prozessauftakt im Fall „Kevin“: Angeklagter Ziehvater schweigt (2007-10-24).pretty.json\n",
+ "45074 - Prozessauftakt im Fall „Kevin“: Angeklagter Ziehvater schweigt (2007-10-24)\n",
+ "Processing datasets/german-quotations/train/80950 - Mord an Rentner in Cleveland: Video der Tat auf Facebook (2017-04-17).pretty.json\n",
+ "80950 - Mord an Rentner in Cleveland: Video der Tat auf Facebook (2017-04-17)\n",
+ "Processing datasets/german-quotations/train/65490 - US-Gericht fordert Twitter zur Herausgabe von personenbezogenen Daten über WikiLeaks-Kontaktpersonen auf (2011-01-08).pretty.json\n",
+ "65490 - US-Gericht fordert Twitter zur Herausgabe von personenbezogenen Daten über WikiLeaks-Kontaktpersonen auf (2011-01-08)\n",
+ "Processing datasets/german-quotations/train/69135 - Lebensmittelklarheit.de geht online und dann in die Knie (2011-07-20).pretty.json\n",
+ "69135 - Lebensmittelklarheit.de geht online und dann in die Knie (2011-07-20)\n",
+ "Processing datasets/german-quotations/train/82489 - Schulen in Deutschland: Sind die Grenzen der Inklusion erreicht? (2018-07-08).pretty.json\n",
+ "82489 - Schulen in Deutschland: Sind die Grenzen der Inklusion erreicht? (2018-07-08)\n",
+ "Processing datasets/german-quotations/train/64928 - Deutschland: Innenminister de Maizière legt Gesetzentwurf für verbesserten Datenschutz im Internet vor (2010-12-01).pretty.json\n",
+ "64928 - Deutschland: Innenminister de Maizière legt Gesetzentwurf für verbesserten Datenschutz im Internet vor (2010-12-01)\n",
+ "Processing datasets/german-quotations/train/25051 - Iserlohn: Mutmaßlicher Täter im Doppelmordfall war einer der drei verhafteten Männer (2006-04-07).pretty.json\n",
+ "25051 - Iserlohn: Mutmaßlicher Täter im Doppelmordfall war einer der drei verhafteten Männer (2006-04-07)\n",
+ "Processing datasets/german-quotations/train/3659 - Dschungelbuch-Premiere in Nürnberg (2005-03-02).pretty.json\n",
+ "3659 - Dschungelbuch-Premiere in Nürnberg (2005-03-02)\n",
+ "Processing datasets/german-quotations/train/51123 - Barack Obama will auf staatliche Zuschüsse für seinen Wahlkampf verzichten (2008-06-21).pretty.json\n",
+ "51123 - Barack Obama will auf staatliche Zuschüsse für seinen Wahlkampf verzichten (2008-06-21)\n",
+ "Processing datasets/german-quotations/train/43106 - Sperre der A9 wegen Installation einer Fußgängerbrücke (2007-07-29).pretty.json\n",
+ "43106 - Sperre der A9 wegen Installation einer Fußgängerbrücke (2007-07-29)\n",
+ "Processing datasets/german-quotations/train/29022 - Hauptkamera des Hubble-Weltraumteleskops ausgefallen (2006-06-26).pretty.json\n",
+ "29022 - Hauptkamera des Hubble-Weltraumteleskops ausgefallen (2006-06-26)\n",
+ "Processing datasets/german-quotations/train/29721 - Großbrand in einem Elektrofeinmechanik-Betrieb in Olpe (2006-07-06).pretty.json\n",
+ "29721 - Großbrand in einem Elektrofeinmechanik-Betrieb in Olpe (2006-07-06)\n",
+ "Processing datasets/german-quotations/train/4555 - Macromedia-Entwicklerkonferenz: Neuer Flash-Player kommt noch dieses Jahr (2005-04-09).pretty.json\n",
+ "4555 - Macromedia-Entwicklerkonferenz: Neuer Flash-Player kommt noch dieses Jahr (2005-04-09)\n",
+ "Processing datasets/german-quotations/train/3354 - Hoyzer belastet erneut Schiedsrichterkollegen (2005-02-19).pretty.json\n",
+ "3354 - Hoyzer belastet erneut Schiedsrichterkollegen (2005-02-19)\n",
+ "Processing datasets/german-quotations/train/47258 - Oberhaupt der griechisch-orthodoxen Kirche verstorben (2008-01-28).pretty.json\n",
+ "47258 - Oberhaupt der griechisch-orthodoxen Kirche verstorben (2008-01-28)\n",
+ "Processing datasets/german-quotations/train/4389 - WM 2006 nach England verlegt (2005-04-01).pretty.json\n",
+ "4389 - WM 2006 nach England verlegt (2005-04-01)\n",
+ "Processing datasets/german-quotations/train/32521 - Kaiserslautern: Fahndung nach Grabscher (2006-09-03).pretty.json\n",
+ "32521 - Kaiserslautern: Fahndung nach Grabscher (2006-09-03)\n",
+ "Processing datasets/german-quotations/train/5156 - Drucksparten von Springer und Bertelsmann fusionieren (2005-05-03).pretty.json\n",
+ "5156 - Drucksparten von Springer und Bertelsmann fusionieren (2005-05-03)\n",
+ "Processing datasets/german-quotations/train/15720 - Unfall im Maisfeld: Jäger schießt versehentlich auf Mähdrescherfahrer (2005-11-11).pretty.json\n",
+ "15720 - Unfall im Maisfeld: Jäger schießt versehentlich auf Mähdrescherfahrer (2005-11-11)\n",
+ "Processing datasets/german-quotations/train/63732 - Tausende demonstrieren in Berlin für Freiheit statt Angst (2010-09-13).pretty.json\n",
+ "63732 - Tausende demonstrieren in Berlin für Freiheit statt Angst (2010-09-13)\n",
+ "Processing datasets/german-quotations/train/55767 - Schnellstes Elektroauto der Welt in Planung (2009-02-05).pretty.json\n",
+ "55767 - Schnellstes Elektroauto der Welt in Planung (2009-02-05)\n",
+ "Processing datasets/german-quotations/train/33398 - Delmenhorst: Gegner der rechten Kaderschmiede erneut als „Volksverräter“ beschimpft (2006-10-01).pretty.json\n",
+ "33398 - Delmenhorst: Gegner der rechten Kaderschmiede erneut als „Volksverräter“ beschimpft (2006-10-01)\n",
+ "Processing datasets/german-quotations/train/30797 - Chiang Mai erneut von schweren Überflutungen heimgesucht (2006-08-02).pretty.json\n",
+ "30797 - Chiang Mai erneut von schweren Überflutungen heimgesucht (2006-08-02)\n",
+ "Processing datasets/german-quotations/train/46026 - Kinder in Panama sollen in Zukunft Chinesisch lernen (2007-12-07).pretty.json\n",
+ "46026 - Kinder in Panama sollen in Zukunft Chinesisch lernen (2007-12-07)\n",
+ "Processing datasets/german-quotations/train/13246 - Krisentreffen der EU-Außenminister wegen Türkeibeitrittsverhandlungen (2005-10-02).pretty.json\n",
+ "13246 - Krisentreffen der EU-Außenminister wegen Türkeibeitrittsverhandlungen (2005-10-02)\n",
+ "Processing datasets/german-quotations/train/41206 - Borussia Dortmund siegt gegen Schalke 04 (2007-05-12).pretty.json\n",
+ "41206 - Borussia Dortmund siegt gegen Schalke 04 (2007-05-12)\n",
+ "Processing datasets/german-quotations/train/84621 - Impfziel: Mehr als 80 Prozent der doppelt Geimpften auch geboostert (2022-01-06).pretty.json\n",
+ "84621 - Impfziel: Mehr als 80 Prozent der doppelt Geimpften auch geboostert (2022-01-06)\n",
+ "Processing datasets/german-quotations/train/59120 - Amerikanische Bibliothekenverbindung feiert „Woche des verbotenen Buches“ (2009-10-01).pretty.json\n",
+ "59120 - Amerikanische Bibliothekenverbindung feiert „Woche des verbotenen Buches“ (2009-10-01)\n",
+ "Processing datasets/german-quotations/train/28446 - Finnische Hunde jagen Bären (2006-06-14).pretty.json\n",
+ "28446 - Finnische Hunde jagen Bären (2006-06-14)\n",
+ "Processing datasets/german-quotations/train/12830 - Schwerstverletzte Kletterin mit Hubschrauber gerettet (2005-09-23).pretty.json\n",
+ "12830 - Schwerstverletzte Kletterin mit Hubschrauber gerettet (2005-09-23)\n",
+ "Processing datasets/german-quotations/train/59985 - Jüdische Siedler verüben Brandanschlag auf Moschee (2009-12-14).pretty.json\n",
+ "59985 - Jüdische Siedler verüben Brandanschlag auf Moschee (2009-12-14)\n",
+ "Processing datasets/german-quotations/train/10022 - Der Astronaut Neil Armstrong wird heute 75 Jahre alt (2005-08-05).pretty.json\n",
+ "10022 - Der Astronaut Neil Armstrong wird heute 75 Jahre alt (2005-08-05)\n",
+ "Processing datasets/german-quotations/train/22774 - Nach dem Oscar nun der César (2006-02-26).pretty.json\n",
+ "22774 - Nach dem Oscar nun der César (2006-02-26)\n",
+ "Processing datasets/german-quotations/train/36350 - Die Polizei: Dein Freund und Helfer (2006-12-19).pretty.json\n",
+ "36350 - Die Polizei: Dein Freund und Helfer (2006-12-19)\n",
+ "Processing datasets/german-quotations/train/81262 - Ranking: Wertvollste Konzerne der Welt kommen aus den USA – China holt auf (2017-07-01).pretty.json\n",
+ "81262 - Ranking: Wertvollste Konzerne der Welt kommen aus den USA – China holt auf (2017-07-01)\n",
+ "Processing datasets/german-quotations/train/35999 - HSV-Sieg durch „Stinkefinger-Affäre“ überschattet (2006-12-09).pretty.json\n",
+ "35999 - HSV-Sieg durch „Stinkefinger-Affäre“ überschattet (2006-12-09)\n",
+ "Processing datasets/german-quotations/train/39835 - Petra Pau: Schäuble ist „eifrigster Kämpfer gegen die Verfassung“ (2007-04-03).pretty.json\n",
+ "39835 - Petra Pau: Schäuble ist „eifrigster Kämpfer gegen die Verfassung“ (2007-04-03)\n",
+ "Processing datasets/german-quotations/train/66171 - Brandenburg: Entführung einer Vierjährigen (2011-02-11).pretty.json\n",
+ "66171 - Brandenburg: Entführung einer Vierjährigen (2011-02-11)\n",
+ "Processing datasets/german-quotations/train/48520 - Neues Grundrecht in Deutschland: Online-Durchsuchungen nur begrenzt möglich (2008-02-29).pretty.json\n",
+ "48520 - Neues Grundrecht in Deutschland: Online-Durchsuchungen nur begrenzt möglich (2008-02-29)\n",
+ "Processing datasets/german-quotations/train/72735 - Kriegsverbrecher Ratko Mladic steht vor dem UN-Tribunal in Den Haag (2012-05-17).pretty.json\n",
+ "72735 - Kriegsverbrecher Ratko Mladic steht vor dem UN-Tribunal in Den Haag (2012-05-17)\n",
+ "Processing datasets/german-quotations/train/73055 - Kenia: USA warnen von drohendem Anschlag (2012-06-24).pretty.json\n",
+ "73055 - Kenia: USA warnen von drohendem Anschlag (2012-06-24)\n",
+ "Processing datasets/german-quotations/train/52987 - Pannen beim CERN: LHC nach Stromausfall abgeschaltet (2008-09-19).pretty.json\n",
+ "52987 - Pannen beim CERN: LHC nach Stromausfall abgeschaltet (2008-09-19)\n",
+ "Processing datasets/german-quotations/train/33489 - Keine Verlängerung des Bundeswehreinsatzes im Kongo (2006-10-03).pretty.json\n",
+ "33489 - Keine Verlängerung des Bundeswehreinsatzes im Kongo (2006-10-03)\n",
+ "Processing datasets/german-quotations/train/3738 - Sgrena bezweifelt offizielle US-Angaben zum Beschuss des Fahrzeugs (2005-03-06).pretty.json\n",
+ "3738 - Sgrena bezweifelt offizielle US-Angaben zum Beschuss des Fahrzeugs (2005-03-06)\n",
+ "Processing datasets/german-quotations/train/18624 - Chaos Computer Club-Kongress in Berlin (2005-12-29).pretty.json\n",
+ "18624 - Chaos Computer Club-Kongress in Berlin (2005-12-29)\n",
+ "Processing datasets/german-quotations/train/18592 - Beziehung zwischen Indonesien und Timor-Leste stabilisieren sich (2005-12-29).pretty.json\n",
+ "18592 - Beziehung zwischen Indonesien und Timor-Leste stabilisieren sich (2005-12-29)\n",
+ "Processing datasets/german-quotations/train/55066 - Neues chinesisches Hybridauto auf dem Markt (2009-01-05).pretty.json\n",
+ "55066 - Neues chinesisches Hybridauto auf dem Markt (2009-01-05)\n",
+ "Processing datasets/german-quotations/train/67374 - Fukushima: 11.500 Tonnen radioaktiv verseuchtes Wasser sollen in den Pazifik abgelassen werden (2011-04-04).pretty.json\n",
+ "67374 - Fukushima: 11.500 Tonnen radioaktiv verseuchtes Wasser sollen in den Pazifik abgelassen werden (2011-04-04)\n",
+ "Processing datasets/german-quotations/train/31955 - UN-Generalsekretär kritisiert die Rekrutierung von Kindersoldaten im Sudan (2006-08-23).pretty.json\n",
+ "31955 - UN-Generalsekretär kritisiert die Rekrutierung von Kindersoldaten im Sudan (2006-08-23)\n",
+ "Processing datasets/german-quotations/train/47623 - Witten soll mit der „StadtGalerie“ ein neues Einkaufszentrum bekommen (2008-01-31).pretty.json\n",
+ "47623 - Witten soll mit der „StadtGalerie“ ein neues Einkaufszentrum bekommen (2008-01-31)\n",
+ "Processing datasets/german-quotations/train/49104 - Volker Beck stellt Strafanzeige gegen den Sänger „Bounty Killer“ (2008-03-20).pretty.json\n",
+ "49104 - Volker Beck stellt Strafanzeige gegen den Sänger „Bounty Killer“ (2008-03-20)\n",
+ "Processing datasets/german-quotations/train/71489 - Papua-Neuguinea: Untergang einer Fähre (2012-02-03).pretty.json\n",
+ "71489 - Papua-Neuguinea: Untergang einer Fähre (2012-02-03)\n",
+ "Processing datasets/german-quotations/train/54568 - Wiener Linien: zwischen eingeklemmt und abgestritten (2008-12-09).pretty.json\n",
+ "54568 - Wiener Linien: zwischen eingeklemmt und abgestritten (2008-12-09)\n",
+ "Processing datasets/german-quotations/train/60157 - Autobombe in Beirut zielt auf Hamas-Vertreter (2009-12-27).pretty.json\n",
+ "60157 - Autobombe in Beirut zielt auf Hamas-Vertreter (2009-12-27)\n",
+ "Processing datasets/german-quotations/train/66568 - UN-Sicherheitsrat beschließt Sanktionen gegen Libyen (2011-02-27).pretty.json\n",
+ "66568 - UN-Sicherheitsrat beschließt Sanktionen gegen Libyen (2011-02-27)\n",
+ "Processing datasets/german-quotations/train/15242 - Edmund Stoiber wird kein Regierungsmitglied (2005-11-01).pretty.json\n",
+ "15242 - Edmund Stoiber wird kein Regierungsmitglied (2005-11-01)\n",
+ "Processing datasets/german-quotations/train/42171 - Section-Control rechtswidrig (2007-06-15).pretty.json\n",
+ "42171 - Section-Control rechtswidrig (2007-06-15)\n",
+ "Processing datasets/german-quotations/train/37511 - Republik Kongo: 200 Gefangene aus einem Gefängnis ausgebrochen (2007-01-24).pretty.json\n",
+ "37511 - Republik Kongo: 200 Gefangene aus einem Gefängnis ausgebrochen (2007-01-24)\n",
+ "Processing datasets/german-quotations/train/74419 - Niederlande: 41-jähriger Schiedsrichter von Jugendlichen totgeprügelt (2012-12-05).pretty.json\n",
+ "74419 - Niederlande: 41-jähriger Schiedsrichter von Jugendlichen totgeprügelt (2012-12-05)\n",
+ "Processing datasets/german-quotations/train/5886 - Gedenkveranstaltung anlässlich des 16. Jahrestages des Tiananmen-Massakers (2005-06-05).pretty.json\n",
+ "5886 - Gedenkveranstaltung anlässlich des 16. Jahrestages des Tiananmen-Massakers (2005-06-05)\n",
+ "Processing datasets/german-quotations/train/3148 - Resistentes Aids-Virus entdeckt (2005-02-13).pretty.json\n",
+ "3148 - Resistentes Aids-Virus entdeckt (2005-02-13)\n",
+ "Processing datasets/german-quotations/train/24279 - Anklage gegen Hubschrauberpiloten von Sölden erhoben (2006-03-27).pretty.json\n",
+ "24279 - Anklage gegen Hubschrauberpiloten von Sölden erhoben (2006-03-27)\n",
+ "Processing datasets/german-quotations/train/44966 - Ölpreis knackt Marke von 90 US-Dollar (2007-10-19).pretty.json\n",
+ "44966 - Ölpreis knackt Marke von 90 US-Dollar (2007-10-19)\n",
+ "Processing datasets/german-quotations/train/23071 - Mannheim die erste Großstadt Deutschlands mit Vogelgrippe (2006-03-04).pretty.json\n",
+ "23071 - Mannheim die erste Großstadt Deutschlands mit Vogelgrippe (2006-03-04)\n",
+ "Processing datasets/german-quotations/train/35051 - Luxemburger Flaggenstreit erhitzt Gemüter (2006-11-16).pretty.json\n",
+ "35051 - Luxemburger Flaggenstreit erhitzt Gemüter (2006-11-16)\n",
+ "Processing datasets/german-quotations/train/17885 - Rücktritt des italienischen Notenbankchefs Fazio (2005-12-25).pretty.json\n",
+ "17885 - Rücktritt des italienischen Notenbankchefs Fazio (2005-12-25)\n",
+ "Processing datasets/german-quotations/train/48553 - Fast 300.000 Anträge für „.asia“-Domain (2008-03-02).pretty.json\n",
+ "48553 - Fast 300.000 Anträge für „.asia“-Domain (2008-03-02)\n",
+ "Processing datasets/german-quotations/train/75024 - Journalistin Tissy Bruns gestorben (2013-02-21).pretty.json\n",
+ "75024 - Journalistin Tissy Bruns gestorben (2013-02-21)\n",
+ "Processing datasets/german-quotations/train/33857 - Ban Ki-moon wird Nachfolger von UN-Generalsekretär Kofi Annan (2006-10-14).pretty.json\n",
+ "33857 - Ban Ki-moon wird Nachfolger von UN-Generalsekretär Kofi Annan (2006-10-14)\n",
+ "Processing datasets/german-quotations/train/46588 - Früherer Amtrak-Präsident George D. Warrington verstorben (2007-12-27).pretty.json\n",
+ "46588 - Früherer Amtrak-Präsident George D. Warrington verstorben (2007-12-27)\n",
+ "Processing datasets/german-quotations/train/74190 - Fritz Kuhn (GRÜNE) wird neuer Oberbürgermeister von Stuttgart (2012-10-22).pretty.json\n",
+ "74190 - Fritz Kuhn (GRÜNE) wird neuer Oberbürgermeister von Stuttgart (2012-10-22)\n",
+ "Processing datasets/german-quotations/train/49024 - Gewaltsame Niederschlagung der Proteste in Tibet befürchtet (2008-03-17).pretty.json\n",
+ "49024 - Gewaltsame Niederschlagung der Proteste in Tibet befürchtet (2008-03-17)\n",
+ "Processing datasets/german-quotations/train/18512 - Tupolew 214: Notlandung in Chabarowsk (2005-12-27).pretty.json\n",
+ "18512 - Tupolew 214: Notlandung in Chabarowsk (2005-12-27)\n",
+ "Processing datasets/german-quotations/train/54188 - Schäuble will Änderung der Abstimmungsregeln im Bundesrat (2008-11-23).pretty.json\n",
+ "54188 - Schäuble will Änderung der Abstimmungsregeln im Bundesrat (2008-11-23)\n",
+ "Processing datasets/german-quotations/train/4799 - Dschihad-Angehörige aus Untersuchungshaft geflohen (2005-04-22).pretty.json\n",
+ "4799 - Dschihad-Angehörige aus Untersuchungshaft geflohen (2005-04-22)\n",
+ "Processing datasets/german-quotations/train/13091 - Ehemann von Broadway-Star Bernadette Peters unter den Opfern beim Helikopterabsturz in Montenegro (2005-08-29).pretty.json\n",
+ "13091 - Ehemann von Broadway-Star Bernadette Peters unter den Opfern beim Helikopterabsturz in Montenegro (2005-08-29)\n",
+ "Processing datasets/german-quotations/train/84583 - Weiterhin extrem hohe Inflation in Argentinien beunruhigt die Regierung (2021-12-05).pretty.json\n",
+ "84583 - Weiterhin extrem hohe Inflation in Argentinien beunruhigt die Regierung (2021-12-05)\n",
+ "Processing datasets/german-quotations/train/15430 - Forschungsflugzeug abgestürzt - Polarforscher unverletzt (2005-11-03).pretty.json\n",
+ "15430 - Forschungsflugzeug abgestürzt - Polarforscher unverletzt (2005-11-03)\n",
+ "Processing datasets/german-quotations/train/48618 - Prinz Harry zurück auf britischem Boden (2008-03-02).pretty.json\n",
+ "48618 - Prinz Harry zurück auf britischem Boden (2008-03-02)\n",
+ "Processing datasets/german-quotations/train/48839 - Die beiden Nachbarplaneten der Erde sind sich ähnlicher als bisher angenommen (2008-03-09).pretty.json\n",
+ "48839 - Die beiden Nachbarplaneten der Erde sind sich ähnlicher als bisher angenommen (2008-03-09)\n",
+ "Processing datasets/german-quotations/train/63838 - Sonntagsfrage: linkes Lager klar vorne (2010-09-29).pretty.json\n",
+ "63838 - Sonntagsfrage: linkes Lager klar vorne (2010-09-29)\n",
+ "Processing datasets/german-quotations/train/21450 - IAEA einigt sich in der Iran-Frage auf Anrufung des Sicherheitsrates (2006-02-04).pretty.json\n",
+ "21450 - IAEA einigt sich in der Iran-Frage auf Anrufung des Sicherheitsrates (2006-02-04)\n",
+ "Processing datasets/german-quotations/train/36593 - Exoplaneten-Sucher „COROT“ ins All gestartet (2006-12-28).pretty.json\n",
+ "36593 - Exoplaneten-Sucher „COROT“ ins All gestartet (2006-12-28)\n",
+ "Processing datasets/german-quotations/train/61320 - Niger: Tausende demonstrieren für Machtübernahme durch das Militär (2010-02-20).pretty.json\n",
+ "61320 - Niger: Tausende demonstrieren für Machtübernahme durch das Militär (2010-02-20)\n",
+ "Processing datasets/german-quotations/train/48687 - Berliner Verkehrsbetriebe streiken ab 5. März 2008 (2008-03-05).pretty.json\n",
+ "48687 - Berliner Verkehrsbetriebe streiken ab 5. März 2008 (2008-03-05)\n",
+ "Processing datasets/german-quotations/train/33855 - Sechs Jahre OpenOffice.org (2006-10-14).pretty.json\n",
+ "33855 - Sechs Jahre OpenOffice.org (2006-10-14)\n",
+ "Processing datasets/german-quotations/train/56019 - Maria Riesch sorgt für den zweiten deutschen Weltmeistertitel im Slalom (2009-02-16).pretty.json\n",
+ "56019 - Maria Riesch sorgt für den zweiten deutschen Weltmeistertitel im Slalom (2009-02-16)\n",
+ "Processing datasets/german-quotations/train/14059 - Skytrain muss komplett saniert werden (2005-10-17).pretty.json\n",
+ "14059 - Skytrain muss komplett saniert werden (2005-10-17)\n",
+ "Processing datasets/german-quotations/train/47745 - Vereinigte Staaten: Präsident Bush plant massive Neuverschuldung 2009 (2008-02-04).pretty.json\n",
+ "47745 - Vereinigte Staaten: Präsident Bush plant massive Neuverschuldung 2009 (2008-02-04)\n",
+ "Processing datasets/german-quotations/train/44364 - Auschwitz-Bilderalbum von Paul Höcker veröffentlicht (2007-09-22).pretty.json\n",
+ "44364 - Auschwitz-Bilderalbum von Paul Höcker veröffentlicht (2007-09-22)\n",
+ "Processing datasets/german-quotations/train/69106 - Koch-Mehrin legt Widerspruch gegen Aberkennung des Doktortitels ein (2011-07-18).pretty.json\n",
+ "69106 - Koch-Mehrin legt Widerspruch gegen Aberkennung des Doktortitels ein (2011-07-18)\n",
+ "Processing datasets/german-quotations/train/44642 - The Rolling Stones – erfolgreichste Live-Band aller Zeiten (2007-10-05).pretty.json\n",
+ "44642 - The Rolling Stones – erfolgreichste Live-Band aller Zeiten (2007-10-05)\n",
+ "Processing datasets/german-quotations/train/37764 - In Europa gingen für fünf Minuten die Lichter aus (2007-02-03).pretty.json\n",
+ "37764 - In Europa gingen für fünf Minuten die Lichter aus (2007-02-03)\n",
+ "Processing datasets/german-quotations/train/63691 - CDU Baden-Württemberg boykottiert Abgeordnetenwatch (2010-09-06).pretty.json\n",
+ "63691 - CDU Baden-Württemberg boykottiert Abgeordnetenwatch (2010-09-06)\n",
+ "Processing datasets/german-quotations/train/40716 - Verbot „homosexueller Propaganda“ in Polen: EU-Kommissar Ján Figeľ im Interview mit Wikinews (2007-05-01).pretty.json\n",
+ "40716 - Verbot „homosexueller Propaganda“ in Polen: EU-Kommissar Ján Figeľ im Interview mit Wikinews (2007-05-01)\n",
+ "Processing datasets/german-quotations/train/67577 - Landesuntersuchungsamt warnt vor dem Schlankmacher „Reduce Weight Fruta Planta“ (2011-04-17).pretty.json\n",
+ "67577 - Landesuntersuchungsamt warnt vor dem Schlankmacher „Reduce Weight Fruta Planta“ (2011-04-17)\n",
+ "Processing datasets/german-quotations/train/59270 - Friedensnobelpreis geht an Obama (2009-10-09).pretty.json\n",
+ "59270 - Friedensnobelpreis geht an Obama (2009-10-09)\n",
+ "Processing datasets/german-quotations/train/77969 - Moody's stuft Sloweniens Rating hoch (2015-01-29).pretty.json\n",
+ "77969 - Moody's stuft Sloweniens Rating hoch (2015-01-29)\n",
+ "Processing datasets/german-quotations/train/5820 - Südamerika: Parlamentswahlen in Suriname (2005-06-02).pretty.json\n",
+ "5820 - Südamerika: Parlamentswahlen in Suriname (2005-06-02)\n",
+ "Processing datasets/german-quotations/train/45839 - Erneute Niederlage für Rechtsextremist Jürgen Rieger (2007-11-26).pretty.json\n",
+ "45839 - Erneute Niederlage für Rechtsextremist Jürgen Rieger (2007-11-26)\n",
+ "Processing datasets/german-quotations/train/77887 - Absatzanstieg bei Opel (2015-01-10).pretty.json\n",
+ "77887 - Absatzanstieg bei Opel (2015-01-10)\n",
+ "Processing datasets/german-quotations/train/9996 - Vierter Außeneinsatz am Spaceshuttle nicht nötig - Discovery landet Montag (2005-08-05).pretty.json\n",
+ "9996 - Vierter Außeneinsatz am Spaceshuttle nicht nötig - Discovery landet Montag (2005-08-05)\n",
+ "Processing datasets/german-quotations/train/5381 - Offenbar hohe Wahlbeteiligung bei der Parlamentswahl in Äthiopien (2005-05-16).pretty.json\n",
+ "5381 - Offenbar hohe Wahlbeteiligung bei der Parlamentswahl in Äthiopien (2005-05-16)\n",
+ "Processing datasets/german-quotations/train/22510 - Formel-1-Pilot Christian Klien weist Vorwurf der Körperverletzung zurück (2006-02-23).pretty.json\n",
+ "22510 - Formel-1-Pilot Christian Klien weist Vorwurf der Körperverletzung zurück (2006-02-23)\n",
+ "Processing datasets/german-quotations/train/80534 - Fußball: Zoff zwischen Leipzig und Dortmund (2017-02-10).pretty.json\n",
+ "80534 - Fußball: Zoff zwischen Leipzig und Dortmund (2017-02-10)\n",
+ "Processing datasets/german-quotations/train/8067 - Australier McEwen gewinnt seine zweite Etappe (2005-07-08).pretty.json\n",
+ "8067 - Australier McEwen gewinnt seine zweite Etappe (2005-07-08)\n",
+ "Processing datasets/german-quotations/train/80211 - Londoner Gericht verurteilt Cox' Mörder (2016-11-23).pretty.json\n",
+ "80211 - Londoner Gericht verurteilt Cox' Mörder (2016-11-23)\n",
+ "Processing datasets/german-quotations/train/9098 - Verdächtiger Terrorist im Londoner Stadtteil Stockwell festgenommen (2005-07-22).pretty.json\n",
+ "9098 - Verdächtiger Terrorist im Londoner Stadtteil Stockwell festgenommen (2005-07-22)\n",
+ "Processing datasets/german-quotations/train/51339 - Bündnis der Firmen Total und Enertrag zur Herstellung von Wasserstoff (2008-06-27).pretty.json\n",
+ "51339 - Bündnis der Firmen Total und Enertrag zur Herstellung von Wasserstoff (2008-06-27)\n",
+ "Processing datasets/german-quotations/train/54390 - Airbuswerke in Varel, Nordenham und Augsburg werden von EADS-Tochter Premium Aerotec weitergeführt (2008-11-29).pretty.json\n",
+ "54390 - Airbuswerke in Varel, Nordenham und Augsburg werden von EADS-Tochter Premium Aerotec weitergeführt (2008-11-29)\n",
+ "Processing datasets/german-quotations/train/61374 - EU-Kommission empfiehlt Beitrittsverhandlungen mit Island (2010-02-25).pretty.json\n",
+ "61374 - EU-Kommission empfiehlt Beitrittsverhandlungen mit Island (2010-02-25)\n",
+ "Processing datasets/german-quotations/train/12706 - Tropensturm Rita hat sich zum Hurrikan gewandelt (2005-09-21).pretty.json\n",
+ "12706 - Tropensturm Rita hat sich zum Hurrikan gewandelt (2005-09-21)\n",
+ "Processing datasets/german-quotations/train/82374 - Vierter „Chemtrail“ seit Jahresbeginn über Kaiserslautern (2018-04-06).pretty.json\n",
+ "82374 - Vierter „Chemtrail“ seit Jahresbeginn über Kaiserslautern (2018-04-06)\n",
+ "Processing datasets/german-quotations/train/56546 - Genfer Salon: Noch sind Elektroautos rar (2009-03-09).pretty.json\n",
+ "56546 - Genfer Salon: Noch sind Elektroautos rar (2009-03-09)\n",
+ "Processing datasets/german-quotations/train/60843 - US-Regierung will Atomkraft ausbauen (2010-02-01).pretty.json\n",
+ "60843 - US-Regierung will Atomkraft ausbauen (2010-02-01)\n",
+ "Processing datasets/german-quotations/train/4561 - Heftiger Streit um Religion als Pflichtfach (2005-04-10).pretty.json\n",
+ "4561 - Heftiger Streit um Religion als Pflichtfach (2005-04-10)\n",
+ "Processing datasets/german-quotations/train/44978 - Mutmaßlicher Kinderschänder festgenommen (2007-10-19).pretty.json\n",
+ "44978 - Mutmaßlicher Kinderschänder festgenommen (2007-10-19)\n",
+ "Processing datasets/german-quotations/train/69492 - Tegelbergbahn fährt nach Rettungsaktion wieder (2011-08-16).pretty.json\n",
+ "69492 - Tegelbergbahn fährt nach Rettungsaktion wieder (2011-08-16)\n",
+ "Processing datasets/german-quotations/train/51046 - Energieunternehmen „con energy“ investiert in Elektroauto „mindset“ (2008-06-19).pretty.json\n",
+ "51046 - Energieunternehmen „con energy“ investiert in Elektroauto „mindset“ (2008-06-19)\n",
+ "Processing datasets/german-quotations/train/10057 - Ermittler erheben Vorwürfe gegen Air-France-Piloten (2005-08-06).pretty.json\n",
+ "10057 - Ermittler erheben Vorwürfe gegen Air-France-Piloten (2005-08-06)\n",
+ "Processing datasets/german-quotations/train/25347 - Die Dominikanische Republik bekommt einen neuen Flughafen (2006-04-13).pretty.json\n",
+ "25347 - Die Dominikanische Republik bekommt einen neuen Flughafen (2006-04-13)\n",
+ "Processing datasets/german-quotations/train/4495 - Fürst Rainier von Monaco ist tot (2005-04-06).pretty.json\n",
+ "4495 - Fürst Rainier von Monaco ist tot (2005-04-06)\n",
+ "Processing datasets/german-quotations/train/28063 - Der Wechsel von Lukas Podolski zu Bayern München ist perfekt (2006-06-05).pretty.json\n",
+ "28063 - Der Wechsel von Lukas Podolski zu Bayern München ist perfekt (2006-06-05)\n",
+ "Processing datasets/german-quotations/train/925 - Neues Layout-Programm für Linux, Windows und OS X (2004-12-04).pretty.json\n",
+ "925 - Neues Layout-Programm für Linux, Windows und OS X (2004-12-04)\n",
+ "Processing datasets/german-quotations/train/30019 - Syd Barrett ist tot (2006-07-13).pretty.json\n",
+ "30019 - Syd Barrett ist tot (2006-07-13)\n",
+ "Processing datasets/german-quotations/train/73775 - Indien entwickelt neue Atomraketen (2012-09-02).pretty.json\n",
+ "73775 - Indien entwickelt neue Atomraketen (2012-09-02)\n",
+ "Processing datasets/german-quotations/train/34379 - Israelische Luftwaffe peilte deutsche Kriegsschiffe an (2006-10-29).pretty.json\n",
+ "34379 - Israelische Luftwaffe peilte deutsche Kriegsschiffe an (2006-10-29)\n",
+ "Processing datasets/german-quotations/train/60475 - Tausende Tote nach verheerendem Erdbeben in Haiti (2010-01-14).pretty.json\n",
+ "60475 - Tausende Tote nach verheerendem Erdbeben in Haiti (2010-01-14)\n",
+ "Processing datasets/german-quotations/train/82340 - Leipziger Buchmesse blickt nach Südosteuropa (2018-03-17).pretty.json\n",
+ "82340 - Leipziger Buchmesse blickt nach Südosteuropa (2018-03-17)\n",
+ "Processing datasets/german-quotations/train/20384 - Wikipedia.de außer Betrieb (2006-01-19).pretty.json\n",
+ "20384 - Wikipedia.de außer Betrieb (2006-01-19)\n",
+ "Processing datasets/german-quotations/train/5423 - Metager2 ist am Netz (2005-05-18).pretty.json\n",
+ "5423 - Metager2 ist am Netz (2005-05-18)\n",
+ "Processing datasets/german-quotations/dev/15274 - SPD-Krise: Auch Wieczorek-Zeul wirft das Handtuch (2005-11-01).pretty.json\n",
+ "15274 - SPD-Krise: Auch Wieczorek-Zeul wirft das Handtuch (2005-11-01)\n",
+ "Processing datasets/german-quotations/dev/33988 - In Bad Hersfeld erschallt wieder „Enner, zwoon, daäi – Bruder Lolls“ (2006-10-17).pretty.json\n",
+ "33988 - In Bad Hersfeld erschallt wieder „Enner, zwoon, daäi – Bruder Lolls“ (2006-10-17)\n",
+ "Processing datasets/german-quotations/dev/80023 - Hämische Kommentare im Netz über AirPods (2016-09-13).pretty.json\n",
+ "80023 - Hämische Kommentare im Netz über AirPods (2016-09-13)\n",
+ "Processing datasets/german-quotations/dev/76356 - Bremen hat die höchste Leistungsdichte bei Windkraft (2013-11-03).pretty.json\n",
+ "76356 - Bremen hat die höchste Leistungsdichte bei Windkraft (2013-11-03)\n",
+ "Processing datasets/german-quotations/dev/73035 - US-amerikanischer Deserteur gibt sich nach 28 Jahren in Schweden zu erkennen (2012-06-23).pretty.json\n",
+ "73035 - US-amerikanischer Deserteur gibt sich nach 28 Jahren in Schweden zu erkennen (2012-06-23)\n",
+ "Processing datasets/german-quotations/dev/25006 - Ur-Fisch in Kanada entdeckt (2006-04-07).pretty.json\n",
+ "25006 - Ur-Fisch in Kanada entdeckt (2006-04-07)\n",
+ "Processing datasets/german-quotations/dev/22959 - Ein Drittel der Arbeitsplätze bei Coca-Cola in Gefahr (2006-03-02).pretty.json\n",
+ "22959 - Ein Drittel der Arbeitsplätze bei Coca-Cola in Gefahr (2006-03-02)\n",
+ "Processing datasets/german-quotations/dev/6506 - Progress Raumfrachter dockt an Internationale Raumstation ISS an (2005-06-19).pretty.json\n",
+ "6506 - Progress Raumfrachter dockt an Internationale Raumstation ISS an (2005-06-19)\n",
+ "Processing datasets/german-quotations/dev/23741 - Dritthöchster Wasserfall der Welt entdeckt (2006-03-16).pretty.json\n",
+ "23741 - Dritthöchster Wasserfall der Welt entdeckt (2006-03-16)\n",
+ "Processing datasets/german-quotations/dev/64683 - Kritik an Nominierung von Schäuble-Tochter zur SWR-Fernsehfilmchefin (2010-11-19).pretty.json\n",
+ "64683 - Kritik an Nominierung von Schäuble-Tochter zur SWR-Fernsehfilmchefin (2010-11-19)\n",
+ "Processing datasets/german-quotations/dev/49037 - Finanzkrise – weltweit schwarzer Tag für die Börsen (2008-03-17).pretty.json\n",
+ "49037 - Finanzkrise – weltweit schwarzer Tag für die Börsen (2008-03-17)\n",
+ "Processing datasets/german-quotations/dev/57661 - USA bereiten sich auf „Cyberwar“ vor (2009-06-01).pretty.json\n",
+ "57661 - USA bereiten sich auf „Cyberwar“ vor (2009-06-01)\n",
+ "Processing datasets/german-quotations/dev/16470 - Japan: Daten über Erdbeben-Sicherheit gefälscht und nicht geprüft (2005-11-29).pretty.json\n",
+ "16470 - Japan: Daten über Erdbeben-Sicherheit gefälscht und nicht geprüft (2005-11-29)\n",
+ "Processing datasets/german-quotations/dev/67339 - Überschwemmungen in Thailand: Situation weiterhin kritisch (2011-04-02).pretty.json\n",
+ "67339 - Überschwemmungen in Thailand: Situation weiterhin kritisch (2011-04-02)\n",
+ "Processing datasets/german-quotations/dev/75792 - Unruhen im Westen Chinas: Dutzende Tote (2013-06-30).pretty.json\n",
+ "75792 - Unruhen im Westen Chinas: Dutzende Tote (2013-06-30)\n",
+ "Processing datasets/german-quotations/dev/53181 - Damenskispringen: Deutscher Doppelsieg in Oberstdorf (2008-09-26).pretty.json\n",
+ "53181 - Damenskispringen: Deutscher Doppelsieg in Oberstdorf (2008-09-26)\n",
+ "Processing datasets/german-quotations/dev/15510 - Bilanz der achten Nacht der Pariser Ausschreitungen (2005-11-04).pretty.json\n",
+ "15510 - Bilanz der achten Nacht der Pariser Ausschreitungen (2005-11-04)\n",
+ "Processing datasets/german-quotations/dev/53153 - Datenauslieferung an die Vereinigten Staaten: Der Arbeitskreis Vorratsdatenspeicherung veröffentlicht Geheimdokument (2008-09-25).pretty.json\n",
+ "53153 - Datenauslieferung an die Vereinigten Staaten: Der Arbeitskreis Vorratsdatenspeicherung veröffentlicht Geheimdokument (2008-09-25)\n",
+ "Processing datasets/german-quotations/dev/60632 - Google machte 2009 einen Gewinn von 4,6 Milliarden Euro (2010-01-23).pretty.json\n",
+ "60632 - Google machte 2009 einen Gewinn von 4,6 Milliarden Euro (2010-01-23)\n",
+ "Processing datasets/german-quotations/dev/39049 - Mönchengladbach: Nicht vollstreckter Haftbefehl ermöglichte Doppelmord (2007-03-16).pretty.json\n",
+ "39049 - Mönchengladbach: Nicht vollstreckter Haftbefehl ermöglichte Doppelmord (2007-03-16)\n",
+ "Processing datasets/german-quotations/dev/17060 - Rice-Erklärung zur CIA-Affäre: Fragen bleiben (2005-12-09).pretty.json\n",
+ "17060 - Rice-Erklärung zur CIA-Affäre: Fragen bleiben (2005-12-09)\n",
+ "Processing datasets/german-quotations/dev/67140 - Pipe Dreams - Eine Chronik des Lebens entlang der Pipeline (2011-03-23).pretty.json\n",
+ "67140 - Pipe Dreams - Eine Chronik des Lebens entlang der Pipeline (2011-03-23)\n",
+ "Processing datasets/german-quotations/dev/64195 - Frankreich: Borloo dementiert Gerüchte über Fillon-Nachfolge (2010-10-21).pretty.json\n",
+ "64195 - Frankreich: Borloo dementiert Gerüchte über Fillon-Nachfolge (2010-10-21)\n",
+ "Processing datasets/german-quotations/dev/58207 - G8-Gipfel: Nein zu Atomwaffen, Kritik an Iran (2009-07-10).pretty.json\n",
+ "58207 - G8-Gipfel: Nein zu Atomwaffen, Kritik an Iran (2009-07-10)\n",
+ "Processing datasets/german-quotations/dev/55038 - Israel startet Bodenoffensive in den Gazastreifen (2009-01-03).pretty.json\n",
+ "55038 - Israel startet Bodenoffensive in den Gazastreifen (2009-01-03)\n",
+ "Processing datasets/german-quotations/dev/2981 - US-Schauspieler Ossie Davis tot (2005-02-05).pretty.json\n",
+ "2981 - US-Schauspieler Ossie Davis tot (2005-02-05)\n",
+ "Processing datasets/german-quotations/dev/28114 - Bär wieder in Bayern (2006-06-06).pretty.json\n",
+ "28114 - Bär wieder in Bayern (2006-06-06)\n",
+ "Processing datasets/german-quotations/dev/48927 - Saturnsonde „Cassini“ passiert heute den Saturnmond Enceladus (2008-03-12).pretty.json\n",
+ "48927 - Saturnsonde „Cassini“ passiert heute den Saturnmond Enceladus (2008-03-12)\n",
+ "Processing datasets/german-quotations/dev/72093 - Starkes Erdbeben erschüttert Mexikos Süden (2012-03-21).pretty.json\n",
+ "72093 - Starkes Erdbeben erschüttert Mexikos Süden (2012-03-21)\n",
+ "Processing datasets/german-quotations/dev/58288 - Menden (Sauerland): Auto raste in Schützenumzug (2009-07-20).pretty.json\n",
+ "58288 - Menden (Sauerland): Auto raste in Schützenumzug (2009-07-20)\n",
+ "Processing datasets/german-quotations/dev/50288 - Taifun Halong tobte über die Philippinen (2008-05-19).pretty.json\n",
+ "50288 - Taifun Halong tobte über die Philippinen (2008-05-19)\n",
+ "Processing datasets/german-quotations/dev/82467 - Japan droht erneute Rezession (2018-06-11).pretty.json\n",
+ "82467 - Japan droht erneute Rezession (2018-06-11)\n",
+ "Processing datasets/german-quotations/dev/17905 - Gewerkschaft der Polizei kritisiert Innenminister Schäuble (2005-12-19).pretty.json\n",
+ "17905 - Gewerkschaft der Polizei kritisiert Innenminister Schäuble (2005-12-19)\n",
+ "Processing datasets/german-quotations/dev/16930 - Überraschung bei der ESA: Keine Beteiligung an russischer Raumfähre „Kliper“ beschlossen (2005-12-07).pretty.json\n",
+ "16930 - Überraschung bei der ESA: Keine Beteiligung an russischer Raumfähre „Kliper“ beschlossen (2005-12-07)\n",
+ "Processing datasets/german-quotations/dev/53717 - EU-Menschenrechtspreis an chinesischen Bürgerrechtler verliehen (2008-10-25).pretty.json\n",
+ "53717 - EU-Menschenrechtspreis an chinesischen Bürgerrechtler verliehen (2008-10-25)\n",
+ "Processing datasets/german-quotations/dev/33687 - Neuer Airbus-Chef Gallois will Arbeitsplätze abbauen (2006-10-10).pretty.json\n",
+ "33687 - Neuer Airbus-Chef Gallois will Arbeitsplätze abbauen (2006-10-10)\n",
+ "Processing datasets/german-quotations/dev/45056 - Friedensnobelpreisträger Al Gore hielt in Berlin eine Rede zum Klimaschutz (2007-10-24).pretty.json\n",
+ "45056 - Friedensnobelpreisträger Al Gore hielt in Berlin eine Rede zum Klimaschutz (2007-10-24)\n",
+ "Processing datasets/german-quotations/dev/64973 - Fluglotsenstreik in Spanien: Regierung ruft Alarmzustand aus (2010-12-04).pretty.json\n",
+ "64973 - Fluglotsenstreik in Spanien: Regierung ruft Alarmzustand aus (2010-12-04)\n",
+ "Processing datasets/german-quotations/dev/3216 - Deutsche Bank will auf betriebsbedingte Kündigungen verzichten (2005-02-15).pretty.json\n",
+ "3216 - Deutsche Bank will auf betriebsbedingte Kündigungen verzichten (2005-02-15)\n",
+ "Processing datasets/german-quotations/dev/33173 - Frankreich und Tunesien Weltmeister im Pétanque (2006-09-25).pretty.json\n",
+ "33173 - Frankreich und Tunesien Weltmeister im Pétanque (2006-09-25)\n",
+ "Processing datasets/german-quotations/dev/40463 - Erster südamerikanischer Energiegipfel tagt auf der Isla Margarita (2007-04-17).pretty.json\n",
+ "40463 - Erster südamerikanischer Energiegipfel tagt auf der Isla Margarita (2007-04-17)\n",
+ "Processing datasets/german-quotations/dev/7771 - SPD beschließt „Manifest“ zur Bundestagswahl (2005-07-04).pretty.json\n",
+ "7771 - SPD beschließt „Manifest“ zur Bundestagswahl (2005-07-04)\n",
+ "Processing datasets/german-quotations/dev/84711 - Australian Open: Nadal gewinnt das 21. Tennis-Grand-Slam-Turnier (2022-02-03).pretty.json\n",
+ "84711 - Australian Open: Nadal gewinnt das 21. Tennis-Grand-Slam-Turnier (2022-02-03)\n",
+ "Processing datasets/german-quotations/dev/8014 - Bundesrat beratschlagt über Korrekturen bei Hartz IV (2005-07-09).pretty.json\n",
+ "8014 - Bundesrat beratschlagt über Korrekturen bei Hartz IV (2005-07-09)\n",
+ "Processing datasets/german-quotations/dev/80698 - Frankreich: Mehrere Verletzte bei Schießerei in Schule (2017-03-17).pretty.json\n",
+ "80698 - Frankreich: Mehrere Verletzte bei Schießerei in Schule (2017-03-17)\n",
+ "Processing datasets/german-quotations/dev/52546 - Thailand: Trotz Verhängung des Ausnahmezustandes dauern Massenproteste an (2008-09-03).pretty.json\n",
+ "52546 - Thailand: Trotz Verhängung des Ausnahmezustandes dauern Massenproteste an (2008-09-03)\n",
+ "Processing datasets/german-quotations/dev/28924 - Nur noch 1.000 Dauerkarten beim FC St. Pauli (2006-06-24).pretty.json\n",
+ "28924 - Nur noch 1.000 Dauerkarten beim FC St. Pauli (2006-06-24)\n",
+ "Processing datasets/german-quotations/dev/78978 - Ein unpolitischer Abend für Kleinparteien in Bremen (2015-04-26).pretty.json\n",
+ "78978 - Ein unpolitischer Abend für Kleinparteien in Bremen (2015-04-26)\n",
+ "Processing datasets/german-quotations/dev/61850 - Vier neue Professoren in Maria Gugging (Österreich) (2010-03-26).pretty.json\n",
+ "61850 - Vier neue Professoren in Maria Gugging (Österreich) (2010-03-26)\n",
+ "Processing datasets/german-quotations/dev/9686 - Kundgebung von Mubarak-Gegnern in Kairo gewaltsam beendet (2005-07-31).pretty.json\n",
+ "9686 - Kundgebung von Mubarak-Gegnern in Kairo gewaltsam beendet (2005-07-31)\n",
+ "Processing datasets/german-quotations/dev/68176 - New York City: Strauss-Kahn bleibt in Untersuchungshaft (2011-05-16).pretty.json\n",
+ "68176 - New York City: Strauss-Kahn bleibt in Untersuchungshaft (2011-05-16)\n",
+ "Processing datasets/german-quotations/dev/40211 - Im VW-Werk Emden sollen bald auch Audi-Modelle vom Band rollen (2007-04-09).pretty.json\n",
+ "40211 - Im VW-Werk Emden sollen bald auch Audi-Modelle vom Band rollen (2007-04-09)\n",
+ "Processing datasets/german-quotations/dev/69005 - Krankenkassen: Mitglieder der geschlosenen City-BKK müssen bis 14. Juli eine Folgeversicherung vorweisen (2011-07-11).pretty.json\n",
+ "69005 - Krankenkassen: Mitglieder der geschlosenen City-BKK müssen bis 14. Juli eine Folgeversicherung vorweisen (2011-07-11)\n",
+ "Processing datasets/german-quotations/dev/52963 - Eklat während Wahlsendung – ödp-Spitzenkandidat Suttner verließ Gesprächsrunde wegen NPD vorzeitig (2008-09-17).pretty.json\n",
+ "52963 - Eklat während Wahlsendung – ödp-Spitzenkandidat Suttner verließ Gesprächsrunde wegen NPD vorzeitig (2008-09-17)\n",
+ "Processing datasets/german-quotations/dev/35359 - Kleinflugzeug stürzte auf Autobahn A 52 (2006-11-25).pretty.json\n",
+ "35359 - Kleinflugzeug stürzte auf Autobahn A 52 (2006-11-25)\n",
+ "Processing datasets/german-quotations/dev/34005 - Island nimmt kommerziellen Walfang wieder auf (2006-10-17).pretty.json\n",
+ "34005 - Island nimmt kommerziellen Walfang wieder auf (2006-10-17)\n",
+ "Processing datasets/german-quotations/dev/81491 - Die Freie Demokratische Partei kämpft um Wählerstimmen (2017-08-29).pretty.json\n",
+ "81491 - Die Freie Demokratische Partei kämpft um Wählerstimmen (2017-08-29)\n",
+ "Processing datasets/german-quotations/dev/36276 - Kamel auf türkischem Flughafen geopfert (2006-12-16).pretty.json\n",
+ "36276 - Kamel auf türkischem Flughafen geopfert (2006-12-16)\n",
+ "Processing datasets/german-quotations/dev/84153 - Friedensnobelpreis 2020 geht an das Welternährungsprogramm der Vereinten Nationen (2020-10-10).pretty.json\n",
+ "84153 - Friedensnobelpreis 2020 geht an das Welternährungsprogramm der Vereinten Nationen (2020-10-10)\n",
+ "Processing datasets/german-quotations/dev/38981 - Madrid: Denkmal für die Terroropfer von 2004 eingeweiht (2007-03-12).pretty.json\n",
+ "38981 - Madrid: Denkmal für die Terroropfer von 2004 eingeweiht (2007-03-12)\n",
+ "Processing datasets/german-quotations/dev/71241 - Tschechischer Künstler will 60.000 Exemplare von Sarrazins Buch recyceln (2012-01-15).pretty.json\n",
+ "71241 - Tschechischer Künstler will 60.000 Exemplare von Sarrazins Buch recyceln (2012-01-15)\n",
+ "Processing datasets/german-quotations/dev/16696 - West-Papua: Häftling hisst „Morning Star“ (2005-12-03).pretty.json\n",
+ "16696 - West-Papua: Häftling hisst „Morning Star“ (2005-12-03)\n",
+ "Processing datasets/german-quotations/dev/43859 - Neubau des Jenoptik-Betriebskindergartens eröffnet (2007-08-28).pretty.json\n",
+ "43859 - Neubau des Jenoptik-Betriebskindergartens eröffnet (2007-08-28)\n",
+ "Processing datasets/german-quotations/dev/27603 - Internationale Truppe soll Lage in Timor-Leste stabilisieren (2006-05-27).pretty.json\n",
+ "27603 - Internationale Truppe soll Lage in Timor-Leste stabilisieren (2006-05-27)\n",
+ "Processing datasets/german-quotations/dev/71370 - Mexikanischer Präsident verkündet Notfallplan wegen extremer Trockenheit (2012-01-24).pretty.json\n",
+ "71370 - Mexikanischer Präsident verkündet Notfallplan wegen extremer Trockenheit (2012-01-24)\n",
+ "Processing datasets/german-quotations/dev/38971 - Deutsche Verbraucher kaufen mehr, aber billigere Schuhe (2007-03-12).pretty.json\n",
+ "38971 - Deutsche Verbraucher kaufen mehr, aber billigere Schuhe (2007-03-12)\n",
+ "Processing datasets/german-quotations/dev/74519 - Volksrepublik China: Hochgeschwindigkeitsbahnstrecke Peking–Guangzhou eröffnet (2012-12-28).pretty.json\n",
+ "74519 - Volksrepublik China: Hochgeschwindigkeitsbahnstrecke Peking–Guangzhou eröffnet (2012-12-28)\n",
+ "Processing datasets/german-quotations/dev/36485 - Jimmy Wales sagt Google mit Suchmaschine den Kampf an (2006-12-24).pretty.json\n",
+ "36485 - Jimmy Wales sagt Google mit Suchmaschine den Kampf an (2006-12-24)\n",
+ "Processing datasets/german-quotations/dev/29368 - Ingeborg-Bachmann-Preis 2006 ging an Kathrin Passig (2006-07-01).pretty.json\n",
+ "29368 - Ingeborg-Bachmann-Preis 2006 ging an Kathrin Passig (2006-07-01)\n",
+ "Processing datasets/german-quotations/dev/45353 - Mexikanischer Bundesstaat Tabasco überflutet (2007-11-03).pretty.json\n",
+ "45353 - Mexikanischer Bundesstaat Tabasco überflutet (2007-11-03)\n",
+ "Processing datasets/german-quotations/dev/5352 - Familiendrama in Witten (2005-05-14).pretty.json\n",
+ "5352 - Familiendrama in Witten (2005-05-14)\n",
+ "Processing datasets/german-quotations/dev/31406 - Hoffnung auf Waffenstillstand in Nahost (2006-08-13).pretty.json\n",
+ "31406 - Hoffnung auf Waffenstillstand in Nahost (2006-08-13)\n",
+ "Processing datasets/german-quotations/dev/48004 - Unabhängigkeitserklärung des Kosovos am 17. Februar 2008 erwartet (2008-02-15).pretty.json\n",
+ "48004 - Unabhängigkeitserklärung des Kosovos am 17. Februar 2008 erwartet (2008-02-15)\n",
+ "Processing datasets/german-quotations/dev/52532 - ARGE versetzt Mutter zweier Kinder in Angst und Schrecken (2008-09-02).pretty.json\n",
+ "52532 - ARGE versetzt Mutter zweier Kinder in Angst und Schrecken (2008-09-02)\n",
+ "Processing datasets/german-quotations/dev/61440 - Orkantief Xynthia wütet über Europa (2010-03-01).pretty.json\n",
+ "61440 - Orkantief Xynthia wütet über Europa (2010-03-01)\n",
+ "Processing datasets/german-quotations/dev/65535 - Berlin: Parteitag der islamkritischen Partei „Die Freiheit“ konnte nicht stattfinden (2011-01-12).pretty.json\n",
+ "65535 - Berlin: Parteitag der islamkritischen Partei „Die Freiheit“ konnte nicht stattfinden (2011-01-12)\n",
+ "Processing datasets/german-quotations/dev/76866 - Massaker im Südsudan: Hunderte Zivilisten getötet (2014-04-22).pretty.json\n",
+ "76866 - Massaker im Südsudan: Hunderte Zivilisten getötet (2014-04-22)\n",
+ "Processing datasets/german-quotations/dev/61671 - EADS verliert Milliardenauftrag für US-Luftwaffe (2010-03-09).pretty.json\n",
+ "61671 - EADS verliert Milliardenauftrag für US-Luftwaffe (2010-03-09)\n",
+ "Processing datasets/german-quotations/dev/30088 - Luxemburg: Zahlreiche Verletzte bei Brand eines Zugwaggons (2006-07-15).pretty.json\n",
+ "30088 - Luxemburg: Zahlreiche Verletzte bei Brand eines Zugwaggons (2006-07-15)\n",
+ "Processing datasets/german-quotations/dev/79539 - Indoktrination in islamischen Kindergärten aufgedeckt (2016-02-29).pretty.json\n",
+ "79539 - Indoktrination in islamischen Kindergärten aufgedeckt (2016-02-29)\n",
+ "Processing datasets/german-quotations/dev/74355 - Tanklager in Bremen-Farge: Zukunft noch ungewiss (2012-11-20).pretty.json\n",
+ "74355 - Tanklager in Bremen-Farge: Zukunft noch ungewiss (2012-11-20)\n",
+ "Processing datasets/german-quotations/dev/49380 - Neapels Müll wird jetzt in Deutschland entsorgt (2008-04-01).pretty.json\n",
+ "49380 - Neapels Müll wird jetzt in Deutschland entsorgt (2008-04-01)\n",
+ "Processing datasets/german-quotations/dev/39256 - Vollsperrung der A 2 nach Gefahrgutunfall (2007-03-23).pretty.json\n",
+ "39256 - Vollsperrung der A 2 nach Gefahrgutunfall (2007-03-23)\n",
+ "Processing datasets/german-quotations/dev/73255 - Dortmund: Streit zwischen zwei Familien endet fast tödlich (2012-07-05).pretty.json\n",
+ "73255 - Dortmund: Streit zwischen zwei Familien endet fast tödlich (2012-07-05)\n",
+ "Processing datasets/german-quotations/dev/64906 - Feindliche Übernahme von Hochtief durch ACS steht offenbar unmittelbar bevor (2010-12-01).pretty.json\n",
+ "64906 - Feindliche Übernahme von Hochtief durch ACS steht offenbar unmittelbar bevor (2010-12-01)\n",
+ "Processing datasets/german-quotations/dev/17214 - Über 100 Tote bei Flugzeugabsturz in Nigeria (2005-12-10).pretty.json\n",
+ "17214 - Über 100 Tote bei Flugzeugabsturz in Nigeria (2005-12-10)\n",
+ "Processing datasets/german-quotations/dev/48343 - Erdbeben erschüttert England (2008-02-27).pretty.json\n",
+ "48343 - Erdbeben erschüttert England (2008-02-27)\n",
+ "Processing datasets/german-quotations/dev/49475 - Simbabwe: Gericht nimmt Klage auf Veröffentlichung der Wahlergebnisse zur Entscheidung an (2008-04-07).pretty.json\n",
+ "49475 - Simbabwe: Gericht nimmt Klage auf Veröffentlichung der Wahlergebnisse zur Entscheidung an (2008-04-07)\n",
+ "Processing datasets/german-quotations/dev/69844 - Oktoberfest: Betrüger verkaufen falsche Tischreservierungen (2011-09-26).pretty.json\n",
+ "69844 - Oktoberfest: Betrüger verkaufen falsche Tischreservierungen (2011-09-26)\n",
+ "Processing datasets/german-quotations/dev/37752 - Raubüberfall in Kaiserslautern: 20-Jähriger zusammengeschlagen und bestohlen (2007-02-02).pretty.json\n",
+ "37752 - Raubüberfall in Kaiserslautern: 20-Jähriger zusammengeschlagen und bestohlen (2007-02-02)\n",
+ "Processing datasets/german-quotations/dev/13389 - Sohn von Willy Bogner hat Selbstmord begangen (2005-10-04).pretty.json\n",
+ "13389 - Sohn von Willy Bogner hat Selbstmord begangen (2005-10-04)\n",
+ "Processing datasets/german-quotations/dev/48555 - Fußball: Marco van Basten ist neuer Trainer von Ajax Amsterdam (2008-02-29).pretty.json\n",
+ "48555 - Fußball: Marco van Basten ist neuer Trainer von Ajax Amsterdam (2008-02-29)\n",
+ "Processing datasets/german-quotations/dev/84747 - Mannheim: Ukraine-Friedensmarsch überquert Rhein und Neckar (2022-03-06).pretty.json\n",
+ "84747 - Mannheim: Ukraine-Friedensmarsch überquert Rhein und Neckar (2022-03-06)\n",
+ "Processing datasets/german-quotations/dev/76796 - G8 der Industrie schließen Russland aus und sorgen damit für Diskussionen auch beim Atomgipfel (2014-03-27).pretty.json\n",
+ "76796 - G8 der Industrie schließen Russland aus und sorgen damit für Diskussionen auch beim Atomgipfel (2014-03-27)\n",
+ "Processing datasets/german-quotations/dev/75087 - EU-Grenzwerte überschritten: Keine Fristverlängerung für deutsche Städte (2013-03-02).pretty.json\n",
+ "75087 - EU-Grenzwerte überschritten: Keine Fristverlängerung für deutsche Städte (2013-03-02)\n",
+ "Processing datasets/german-quotations/dev/38693 - Kanadisches Parlament lehnt Verlängerung der Anti-Terror-Gesetze ab (2007-03-01).pretty.json\n",
+ "38693 - Kanadisches Parlament lehnt Verlängerung der Anti-Terror-Gesetze ab (2007-03-01)\n",
+ "Processing datasets/german-quotations/dev/60617 - Kalifornien: Notstand wegen Stürmen und starker Regenfälle ausgerufen (2010-01-22).pretty.json\n",
+ "60617 - Kalifornien: Notstand wegen Stürmen und starker Regenfälle ausgerufen (2010-01-22)\n",
+ "Processing datasets/german-quotations/dev/30032 - Bürgerrechte werden weiter aufgeweicht – Regierung plant Ausweitung der Anti-Terror-Gesetze (2006-07-13).pretty.json\n",
+ "30032 - Bürgerrechte werden weiter aufgeweicht – Regierung plant Ausweitung der Anti-Terror-Gesetze (2006-07-13)\n",
+ "Processing datasets/german-quotations/dev/80634 - Guatemala: 22 Mädchen sterben nach Brandstiftung in einem Waisenhaus (2017-03-09).pretty.json\n",
+ "80634 - Guatemala: 22 Mädchen sterben nach Brandstiftung in einem Waisenhaus (2017-03-09)\n",
+ "Processing datasets/german-quotations/dev/82573 - Sexualstraftäter am Campus der Uni Frankfurt verurteilt (2018-08-20).pretty.json\n",
+ "82573 - Sexualstraftäter am Campus der Uni Frankfurt verurteilt (2018-08-20)\n",
+ "Processing datasets/german-quotations/dev/27575 - US-Soldaten begehen Kriegsverbrechen an irakischen Zivilisten (2006-05-28).pretty.json\n",
+ "27575 - US-Soldaten begehen Kriegsverbrechen an irakischen Zivilisten (2006-05-28)\n",
+ "Processing datasets/german-quotations/dev/65670 - München: Altes Bauernhaus gerät in Brand (2011-01-18).pretty.json\n",
+ "65670 - München: Altes Bauernhaus gerät in Brand (2011-01-18)\n",
+ "Processing datasets/german-quotations/dev/40205 - Thailand: Test des Tsunamiwarnsystems löste Panik aus (2007-04-09).pretty.json\n",
+ "40205 - Thailand: Test des Tsunamiwarnsystems löste Panik aus (2007-04-09)\n",
+ "Processing datasets/german-quotations/dev/22544 - Schweizer qualifizieren sich als Gruppenzweiter für die olympischen Viertelfinale (2006-02-22).pretty.json\n",
+ "22544 - Schweizer qualifizieren sich als Gruppenzweiter für die olympischen Viertelfinale (2006-02-22)\n",
+ "Processing datasets/german-quotations/dev/47942 - Huckabee gewinnt Republikaner-Vorwahl in Kansas (2008-02-11).pretty.json\n",
+ "47942 - Huckabee gewinnt Republikaner-Vorwahl in Kansas (2008-02-11)\n",
+ "Processing datasets/german-quotations/dev/42503 - Das neue Zebra-Pferdchen (2007-07-02).pretty.json\n",
+ "42503 - Das neue Zebra-Pferdchen (2007-07-02)\n",
+ "Processing datasets/german-quotations/dev/69650 - Pakistan: Mehr als 20 Tote bei Selbstmordattentat (2011-09-08).pretty.json\n",
+ "69650 - Pakistan: Mehr als 20 Tote bei Selbstmordattentat (2011-09-08)\n",
+ "Processing datasets/german-quotations/dev/29336 - Nach Einbürgerungsstreit um Ayaan Hirsi Ali: Balkenende zurückgetreten (2006-06-30).pretty.json\n",
+ "29336 - Nach Einbürgerungsstreit um Ayaan Hirsi Ali: Balkenende zurückgetreten (2006-06-30)\n",
+ "Processing datasets/german-quotations/dev/68734 - Deutschland: Regierung rüstet auf im Kampf gegen Cyberattacken aus dem Internet (2011-06-16).pretty.json\n",
+ "68734 - Deutschland: Regierung rüstet auf im Kampf gegen Cyberattacken aus dem Internet (2011-06-16)\n",
+ "Processing datasets/german-quotations/dev/13837 - Erster Missionstag von „Shenzhou 6“: Taikonaut stieg in Orbitalmodul um (2005-10-13).pretty.json\n",
+ "13837 - Erster Missionstag von „Shenzhou 6“: Taikonaut stieg in Orbitalmodul um (2005-10-13)\n",
+ "Processing datasets/german-quotations/dev/5906 - Zeitgenössische Kunstausstellung auf der Festung Ehrenbreitstein eröffnet (2005-06-05).pretty.json\n",
+ "5906 - Zeitgenössische Kunstausstellung auf der Festung Ehrenbreitstein eröffnet (2005-06-05)\n",
+ "Processing datasets/german-quotations/dev/61652 - Rechtspopulist Wilders zieht in den Stadtrat von Den Haag ein (2010-03-09).pretty.json\n",
+ "61652 - Rechtspopulist Wilders zieht in den Stadtrat von Den Haag ein (2010-03-09)\n",
+ "Processing datasets/german-quotations/dev/44604 - Speyer: Im Krankentransportwagen verstorben (2007-10-05).pretty.json\n",
+ "44604 - Speyer: Im Krankentransportwagen verstorben (2007-10-05)\n",
+ "Processing datasets/german-quotations/dev/56334 - Billigfluggesellschaft Ryanair erwägt Toilettenbenutzungsgebühr (2009-03-01).pretty.json\n",
+ "56334 - Billigfluggesellschaft Ryanair erwägt Toilettenbenutzungsgebühr (2009-03-01)\n",
+ "Processing datasets/german-quotations/dev/80019 - Verdächtiger Salafist in Niedersachsen verschwunden (2016-09-10).pretty.json\n",
+ "80019 - Verdächtiger Salafist in Niedersachsen verschwunden (2016-09-10)\n",
+ "Processing datasets/german-quotations/dev/72867 - Schlecker-Insolvenz: Verkäuferinnen zu Erzieherinnen und Altenpflegerinnen umschulen (2012-06-08).pretty.json\n",
+ "72867 - Schlecker-Insolvenz: Verkäuferinnen zu Erzieherinnen und Altenpflegerinnen umschulen (2012-06-08)\n",
+ "Processing datasets/german-quotations/dev/29847 - Verunglückter Marinetaucher war bekannter Schwimmer (2006-07-08).pretty.json\n",
+ "29847 - Verunglückter Marinetaucher war bekannter Schwimmer (2006-07-08)\n",
+ "Processing datasets/german-quotations/dev/65838 - Patent: Motorwagen Nr. 1 von Carl Benz (2011-01-29).pretty.json\n",
+ "65838 - Patent: Motorwagen Nr. 1 von Carl Benz (2011-01-29)\n",
+ "Processing datasets/german-quotations/dev/47821 - Für 200 Leute stand die Zeit still (2008-02-06).pretty.json\n",
+ "47821 - Für 200 Leute stand die Zeit still (2008-02-06)\n",
+ "Processing datasets/german-quotations/dev/11059 - Passagierflugzeug landete in Guam mit defektem Fahrwerk (2005-08-20).pretty.json\n",
+ "11059 - Passagierflugzeug landete in Guam mit defektem Fahrwerk (2005-08-20)\n",
+ "Processing datasets/german-quotations/dev/6028 - Äthiopien: Tote bei Protesten gegen die Regierung (2005-06-18).pretty.json\n",
+ "6028 - Äthiopien: Tote bei Protesten gegen die Regierung (2005-06-18)\n",
+ "Processing datasets/german-quotations/dev/76695 - Der Physiker Sebastian Pflugbeil berichtet aus Fukushima (2014-02-08).pretty.json\n",
+ "76695 - Der Physiker Sebastian Pflugbeil berichtet aus Fukushima (2014-02-08)\n",
+ "Processing datasets/german-quotations/dev/26056 - Tankstellenangestellte aus Greifswald wurde ermordet (2006-05-01).pretty.json\n",
+ "26056 - Tankstellenangestellte aus Greifswald wurde ermordet (2006-05-01)\n",
+ "Processing datasets/german-quotations/dev/2745 - Festnahme von zwei mutmaßlichen „Al-Qaida“-Mitgliedern in Mainz (2005-01-23).pretty.json\n",
+ "2745 - Festnahme von zwei mutmaßlichen „Al-Qaida“-Mitgliedern in Mainz (2005-01-23)\n",
+ "Processing datasets/german-quotations/dev/4895 - Jungfernflug des A380 soll am kommenden Mittwoch stattfinden (2005-04-25).pretty.json\n",
+ "4895 - Jungfernflug des A380 soll am kommenden Mittwoch stattfinden (2005-04-25)\n",
+ "Processing datasets/german-quotations/dev/34359 - Illegale Geschäfte mit Gewerbemüll auf einer Mülldeponie bei Schönberg? (2006-10-28).pretty.json\n",
+ "34359 - Illegale Geschäfte mit Gewerbemüll auf einer Mülldeponie bei Schönberg? (2006-10-28)\n",
+ "Processing datasets/german-quotations/dev/51806 - Serbien: Mutmaßlicher Kriegsverbrecher Radovan Karadžić gefasst (2008-07-22).pretty.json\n",
+ "51806 - Serbien: Mutmaßlicher Kriegsverbrecher Radovan Karadžić gefasst (2008-07-22)\n",
+ "Processing datasets/german-quotations/dev/78997 - Internationaler Gedenktag für Rashid Rehman (2015-05-08).pretty.json\n",
+ "78997 - Internationaler Gedenktag für Rashid Rehman (2015-05-08)\n",
+ "Processing datasets/german-quotations/dev/44357 - Myanmar: Mönche protestieren weiter (2007-09-20).pretty.json\n",
+ "44357 - Myanmar: Mönche protestieren weiter (2007-09-20)\n",
+ "Processing datasets/german-quotations/dev/6620 - Hansa Rostock verpflichtet Oumar Kondé (2005-06-21).pretty.json\n",
+ "6620 - Hansa Rostock verpflichtet Oumar Kondé (2005-06-21)\n",
+ "Processing datasets/german-quotations/dev/58969 - Bald neuer Jackson Song (2009-09-26).pretty.json\n",
+ "58969 - Bald neuer Jackson Song (2009-09-26)\n",
+ "Processing datasets/german-quotations/dev/8814 - George Hincapie gewinnt fünfzehnte Touretappe (2005-07-17).pretty.json\n",
+ "8814 - George Hincapie gewinnt fünfzehnte Touretappe (2005-07-17)\n",
+ "Processing datasets/german-quotations/dev/75720 - Tödliches Busfeuer von Selbstmörder verursacht (2013-06-09).pretty.json\n",
+ "75720 - Tödliches Busfeuer von Selbstmörder verursacht (2013-06-09)\n",
+ "Processing datasets/german-quotations/dev/18058 - Mannesmannprozess wird neu aufgerollt (2005-12-21).pretty.json\n",
+ "18058 - Mannesmannprozess wird neu aufgerollt (2005-12-21)\n",
+ "Processing datasets/german-quotations/dev/26888 - Porno-Domain: Sprecher von EU-Medienkommissarin Viviane Reding sprach von politischer Einflussnahme (2006-05-15).pretty.json\n",
+ "26888 - Porno-Domain: Sprecher von EU-Medienkommissarin Viviane Reding sprach von politischer Einflussnahme (2006-05-15)\n",
+ "Processing datasets/german-quotations/dev/58562 - Deutsche Pharmafirma soll mit Leichenteilen aus der Ukraine handeln (2009-08-24).pretty.json\n",
+ "58562 - Deutsche Pharmafirma soll mit Leichenteilen aus der Ukraine handeln (2009-08-24)\n",
+ "Processing datasets/german-quotations/dev/77143 - Putin wendet sich an China für Rüstungsgüter (2014-08-07).pretty.json\n",
+ "77143 - Putin wendet sich an China für Rüstungsgüter (2014-08-07)\n",
+ "Processing datasets/german-quotations/dev/75244 - Suhl in Thüringen: Geiselnahme im Gefängnis durch Polizei beendet (2013-03-30).pretty.json\n",
+ "75244 - Suhl in Thüringen: Geiselnahme im Gefängnis durch Polizei beendet (2013-03-30)\n",
+ "Processing datasets/german-quotations/dev/33097 - Flugunfall im Kreis Ostholstein (2006-09-24).pretty.json\n",
+ "33097 - Flugunfall im Kreis Ostholstein (2006-09-24)\n",
+ "Processing datasets/german-quotations/dev/32238 - Blitzeinschlag bei Flugschau in Hangelar (2006-08-28).pretty.json\n",
+ "32238 - Blitzeinschlag bei Flugschau in Hangelar (2006-08-28)\n",
+ "Processing datasets/german-quotations/dev/50777 - Tōkyō: Amokläufer tötet sieben Menschen (2008-06-08).pretty.json\n",
+ "50777 - Tōkyō: Amokläufer tötet sieben Menschen (2008-06-08)\n",
+ "Processing datasets/german-quotations/dev/3855 - Landser laut BGH eine kriminelle Vereinigung (2005-03-10).pretty.json\n",
+ "3855 - Landser laut BGH eine kriminelle Vereinigung (2005-03-10)\n",
+ "Processing datasets/german-quotations/dev/60162 - Deutschsprachige Wikipedia feiert 1.000.000. Artikel (2009-12-27).pretty.json\n",
+ "60162 - Deutschsprachige Wikipedia feiert 1.000.000. Artikel (2009-12-27)\n",
+ "Processing datasets/german-quotations/dev/12324 - Jenaer Feuerteufel gefasst (2005-09-10).pretty.json\n",
+ "12324 - Jenaer Feuerteufel gefasst (2005-09-10)\n",
+ "Processing datasets/german-quotations/dev/70626 - Größtes Flusskraftwerk in Norddeutschland eingeweiht (2011-11-30).pretty.json\n",
+ "70626 - Größtes Flusskraftwerk in Norddeutschland eingeweiht (2011-11-30)\n",
+ "Processing datasets/german-quotations/dev/58138 - Greenpeace-Aktivisten „schließen“ Atomkraftwerk Krümmel (2009-07-06).pretty.json\n",
+ "58138 - Greenpeace-Aktivisten „schließen“ Atomkraftwerk Krümmel (2009-07-06)\n",
+ "Processing datasets/german-quotations/dev/28234 - Irakische Regierung besetzte Innen- und Verteidigungsministerium (2006-06-08).pretty.json\n",
+ "28234 - Irakische Regierung besetzte Innen- und Verteidigungsministerium (2006-06-08)\n",
+ "Processing datasets/german-quotations/dev/52410 - Unruhen in Kaschmir halten an (2008-09-05).pretty.json\n",
+ "52410 - Unruhen in Kaschmir halten an (2008-09-05)\n",
+ "Processing datasets/german-quotations/dev/11969 - Viktoriasee in Uganda mit toxischen Stoffen belastet (2005-09-06).pretty.json\n",
+ "11969 - Viktoriasee in Uganda mit toxischen Stoffen belastet (2005-09-06)\n",
+ "Processing datasets/german-quotations/dev/77331 - Entscheidung zu neuem Wahlrecht verschärft Konflikt in Hongkong (2014-08-02).pretty.json\n",
+ "77331 - Entscheidung zu neuem Wahlrecht verschärft Konflikt in Hongkong (2014-08-02)\n"
+ ]
+ }
+ ],
+ "source": [
+ "result = []\n",
+ "for dataset_path in paths:\n",
+ " for file in dataset_path.glob(\"*.json\"):\n",
+ " with open(file, \"r\") as f:\n",
+ " data = json.load(f)\n",
+ " \n",
+ "\n",
+ " print(f\"Processing {file}\")\n",
+ " print(data[\"documentName\"])\n",
+ "\n",
+ " # get the whole document as tokens\n",
+ " document_tokens = [token for sentence in data[\"sentences\"] for token in sentence[\"tokens\"]]\n",
+ " document_token_ids = [token_id for sentence in data[\"sentences\"] for token_id in sentence[\"tokenIds\"]]\n",
+ " document_token_id2token = {token_id: token for token_id, token in zip(document_token_ids, document_tokens)}\n",
+ " assert len(document_tokens) == len(document_token_ids), \"Lengths do not match\"\n",
+ "\n",
+ " # get the speaker tokens\n",
+ " speaker_token_ids = [token_id for annotation in data[\"annotations\"] for token_id in annotation[\"speaker\"][\"tokenIds\"] if annotation[\"type\"] == \"Direct\"]\n",
+ "\n",
+ " # get the quotation tokens\n",
+ " quote_token_ids = [token_id for annotation in data[\"annotations\"] for token_id in annotation[\"quote\"][\"tokenIds\"] if annotation[\"type\"] == \"Direct\"]\n",
+ " # quote_types = [annotation[\"type\"] for annotation in data[\"annotations\"] for token_id in annotation[\"quote\"][\"tokenIds\"]]\n",
+ "\n",
+ " # sanity checks\n",
+ " # I assume that speakers do not overlap\n",
+ " # assert len(speaker_token_ids) == len(set(speaker_token_ids)), \"Speakers overlap\"\n",
+ "\n",
+ " # I assume that quotes do not overlap\n",
+ " # assert len(quote_token_ids) == len(set(quote_token_ids)), \"Quotes overlap\"\n",
+ "\n",
+ " # I assume that speakers and quotes do not overlap\n",
+ " assert len(set(speaker_token_ids).intersection(set(quote_token_ids))) == 0, \"Speakers and quotes overlap\"\n",
+ "\n",
+ " # build dicts of annotated tokens and their class\n",
+ " # coarse-grained\n",
+ " annotated_tokens = {\n",
+ " token_id: \"speaker\" for token_id in speaker_token_ids\n",
+ " }\n",
+ " annotated_tokens.update({\n",
+ " token_id: \"quote\" for token_id in quote_token_ids\n",
+ " })\n",
+ "\n",
+ " # fine-grained \n",
+ " # annotated_tokens_fine = {\n",
+ " # token_id: \"speaker\" for token_id in speaker_token_ids\n",
+ " # }\n",
+ " # annotated_tokens_fine.update({\n",
+ " # token_id: f\"quote-{token_type.lower()}\" for token_id, token_type in zip(quote_token_ids, quote_types)\n",
+ " # })\n",
+ "\n",
+ " # create the sequence classification data\n",
+ " tags = []\n",
+ " # tags_fine = []\n",
+ " for token_id in document_token_ids:\n",
+ " if token_id in annotated_tokens:\n",
+ " tags.append(annotated_tokens[token_id])\n",
+ " # tags_fine.append(annotated_tokens_fine[token_id])\n",
+ " else:\n",
+ " tags.append(\"O\")\n",
+ " # tags_fine.append(\"O\")\n",
+ "\n",
+ " # build result object\n",
+ " result.append({\n",
+ " \"tokens\": document_tokens,\n",
+ " \"tags\": tags,\n",
+ " # \"tags_fine\": tags_fine\n",
+ " })\n",
+ "\n",
+ "# write the result\n",
+ "df = pd.DataFrame(result)\n",
+ "df.to_parquet(\"datasets/german-quotations/german_quotations_test.parquet\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "data[\"documentName\"]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "document_tokens = [token for sentence in data[\"sentences\"] for token in sentence[\"tokens\"]]\n",
+ "document_token_ids = [token_id for sentence in data[\"sentences\"] for token_id in sentence[\"tokenIds\"]]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "assert len(document_tokens) == len(document_token_ids), \"Lengths do not match\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "document_token_id2token = {token_id: token for token_id, token in zip(document_token_ids, document_tokens)}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "speaker_token_ids = [token_id for annotation in data[\"annotations\"] for token_id in annotation[\"speaker\"][\"tokenIds\"]]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "speaker_token_ids"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "quote_token_ids = [token_id for annotation in data[\"annotations\"] for token_id in annotation[\"quote\"][\"tokenIds\"]]\n",
+ "quote_types = [annotation[\"type\"] for annotation in data[\"annotations\"] for token_id in annotation[\"quote\"][\"tokenIds\"]]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# I assume that speakers do not overlap\n",
+ "assert len(speaker_token_ids) == len(set(speaker_token_ids)), \"Speakers overlap\"\n",
+ "\n",
+ "# I assume that quotes do not overlap\n",
+ "assert len(quote_token_ids) == len(set(quote_token_ids)), \"Quotes overlap\"\n",
+ "\n",
+ "# I assume that speakers and quotes do not overlap\n",
+ "assert len(set(speaker_token_ids).intersection(set(quote_token_ids))) == 0, \"Speakers and quotes overlap\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "annotated_tokens = {\n",
+ " token_id: \"speaker\" for token_id in speaker_token_ids\n",
+ "}\n",
+ "\n",
+ "annotated_tokens.update({\n",
+ " token_id: \"quote\" for token_id in quote_token_ids\n",
+ "})\n",
+ "\n",
+ "annotated_tokens_fine = {k: v for k, v in annotated_tokens.items()}\n",
+ "annotated_tokens_fine.update({\n",
+ " token_id: f\"quote-{token_type.lower()}\" for token_id, token_type in zip(quote_token_ids, quote_types)\n",
+ "})"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "tags = []\n",
+ "tags_fine = []\n",
+ "for token_id in document_token_ids:\n",
+ " if token_id in annotated_tokens:\n",
+ " tags.append(annotated_tokens[token_id])\n",
+ " tags_fine.append(annotated_tokens_fine[token_id])\n",
+ " else:\n",
+ " tags.append(\"O\")\n",
+ " tags_fine.append(\"O\") "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "tags_fine"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "len(tags)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 85,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "coarse_label2lid = {\n",
+ " \"O\": 0,\n",
+ " \"speaker\": 1,\n",
+ " \"quote\": 2\n",
+ "}\n",
+ "coarse_id2label = {v: k for k, v in coarse_label2lid.items()}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "result = {\n",
+ " \"tokens\": document_tokens,\n",
+ " \"tags\": tags,\n",
+ " \"tags_fine\": tags_fine,\n",
+ "}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 70,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df = pd.read_parquet(\"datasets/german-quotations/german_quotations_test.parquet\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 71,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
tokens
\n",
+ "
tags
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
[Bei, der, Frauen-Fußballweltmeisterschaft, in...
\n",
+ "
[O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ...
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
[Am, Freitag, haben, nach, Angaben, der, Deuts...
\n",
+ "
[O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ...
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
[Wie, die, Behörden, in, Singapur, mitteilten,...
\n",
+ "
[O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ...
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
[Im, Nordosten, Kenias, greift, seit, einem, M...
\n",
+ "
[O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ...
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
[Auf, der, Autobahn, A, 67, bei, Darmstadt, is...
\n",
+ "
[O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ...
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " tokens \\\n",
+ "0 [Bei, der, Frauen-Fußballweltmeisterschaft, in... \n",
+ "1 [Am, Freitag, haben, nach, Angaben, der, Deuts... \n",
+ "2 [Wie, die, Behörden, in, Singapur, mitteilten,... \n",
+ "3 [Im, Nordosten, Kenias, greift, seit, einem, M... \n",
+ "4 [Auf, der, Autobahn, A, 67, bei, Darmstadt, is... \n",
+ "\n",
+ " tags \n",
+ "0 [O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ... \n",
+ "1 [O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ... \n",
+ "2 [O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ... \n",
+ "3 [O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ... \n",
+ "4 [O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, ... "
+ ]
+ },
+ "execution_count": 71,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 72,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df[\"isempty\"] = df[\"tags\"].apply(lambda x: len(set(x)) == 1 and \"O\" in x)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 73,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "627"
+ ]
+ },
+ "execution_count": 73,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df[\"isempty\"].sum()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 74,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "998"
+ ]
+ },
+ "execution_count": 74,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "len(df)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 78,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "371"
+ ]
+ },
+ "execution_count": 78,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# filter out empty documents\n",
+ "df2 = df[~df[\"isempty\"]]\n",
+ "len(df2)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 79,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "627"
+ ]
+ },
+ "execution_count": 79,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# filter out non empty documents\n",
+ "df3 = df[df[\"isempty\"]]\n",
+ "len(df3)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 80,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# add 10% of the empty documents to the test set\n",
+ "df4 = df3.sample(frac=0.1, random_state=42)\n",
+ "df5 = pd.concat([df2, df4])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 81,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "434"
+ ]
+ },
+ "execution_count": 81,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "len(df5)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 86,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df5[\"tags\"] = df5[\"tags\"].apply(lambda x: [coarse_label2lid[tag] for tag in x])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 87,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "