--- license: cc-by-nc-4.0 pretty_name: MatSciChartQ-Traces (CC BY-NC 4.0) task_categories: - visual-question-answering - question-answering language: - en tags: - chart-understanding - materials-science - electrochemistry - battery-aging - battery-formation - polymer-electrolyte - reasoning-traces - chain-of-thought - vision-language-model - numerical-extraction - non-commercial size_categories: - 1K` tags followed by the answer | | `trace_style` | string | which solution-path template produced the trace | | `generator` | string | generator script and version, for provenance | | `license` | string | CC-BY-NC-4.0 | ## How to load The dataset is hosted at `translorentz/matsci-visual-reasoning-nc`. Each chart family is a separate config, and loading a config returns that family's trace rows. ```python from datasets import load_dataset ds = load_dataset( "translorentz/matsci-visual-reasoning-nc", "fade_trajectory_protocol_overlay", split="train", ) row = ds[0] print(row["question"]) print(row["reasoning"]) print(row["answer"]) ``` ## Use cases The library serves three purposes. For training, it provides contamination-free chain-of-thought supervision for chart reading in a specialist scientific domain, at a scale where hand-authoring is impossible but programmatic generation stays exact. For evaluation, it lets graders score the path a model takes rather than only the endpoint, which makes error analysis concrete because each miss can be attributed to a specific read or reasoning step. For tool builders, each trace spells out precisely the intermediate quantities a pixel-reading or axis-calibration tool would need to supply, which turns the gap between vanilla vision models and the exact ceiling into a specification. ## Relationship to the parent benchmark The images, questions, answers and grading tolerances are exactly those of MatSciChartQ at version 1.8.1-nc, whose July 2026 enrichment cut strengthened the materials-science framing of the questions and added six question types grounded in degradation-mode attribution, knee onset, electrode balance, and protocol dose-response reading. This repository adds only the reasoning traces and the chat-format packaging. Baseline pass rates for the parent benchmark, including the Blind floor that confirms the questions cannot be answered from text priors alone, are reported on the parent dataset card. ## Data sources and citation The charts re-render numerics from four CC BY-NC 4.0 upstream datasets. Only the sources that are directly needed to generate the images are cited, and all four are listed below. ```bibtex @article{vanvlijmen2025aging, title = {Aging matrix visualizes complexity of battery aging across hundreds of cycling protocols}, author = {van Vlijmen, Bruis and others}, journal = {Energy \& Environmental Science}, volume = {18}, pages = {6641--6654}, year = {2025}, doi = {10.1039/d4ee05609d} } @article{che2025diagnostic, title = {Diagnostic-free onboard battery health assessment}, author = {Che, Yunhong and Lam, Vivek N. and Rhyu, Jinwook and Schaeffer, Joachim and Kim, Minsu and Bazant, Martin Z. and Chueh, William C. and Braatz, Richard D.}, journal = {Joule}, volume = {9}, number = {8}, pages = {102010}, year = {2025}, doi = {10.1016/j.joule.2025.102010} } @article{cui2024formation, title = {Data-driven analysis of battery formation reveals the role of electrode utilization in extending cycle life}, author = {Cui, Xiao and Kang, Stephen Dongmin and Wang, Sunny and others}, journal = {Joule}, volume = {8}, number = {11}, pages = {3072--3087}, year = {2024}, doi = {10.1016/j.joule.2024.07.024} } @article{xie2023htpmd, title = {A cloud platform for sharing and automated analysis of raw data from high throughput polymer MD simulations}, author = {Xie, Tian and Kwon, Ha-Kyung and Schweigert, Daniel and others}, journal = {APL Machine Learning}, volume = {1}, pages = {046108}, year = {2023}, doi = {10.1063/5.0160937} } ``` ## Cite this dataset as If you use these traces in your work, please cite the dataset itself as follows. ```bibtex @misc{cheong2026matscichartqtraces, title = {MatSciChartQ-Traces: grounded reasoning traces for materials-science chart question answering}, author = {Cheong, Bryan}, year = {2026}, publisher = {Hugging Face}, doi = {10.57967/hf/9572}, url = {https://huggingface.co/datasets/translorentz/matsci-visual-reasoning-nc} } ``` ## Licence and provenance The dataset is distributed under CC BY-NC 4.0, inherited from the upstream corpora. Build provenance: schema traces-1.0.0, generator version 1.4.1, built 2026-07-12 from parent deposit version 1.8.1-nc. Per-family trace counts and the validation statement are recorded in `manifest.json` at the repository root.