--- license: mit task_categories: - visual-question-answering - question-answering language: - en tags: - multimodal - agents - tool-use - benchmark - visualtoolbench size_categories: - 1K/img_*.png # one folder per sample ``` Each sample in the JSON files follows XSkill's expected schema: ```json { "doc_id": "", "problem": "\n", "images": ["VisualToolBench/images//img_0.png", ...], "solution": "", "data_source": "" } ``` The `` placeholder marks where each image is to be injected during prompt assembly; the order matches the order of paths in `images`. ## Usage ### Download ```bash huggingface-cli download wan288972153/VisualToolBench-XSkill \ VisualToolBench.zip \ --repo-type dataset \ --local-dir . unzip VisualToolBench.zip -d ./ # → ./VisualToolBench/ (contains the JSON splits + images/) ``` ### Plug into XSkill Either drop the `VisualToolBench/` folder under `/benchmark/`, or point the ablation script to wherever you put it: ```bash VTB_DATA_DIR=/path/to/VisualToolBench bash scripts_local/run_ablation.sh ``` ## Source - Original benchmark: [ScaleAI/VisualToolBench](https://huggingface.co/datasets/ScaleAI/VisualToolBench) - Conversion script: see `scripts_local/convert_visualtoolbench.py` in the XSkill repo ## Citation If you use this data, please cite the original VisualToolBench authors and the XSkill paper: ```bibtex @misc{jiang2026xskillcontinuallearningexperience, title = {XSkill: Continual Learning from Experience and Skills in Multimodal Agents}, author = {Guanyu Jiang and Zhaochen Su and Xiaoye Qu and Yi R. Fung}, year = {2026}, eprint = {2603.12056}, archivePrefix = {arXiv}, primaryClass = {cs.AI} } ```