Views
No views yet
sources/ with full provenance metadata. Targeted synthetic corrections live
in synthetic/*.jsonl. The dataset is prepared for Hugging Face datasets
via the loading script in dataset.py.sources/**.jsonl: author-attributed Q&A records (qa_record schema).synthetic/*.jsonl: synthetic Q&A records with qa_record metadata for targeted fixes.schema/: JSON Schema definitions for validation and tooling.MANIFEST.yaml: inventory, checksums, and per-file statistics.llm/.qa: full metadata records (sources + synthetic).pairs (default): instruction/response pairs from sources + synthetic files.grpo: GRPO-ready prompt/answer records with system + user messages.train split.1from datasets import load_dataset
2
3dataset = load_dataset("path/to/dataset", "pairs", trust_remote_code=True)
4train = dataset["train"]Marxist_GRPO_Training.ipynb-style training):1from datasets import load_dataset
2
3grpo = load_dataset("path/to/dataset", "grpo", trust_remote_code=True)["train"]org/dataset-name.schema/qa_record.schema.json. The pairs and grpo
configs derive their fields from the same sources plus synthetic/*.jsonl.LICENSE and MANIFEST.yaml).