Commit ·
d2975dd
1
Parent(s): e740adf
Add paper link, GitHub repository, and sample usage instructions (#2)
Browse files- Add paper link, GitHub repository, and sample usage instructions (e5ee1785383f2856f097f44937f8625d324a4275)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,15 +1,27 @@
|
|
| 1 |
---
|
| 2 |
-
pretty_name: SciVisAgentBench
|
| 3 |
task_categories:
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
# SciVisAgentBench Tasks
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
## Data Organization
|
| 15 |
|
|
@@ -19,7 +31,6 @@ All the volume datasets from http://klacansky.com/open-scivis-datasets/ have bee
|
|
| 19 |
|
| 20 |
The datasets and tasks for ParaView-based visualizations are organized into the `main`, the `sci_volume_data`, and the `chatvis_bench` folders. The `bioimage_data` folder holds tasks for bioimage visualization, and `molecular_vis` folder holds tasks for molecular visualization. The `chatvis_bench` folder contains 20 test cases from the official [ChatVis](https://github.com/tpeterka/ChatVis) benchmark.
|
| 21 |
|
| 22 |
-
|
| 23 |
Each dataset in the `main`, the `sci_volume_data`, and the `chatvis_bench` folders follows this structure:
|
| 24 |
```
|
| 25 |
dataset_name/
|
|
@@ -56,5 +67,5 @@ SciVisAgentBench was mainly created by Kuangshi Ai (kai@nd.edu), Shusen Liu (liu
|
|
| 56 |
|
| 57 |
## License
|
| 58 |
|
| 59 |
-
©
|
| 60 |
Released under the [License](./LICENSE).
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
task_categories:
|
| 3 |
+
- text-to-3d
|
| 4 |
+
- other
|
| 5 |
+
pretty_name: SciVisAgentBench
|
| 6 |
+
license: other
|
| 7 |
---
|
| 8 |
|
| 9 |
# SciVisAgentBench Tasks
|
| 10 |
|
| 11 |
+
[Paper](https://huggingface.co/papers/2603.29139) | [Project Page](https://scivisagentbench.github.io/) | [GitHub](https://github.com/KuangshiAi/SciVisAgentBench)
|
| 12 |
+
|
| 13 |
+
This repository contains scientific data analysis and visualization datasets and tasks for benchmarking scientific visualization agents, as presented in the paper "SciVisAgentBench: A Benchmark for Evaluating Scientific Data Analysis and Visualization Agents".
|
| 14 |
+
|
| 15 |
+
## Sample Usage
|
| 16 |
|
| 17 |
+
You can download the benchmark tasks using the `huggingface_hub` CLI:
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
pip install huggingface_hub
|
| 21 |
+
hf download SciVisAgentBench/SciVisAgentBench-tasks \
|
| 22 |
+
--repo-type dataset \
|
| 23 |
+
--local-dir ~/SciVisAgentBench/SciVisAgentBench-tasks
|
| 24 |
+
```
|
| 25 |
|
| 26 |
## Data Organization
|
| 27 |
|
|
|
|
| 31 |
|
| 32 |
The datasets and tasks for ParaView-based visualizations are organized into the `main`, the `sci_volume_data`, and the `chatvis_bench` folders. The `bioimage_data` folder holds tasks for bioimage visualization, and `molecular_vis` folder holds tasks for molecular visualization. The `chatvis_bench` folder contains 20 test cases from the official [ChatVis](https://github.com/tpeterka/ChatVis) benchmark.
|
| 33 |
|
|
|
|
| 34 |
Each dataset in the `main`, the `sci_volume_data`, and the `chatvis_bench` folders follows this structure:
|
| 35 |
```
|
| 36 |
dataset_name/
|
|
|
|
| 67 |
|
| 68 |
## License
|
| 69 |
|
| 70 |
+
© 2026 University of Notre Dame.
|
| 71 |
Released under the [License](./LICENSE).
|