Dataset Viewer
Auto-converted to Parquet Duplicate
md_content
stringlengths
9
5.09M
md_content_no_img_tbl
stringlengths
0
6.79k
ERTJ1VR683J R-T Characteristics (for reference) $$R_{25} = 68 \text{ kohm} \quad \text{+/-5\%}$$ $$B_{25/50} = 4250 \text{ K} \quad \text{+/-2\%}$$
ERTJ1VR683J R-T Characteristics (for reference) $$R_{25} = 68 \text{ kohm} \quad \text{+/-5\%}$$ $$B_{25/50} = 4250 \text{ K} \quad \text{+/-2\%}$$
"Panasonic\n\n![](data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA7sAAAGPCAIAAAASjFAzAAEAAElEQVR4nOz9(...TRUNCATED)
"Panasonic\n\nna.industrial.panasonic.com\n\nindustrial@us.panasonic.com\n\n1-800-344-2112\n\n## New(...TRUNCATED)
"Panasonic\n\n![](data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA7wAAAGLCAIAAABrwQlcAAEAAElEQVR4nOz9(...TRUNCATED)
"Panasonic\n\nna.industrial.panasonic.com\n\nindustrial@us.panasonic.com\n\n1-800-344-2112\n\n## Lin(...TRUNCATED)
"Panasonic\n\nNew Product Introduction\n\n# New ERJ-U, ERJ-C1 and EXB-U Series\n\n## Anti Sulfur Res(...TRUNCATED)
"Panasonic\n\nNew Product Introduction\n\n# New ERJ-U, ERJ-C1 and EXB-U Series\n\n## Anti Sulfur Res(...TRUNCATED)
"ERTJ0EA220J R-T Characteristics\n\n(for reference)\n\n$$R_{25} = 22 \\text{ ohm} \\quad \\pm 5\\%$$(...TRUNCATED)
"ERTJ0EA220J R-T Characteristics\n\n(for reference)\n\n$$R_{25} = 22 \\text{ ohm} \\quad \\pm 5\\%$$(...TRUNCATED)
"Panasonic\n\nProduct Change Notice\n\n# Product Change Notice - EVQ-P7, EVQ-PU and EVP-AF Series Li(...TRUNCATED)
"Panasonic\n\nProduct Change Notice\n\n# Product Change Notice - EVQ-P7, EVQ-PU and EVP-AF Series Li(...TRUNCATED)
"Panasonic\n\nProduct Change Notice\n\n# Product Change Notice - EVQ-P7, EVQ-PU and EVP-AF Series Li(...TRUNCATED)
"Panasonic\n\nProduct Change Notice\n\n# Product Change Notice - EVQ-P7, EVQ-PU and EVP-AF Series Li(...TRUNCATED)
"Panasonic\n\nRP-SDMExxDA1\n\n# ME Series\n## SDHC Memory Card, Consumer Plus MLC Model\n\n## Produc(...TRUNCATED)
"Panasonic\n\nRP-SDMExxDA1\n\n# ME Series\n## SDHC Memory Card, Consumer Plus MLC Model\n\n## Produc(...TRUNCATED)
"Panasonic\n\nRP-SDMExxDA1\n\n■ Marking Specification\n\n![](data:image/png;base64,iVBORw0KGgoAAAA(...TRUNCATED)
"Panasonic\n\nRP-SDMExxDA1\n\n■ Marking Specification\n\n“0000” Control Code (Defined as produ(...TRUNCATED)
"Panasonic\n\n![](data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA7oAAAGMCAIAAAB72kmjAAEAAElEQVR4nOz9(...TRUNCATED)
"Panasonic\n\nna.industrial.panasonic.com\n\nindustrial@us.panasonic.com\n\n1-800-344-2112\n\n## Lin(...TRUNCATED)
End of preview. Expand in Data Studio

Industrial-Instruction Dataset

Industrial-Instruction provides benchmark and training-ready QA instances derived from industrial technical reports, designed to evaluate robustness under realistic retrieval conditions. Samples are grounded in retrieved evidence and include irrelevant retrieval, single-/multi-document support, and single-/multi-document answer settings.

Paper

Industrial-Instruction: An End-to-End Framework for Building Instruction-Tuning and Benchmark Datasets from Industrial Technical Reports

arXiv: https://arxiv.org/abs/2608.22817

Configs

Config Records Description
panasonic_qa_v1 12,557 train / 1,000 test QA data generated with the open-weight Qwen3-30B-A3B-Instruct model.
panasonic_qa_claude_v1 25,252 train / 1,000 test QA data generated with Claude-Opus-4.6, same pipeline and prompts.
corpus_panasonic_md_v0_1 Retrieval corpus: layout-preserved Markdown extracted from the source PDFs.
panasonic_v0_0 7,525 Raw, unfiltered page-level extractions before quality filtering.

Each QA record is grounded in five query–document scenarios (r0–r4): irrelevant retrieval, single-/multi-document support, and single-/multi-document answer.

Usage

from datasets import load_dataset

# QA data generated with the open-weight Qwen3-30B-A3B-Instruct model
qa = load_dataset("Parssky/industrial-instruction-dataset", "panasonic_qa_v1")
# DatasetDict: train (12,557) / test (1,000)

# QA data generated with Claude-Opus-4.6
qa_claude = load_dataset("Parssky/industrial-instruction-dataset", "panasonic_qa_claude_v1")
# DatasetDict: train (25,252) / test (1,000)

# Retrieval corpus (layout-preserved Markdown pages)
corpus = load_dataset("Parssky/industrial-instruction-dataset", "corpus_panasonic_md_v0_1")

# Raw, unfiltered page-level extractions
raw = load_dataset("Parssky/industrial-instruction-dataset", "panasonic_v0_0")

Record format

Each QA record has three fields:

Field Type Description
question string The question, with its five answer options (A–E) inline.
answer list[string] Correct option letter(s), e.g. ["A"] or ["B", "C"]. Some questions have multiple correct answers.
documents list[string] Source passages retrieved from the Panasonic corpus when the item was generated.
ex = qa["test"][0]
print(ex["question"])    # "... which performance characteristic should be prioritized ...
                         #  A Thermal shock resistance  B Solderability  ..."
print(ex["answer"])      # ["A"]
print(ex["documents"])   # ["Current Sensing Resistors, Metal Plate Type\n\n## Performance ..."]

Evaluation

Answers are sets, not ordered strings, so exact-match scoring is misleading (["A","B"] vs ["B","A"]). The paper scores with Set-Match Accuracy, F1 and Jaccard similarity. Benchmark scripts: package_benchmark_panasonic.

Models trained on this dataset

Intended Use

This dataset is for research on industrial retrieval-augmented generation (RAG), evidence integration, and instruction tuning for technical-domain QA.

Notes

  • Derived from publicly available industrial technical documentation published by Panasonic Corporation.
  • Use should follow source-document terms and applicable data-use restrictions.

Source Code

GitHub repository: https://github.com/parssky/industrial-instruction

Citation

@misc{parsa_bakhtiari_2026,
    author       = { Parsa Bakhtiari and Hassan Bashiri and Alireza Khalilipour and Masoud Nasiripour and Moharram Challenger },
    title        = { industrial-instruction-dataset (Revision 7eadea0) },
    year         = 2026,
    url          = { https://huggingface.co/datasets/Parssky/industrial-instruction-dataset },
    doi          = { 10.57967/hf/10098 },
    publisher    = { Hugging Face }
}
Downloads last month
40

Models trained or fine-tuned on Parssky/industrial-instruction-dataset

Collection including Parssky/industrial-instruction-dataset

Paper for Parssky/industrial-instruction-dataset