Pith. sign in

REVIEW 4 major objections 5 minor 4 cited by

NLI4VolVis: Natural Language Interaction for Volume Visualization via LLM Multi-Agents and Editable 3D Gaussian Splatting

T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read A system combining editable 3D Gaussian splatting with LLM multi-agents lets users explore, query, and edit volume scenes using natural language.

desk verdict A first integration of editable 3DGS, CLIP querying, and multi-agent LLMs for volume visualization that ships real demos and honest limitations, but its headline open-vocabulary querying is never validated as a retrieval task. read the letter →

arxiv 2507.12621 v1 pith:PXD42GNX submitted 2025-07-16 cs.HC cs.GRcs.MA

classification cs.HCcs.GRcs.MA
keywords volumevisualizationnaturallanguageinteractionopen-vocabularyqueryingeditable3DGaussiansplattingmulti-agentLLMsemanticsegmentationstylizationhuman-computer
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper argues that volume visualization, traditionally requiring expert tuning of color-and-opacity transfer functions, can be driven by natural-language commands once a scene is decomposed into semantic components and each component is rendered as an editable 3D Gaussian splat. The proposed system, NLI4VolVis, uses vision-language embeddings of informative views so that users can refer to objects by arbitrary descriptions, and a hierarchy of LLM agents that interpret requests and issue declarative editing commands. If the system works as claimed, non-experts—including medical students, scientists, and general users—can isolate organs, change lighting, find best views, and apply artistic styles simply by typing or speaking. The paper supports this with case studies across eight datasets and a user study where participants completed tasks with a high average natural-language usage rate.

What carries the argument

The load-bearing mechanism is the per-component CLIP embedding matched with an editable Gaussian scene. Each segmented volume region is summarized by the mean CLIP embedding of its most informative rendered views, where informativeness is measured by the entropy of the alpha channel, so any free-text query can be matched to the closest object by cosine similarity. Each region is also trained as an independent iVR-GS model—an extension of 3D Gaussian splatting with per-Gaussian attributes for color offset, ambient, diffuse, specular, and shininess—so that color, opacity, and lighting can be edited in real time and scenes can be recomposed by concatenating Gaussian parameters. A hierarchy of LLM agents with function-calling tools then interprets user requests and issues declarative commands, following a visualization-perception-action loop to iteratively refine the result until the user's goal is met.

What would settle it

Run a retrieval test on a labeled volume with ground-truth object labels, such as the medical organ dataset used in the paper: issue a set of natural-language queries whose correct target object is known, plus at least one query naming something absent from the scene, and check whether the highest cosine-similarity object is the ground truth and whether the absent query is rejected. If top-1 accuracy is near chance for any dataset, or if an absent-object query yields a confident highlight, the central claim fails.

Watch

Extended reading notes

Core claim

NLI4VolVis establishes that a volumetric scene can be made queryable and editable through a combination of four components: multi-view semantic segmentation, CLIP-based open-vocabulary embeddings, per-component editable Gaussian scenes trained with iVR-GS, and a rule-based hierarchical multi-agent LLM with function-calling tools. The paper's central claim is that these components together—rather than any single model—enable open-vocabulary object querying, real-time scene editing, best-view selection, and 2D stylization in one interactive system. The paper reports case studies across eight datasets and a user study in which participants learned the system quickly, completed the assigned visualization tasks, and mostly chose natural language over the graphical interface for their interactions.

Load-bearing premise

The system's central premise is that the average CLIP embedding of a few high-entropy rendered views of a segmented object is close enough, in cosine similarity, to the natural-language phrase a user would use for that object; nothing in the paper independently validates retrieval accuracy, and out-of-scope queries are admitted to still return a confident top match.

Editorial extensions

If this is right

  • Non-experts can perform tasks like isolating organs, adjusting lighting, and stylizing scenes by describing them in natural language or voice, with rendering maintained at more than 100 frames per second on consumer GPUs.
  • Open-vocabulary querying needs no retraining for new objects: any text can be embedded with CLIP and compared against the precomputed component embeddings.
  • The pipeline accepts both pre-segmented datasets and various automatic segmentation methods, so the same NLI interface can be applied across medical, biological, and simulation volumes.
  • The visualization-perception-action loop allows multi-step requests such as 'show only the digestive system and make everything else semi-transparent' to be decomposed and executed as a sequence of declarative commands.
  • Case studies illustrate the three visualization goals—exploratory, confirmatory, and presentation—and the user study reports a high natural-language usage rate, suggesting that most users prefer speaking to GUI manipulation.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If the CLIP-alignment assumption holds broadly, the architecture could be transferred to other scientific fields—such as seismic or flow visualization—by swapping the segmentation strategy, because the rest of the pipeline is method-agnostic.
  • The acknowledged absence of automatic validation for function-calling outputs suggests a concrete safeguard: a threshold on CLIP similarity or a verification step that rejects queries with no plausible match would prevent the misleading visualizations the paper admits occur for out-of-scope queries.
  • A direct comparison of top-k entropy view selection against random view selection, holding everything else fixed, would isolate how much of the query-retrieval accuracy comes from the entropy-guided encoding rather than from CLIP itself.
  • The small user study leaves open whether the high natural-language usage rate reflects the interface's merits or the novelty of the system for participants; a longitudinal study with repeated sessions would test whether the preference persists.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper proposes NLI4VolVis, a natural-language interaction system for volume visualization that combines multi-view semantic segmentation, CLIP-based open-vocabulary embeddings, editable 3D Gaussian splatting (iVR-GS), and a hierarchical multi-agent LLM architecture with function-calling tools. The system supports open-vocabulary object querying, real-time scene editing, best-view selection, and 2D stylization. It is evaluated through case studies on eight volumetric datasets and a user study with eight participants, with additional ablations on segmentation methods, LLM latency, stylization, and the top-k view-selection parameter.

Significance. The integration of semantic segmentation, editable 3DGS, and LLM agents is a timely and potentially useful contribution that could make volume visualization more accessible to non-experts. The authors ship a demo, source code, and detailed case-study material, and they report real-time rendering speeds above 100 FPS. However, the central open-vocabulary retrieval mechanism is not validated as a retrieval task, and the user study lacks a baseline and statistical rigor; these gaps currently limit the strength of the claims 'enables users to explore, query, and edit volumetric scenes using natural language' and 'improved accessibility and usability.' If the retrieval evaluation and user-study controls are added, the contribution would be substantially strengthened.

major comments (4)
  1. [§3.2, Eq. (1)] The open-vocabulary querying step, which is the load-bearing component of the entire pipeline, is never evaluated as a retrieval task. Appendix §4 only reports the mean cosine similarity between each component's top-k CLIP embedding and its ground-truth label while varying k; it does not test whether unseen user paraphrases retrieve the correct component, nor does it include negative or out-of-scope queries. Section 5 explicitly concedes that for queries unrelated to the scene the module 'still computes the CLIP similarity... and returns the top match,' so there is no rejection mechanism. Because every downstream edit, view change, and stylization depends on the object identified by Eq. (1), the paper should add a retrieval evaluation with paraphrases, distractor queries, and out-of-scope queries across the eight datasets, reporting top-1/top-k accuracy and an appropriate rejection or validation mechanism.
  2. [§4.2, Table 3] The user study has eight participants, no control or baseline condition, and no statistical significance testing. The abstract's claim of 'improved accessibility and usability' rests on Likert ratings (Fig. 10) that are not compared against any existing VolVis tool or a GUI-only condition. Moreover, 'knowledge QA accuracy' (8.75/9) measures the LLM's answer correctness, not whether the highlighting or rendering matched the participant's intent; thus a systematic failure in the open-vocabulary retrieval would not be visible in the reported metrics. At minimum, the paper should add a baseline comparison or an objective task-success criterion (e.g., whether the correct component was selected) and report per-task accuracy.
  3. [Table 2 and Appendix §1] The per-dataset segmentation method in Table 2 is chosen as the 'optimal' method after comparing LangSplat, SAGD, and SAM 2 on the backpack dataset (Appendix §1). This post hoc selection means the eight-dataset demonstration does not establish that the pipeline generalizes without per-dataset human tuning. The paper should either fix the segmentation method across datasets or report results for all three methods on all datasets so that the robustness claim is credible.
  4. [§4.1, backpack case study] The backpack example in Fig. 8, where the same object is highlighted for queries 'the box,' 'the storage container,' and 'the square-shaped object,' is the only evidence for paraphrase robustness, and it is anecdotal. No quantitative retrieval results are given for this or any other dataset, so the claim that NLI4VolVis 'accurately interprets user intent' for vague references is not supported. Please report retrieval accuracy for multiple paraphrases per component, ideally for all datasets.
minor comments (5)
  1. [Eq. (3)] There is a typo in the text preceding Eq. (3): '2D Gaussians alone the ray' should be 'along the ray.'
  2. [Fig. 3 caption] The caption lists '(a) panel,' which is incomplete; it should read '(a) control panel' to match the text.
  3. [§3.2] The entropy formula H(I) = -∑ p_i log p_i uses 'probability (normalized opacity value),' but it is unclear how the opacity channel is normalized and whether p_i=0 is handled. Please define the normalization explicitly.
  4. [Appendix §4, Table 2] The reported variances in Table 2 are on the order of 0.0003, which is suspiciously small and likely reflects averaging over components; please report the underlying distribution (e.g., per-component similarities) so readers can assess the variation.
  5. [§4.2] The task counts are inconsistent: the text says 23 tasks and '14 tasks required at least one interaction (excluding knowledge QA tasks),' but the relationship between these numbers and the 3+9+4+1+1+5 task breakdown is not explained. Please clarify the task inventory and the definition of 'effective NL interactions.'

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the paper's claims rest on component integration and an independent user study, not on a derivation that reduces to its own inputs.

full rationale

NLI4VolVis is a systems paper; its central claims are validated by case studies and an eight-participant user study rather than by a mathematical derivation. The only load-bearing inference step is open-vocabulary object retrieval via CLIP cosine similarity (Eq. 1). This is an algorithmic selection rule, not a result derived from the system's own outputs: the object embeddings are computed from rendered views and labels, the query embedding comes from the user's text, and selecting the maximum cosine similarity is the definition of the retrieval operation, not a tautology. The appendix ablation (Table 2) measures CLIP similarity to ground-truth labels as a sanity check of the embedding; even though it does not validate user paraphrase retrieval, the absence of that validation is an evaluation gap, not circularity. The reuse of iVR-GS [58], a prior work by two of the three authors, is component reuse: the paper does not re-derive iVR-GS or claim its editability as a new result, and iVR-GS is published independently. No equation is shown to equal its own premise, no fitted parameter is renamed as a prediction, and no uniqueness argument is imported from self-citation.

Assumptions & free parameters 6 free parameters · 6 assumptions · 0 invented entities

The system depends on several modeling and evaluation assumptions. Most are standard for the systems literature (CLIP embeddings from rendered views align with language; LLM agents map intents to commands), but the paper's own Section 5 says tool outputs are not validated, so the agent-tool loop is an untested assumption for robustness. The per-dataset 'optimal' segmentation selection, preset TFs, and top-k frame count are choices that shape the reported results.

free parameters (6)
  • top-k frame count k = recommended 5-10 (ablation: k>=3 stable)
    Section 3.2 selects the k highest-entropy frames for CLIP embeddings; the choice is by hand, and the appendix ablation shows low sensitivity only for the two datasets tested.
  • number of multi-view images = 92 per dataset
    Section 4: 92 images generated via icosphere sampling in ParaView; chosen by hand and used for segmentation and iVR-GS training.
  • iVR-GS training iterations = 30,000 base + 10,000 editable
    Section 4: two-stage training schedule; matches iVR-GS defaults rather than fitted to this data.
  • maximum LLM message count = 10
    Appendix Section 2: set from TTFT measurements on GPT models to bound response latency; affects agent memory.
  • per-dataset segmentation method = TF+SAGD, SAM2, pre-segmentation, TF, etc.
    Table 2 reports the 'optimal' segmentation method chosen per dataset; selecting after seeing results shapes all downstream querying and editing performance.
  • preset transfer function = one hand-tuned TF per dataset
    Section 3.4: multi-view images for segmentation and training are rendered with a preset TF in ParaView; if the TF is poorly chosen, the semantic components may not appear.
assumptions (6)
  • domain assumption CLIP embeddings of rendered alpha-only selected views of a segmented component align semantically with natural-language queries, so cosine similarity is a reliable match signal.
    Invoked in Section 3.2 (Eq. 1) as the basis for open-vocabulary querying; the appendix ablation (Section 4) only checks sensitivity to k, not retrieval accuracy.
  • domain assumption Opacity-channel entropy is a good measure of frame informativeness for CLIP embedding, so top-k highest entropy frames are the best views.
    Section 3.2 selects top-k frames by alpha-channel entropy; no comparison against random or evenly spaced sampling is provided.
  • domain assumption A preset ParaView transfer function can expose all semantic structures users will want to query or edit.
    The pipeline begins with renderings produced by a preset TF chosen per dataset (Section 3, Section 4); if the TF hides a structure, it cannot be segmented or queried.
  • domain assumption Editable iVR-GS models trained per segmented component faithfully reproduce and compose the volume scene.
    Section 3.3 inherits this from iVR-GS [58]; composability is assumed via parameter concatenation, without quantitative reconstruction error measurement in this paper.
  • domain assumption LLM agents with function-calling tools correctly translate user intents into declarative VolVis commands.
    Section 3.4 relies on this for all NLI; Section 5 (Limitations) admits the system is overconfident in tool outputs and lacks validation mechanisms, so this assumption is only partially supported.
  • domain assumption User study participants (N=8) are a representative enough sample to support claims of improved accessibility and usability.
    Section 4.2; small sample, recruited from the authors' institution, with no control baseline, limiting generalization.

how reviews work

0 comments
Cite this review

Pith. "Pith review of NLI4VolVis: Natural Language Interaction for Volume Visualization via LLM Multi-Agents and Editable 3D Gaussian Splatting." pith.science (2026). https://pith.science/paper/PXD42GNX

@misc{pith2026250712621,
  author       = {Pith},
  title        = {Pith review of: NLI4VolVis: Natural Language Interaction for Volume Visualization via LLM Multi-Agents and Editable 3D Gaussian Splatting},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/PXD42GNX}},
  note         = {Machine review of arXiv:2507.12621}
}
read the original abstract

Traditional volume visualization (VolVis) methods, like direct volume rendering, suffer from rigid transfer function designs and high computational costs. Although novel view synthesis approaches enhance rendering efficiency, they require additional learning effort for non-experts and lack support for semantic-level interaction. To bridge this gap, we propose NLI4VolVis, an interactive system that enables users to explore, query, and edit volumetric scenes using natural language. NLI4VolVis integrates multi-view semantic segmentation and vision-language models to extract and understand semantic components in a scene. We introduce a multi-agent large language model architecture equipped with extensive function-calling tools to interpret user intents and execute visualization tasks. The agents leverage external tools and declarative VolVis commands to interact with the VolVis engine powered by 3D editable Gaussians, enabling open-vocabulary object querying, real-time scene editing, best-view selection, and 2D stylization. We validate our system through case studies and a user study, highlighting its improved accessibility and usability in volumetric data exploration. We strongly recommend readers check our case studies, demo video, and source code at https://nli4volvis.github.io/.

Figures

Figures reproduced from arXiv: 2507.12621 by the authors.

Figure 1
Figure 1. An example of chatting with NLI4VolVis about the mantle temperature dataset. Our system lets users intuitively explore and edit [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. The NLI4VolVis pipeline. (a) Multi-view segmentation supports cross-frame tracking and 3DGS-based techniques for datasets that are not previously segmented. (b) Each segmented component undergoes entropy-guided view selection, embedding informative frames and textual descriptions with CLIP for semantic understanding. (c) Editable iVR-GS models are trained per component. (d) Individual iVR-GS models are composed into… view at source ↗
Figure 3
Figure 3. The NLI4VolVis interface consists of four key components: (a) [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (7 more)
Figure 6
Figure 6. Figure 6: Case study with the FLARE human organ dataset demonstrating [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]
Figure 7
Figure 7. Figure 7: Case study with the supernova dataset demonstrating the percep [PITH_FULL_IMAGE:figures/full_fig_p007_7.png]
Figure 5
Figure 5. Figure 5: Case study with the carp dataset demonstrating the three visual [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 9
Figure 9. Figure 9: Representative user interactions across different datasets. [PITH_FULL_IMAGE:figures/full_fig_p008_9.png]
Figure 10
Figure 10. Figure 10: Survey responses to nine post-questionnaire questions, along [PITH_FULL_IMAGE:figures/full_fig_p008_10.png]
Figure 2
Figure 2. Figure 2: Average TTFT for NLI4VolVis plotted against the number of user messages across different GPT models. Shaded regions represent standard deviations [PITH_FULL_IMAGE:figures/full_fig_p010_2.png]
Figure 3
Figure 3. Figure 3: 2D stylization (IP2P) and 3D stylization (StyleGaussian) results on the mantle and chameleon datasets. The second and third columns show stylizations generated from text prompts, while the last two columns display StyleGaussian’s style transfer results using reference …

Discussion (0). Sign in to comment.

Forward citations

Cited by 4 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score.

  1. Efficient Compression of Structured and Unstructured Volumes via Learned 3D Gaussian Representation

    cs.LG 2026-07 unverdicted novelty 7.0 of 10

    An explicit model using learned 3D Gaussians for volume compression encodes geometry explicitly and outperforms implicit neural representations on unstructured volumes with faster training.

  2. Clarify Before Executing: A Self-Evolving Agent for Resolving Intent Asymmetry in 3D Tool Orchestration

    cs.CV 2026-07 conditional novelty 6.0 of 10

    A clarification-first 3D agent, trained by simulated multi-turn dialogue, reaches 60.4% and 43.3% success on single- and multi-step 3D tool tasks, more than doubling prior baselines.

  3. VVGT: Visual Volume-Grounded Transformer

    cs.GR 2026-04 unverdicted novelty 6.0 of 10

    VVGT is a dual-transformer network with Volume Geometry Forcing that maps volumetric data to 3D Gaussian primitives for accurate ray-based rendering without per-scene optimization.

  4. Toward Distributed 3D Gaussian Splatting for High-Resolution Isosurface Visualization

    cs.DC 2025-09 conditional novelty 4.0 of 10

    Multi-GPU 3D Gaussian splatting, adapted from Grendel-GS, trains isosurface visualizations up to 5.6x faster and handles larger datasets than a single A100 GPU.

Reference graph

Works this paper leans on

75 extracted references · 18 canonical work pages · cited by 4 Pith papers

  1. [1]

    https://gitlab.kitware.com/ paraview/paraview

    ParaView NVIDIA IndeX plugin. https://gitlab.kitware.com/ paraview/paraview. Accessed: 2025-03-13. 6

  2. [2]

    Berger, J

    M. Berger, J. Li, and J. A. Levine. A generative model for volume rendering. IEEE Transactions on Visualization and Computer Graphics, 25(4):1636–1650, 2019. doi: 10.1109/TVCG.2018.2816059 2

  3. [3]

    Brooks, A

    T. Brooks, A. Holynski, and A. A. Efros. InstructPix2Pix: Learning to follow image editing instructions. In Proceedings of IEEE/CVF Interna- tional Conference on Computer Vision, pp. 18392–18402, 2023. doi: 10. 1109/CVPR52729.2023.01764 2, 4, 6, 10

  4. [4]

    Bruckner and M

    S. Bruckner and M. E. Gröller. Style transfer functions for illustrative volume rendering. Computer Graphics Forum, 26(3):715–724, 2007. doi: 10.1111/J.1467-8659.2007.01095.X 1

  5. [5]

    J. J. Caban and P. Rheingans. Texture-based transfer functions for direct volume rendering. IEEE Transactions on Visualization and Computer Graphics, 14(6):1364–1371, 2008. doi: 10.1109/TVCG.2008.169 1

  6. [6]

    M. Chen, I. Laina, and A. Vedaldi. DGE: Direct Gaussian 3D editing by consistent multi-view editing. In Proceedings of European Conference on Computer Vision, pp. 74–92, 2024. doi: 10.1007/978-3-031-72904-1_5 7

  7. [9]

    C. D. Correa and K.-L. Ma. Size-based transfer functions: A new volume exploration technique. IEEE Transactions on Visualization and Computer Graphics, 14(6):1380–1387, 2008. doi: 10.1109/TVCG.2008.162 1

  8. [10]

    B. Fei, J. Xu, R. Zhang, Q. Zhou, W. Yang, and Y . He. 3D Gaussian splatting as new era: A survey. IEEE Transactions on Visualization and Computer Graphics, 2024. Accepted. doi: 10.1109/TVCG.2024.3397828 1

Show all 75 references
  1. [11]

    Fridovich-Keil, A

    S. Fridovich-Keil, A. Yu, M. Tancik, Q. Chen, B. Recht, and A. Kanazawa. Plenoxels: Radiance fields without neural networks. In Proceedings of IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 5491–5500, 2022. doi: 10.1109/CVPR52688.2022.00542 2

  2. [13]

    P. Gu, J. Han, D. Z. Chen, and C. Wang. Reconstructing unsteady flow data from representative streamlines via diffusion and deep learning based denoising. IEEE Computer Graphics and Applications, 41(6):111–121,

  3. [14]

    P. Gu, J. Han, D. Z. Chen, and C. Wang. Scalar2Vec: Translating scalar fields to vector fields via deep learning. In Proceedings of IEEE Pacific Vi- sualization Symposium, pp. 31–40, 2022. doi: 10.1109/PACIFICVIS53943 .2022.00012 2

  4. [15]

    J. Guo, X. Ma, Y . Fan, H. Liu, and Q. Li. Semantic Gaussians: Open- vocabulary scene understanding with 3D Gaussian splatting.arXiv preprint arXiv:2403.15624, 2024. doi: 10.48550/arXiv.2403.15624 3

  5. [16]

    T. Guo, X. Chen, Y . Wang, R. Chang, S. Pei, N. V . Chawla, O. Wiest, and X. Zhang. Large language model based multi-agents: A survey of progress and challenges. arXiv preprint arXiv:2402.01680, 2024. doi: 10. 48550/arXiv.2402.01680 3, 5

  6. [17]

    Z. Guo, S. Cheng, H. Wang, S. Liang, Y . Qin, P. Li, Z. Liu, M. Sun, and Y . Liu. StableToolBench: Towards stable large-scale benchmarking on tool learning of large language models. In Proceedings of ACL Conference (Findings), pp. 11143–11156, 2024. doi: 10.18653/v1/2024.findi...

  7. [18]

    Han and C

    J. Han and C. Wang. TSR-VFD: Generating temporal super-resolution for unsteady vector field data. Computers & Graphics, 103:168–179, 2022. doi: 10.1016/J.CAG.2022.02.001 2

  8. [19]

    Han and C

    J. Han and C. Wang. VCNet: A generative model for volume completion. Visual Informatics, 6(2):62–73, 2022. doi: 10.1016/J.VISINF.2022.04. 004 2

  9. [20]

    Han and C

    J. Han and C. Wang. CoordNet: Data generation and visualization gen- eration for time-varying volumes via a coordinate-based neural network. IEEE Transactions on Visualization and Computer Graphics, 29(12):4951– 4963, 2023. doi: 10.1109/TVCG.2022.3197203 2

  10. [22]

    W. He, J. Wang, H. Guo, K.-C. Wang, H.-W. Shen, M. Raj, Y . S. G. Nashed, and T. Peterka. InSituNet: Deep image synthesis for parameter space exploration of ensemble simulations. IEEE Transactions on Visualization and Computer Graphics, 26(1):23–33, 2020. doi: 10.1109/TVCG.201...

  11. [23]

    X. He, Y . Tao, S. Yang, H. Dai, and H. Lin. voxel2vec: A natural lan- guage processing approach to learning distributed representations for sci- entific data. IEEE Transactions on Visualization and Computer Graphics, 29(10):4296–4311, 2023. doi: 10.1109/TVCG.2022.3189094 4

  12. [24]

    F. Hong, C. Liu, and X. Yuan. DNN-V olVis: Interactive volume visualiza- tion supported by deep neural network. In Proceedings of IEEE Pacific Visualization Symposium, pp. 282–291, 2019. doi: 10.1109/PacificVis. 2019.00041 2

  13. [25]

    X. Hu, Y . Wang, L. Fan, J. Fan, J. Peng, Z. Lei, Q. Li, and Z. Zhang. SAGD: Boundary-enhanced segment anything in 3D Gaussian via Gaus- sian decomposition. arXiv preprint arXiv:2401.17857 , 2025. doi: 10. 48550/arXiv.2401.17857 3, 4, 10

  14. [26]

    Huang, Y

    J. Huang, Y . Xi, J. Hu, and J. Tao. FlowNL: Asking the flow data in natural languages. IEEE Transactions on Visualization and Computer Graphics, 29(1):1200–1210, 2023. doi: 10.1109/TVCG.2022.3209453 2

  15. [28]

    Ji and H.-W

    G. Ji and H.-W. Shen. Dynamic view selection for time-varying volumes. IEEE Transactions on Visualization and Computer Graphics, 12(5):1109– 1116, 2006. doi: 10.1109/TVCG.2006.137 4

  16. [29]

    D. Jia, A. Irger, O. Strnad, J. Björklund, A. Ynnerman, and I. Viola. VOICE: Visual oracle for interaction, conversation, and explanation.arXiv preprint arXiv:2304.04083, 2023. doi: 10.48550/arXiv.2304.04083 1, 2

  17. [30]

    Kerbl, G

    B. Kerbl, G. Kopanas, T. Leimkühler, and G. Drettakis. 3D Gaussian splatting for real-time radiance field rendering. ACM Transactions on Graphics, 42(4):139:1–139:14, 2023. doi: 10.1145/3592433 2, 5

  18. [32]

    G. L. Kindlmann, R. T. Whitaker, T. Tasdizen, and T. Möller. Curvature- based transfer functions for direct volume rendering: Methods and appli- cations. In Proceedings of IEEE Visualization Conference, pp. 513–520,

  19. [33]

    Kirillov, E

    A. Kirillov, E. Mintun, N. Ravi, H. Mao, C. Rolland, L. Gustafson, T. Xiao, S. Whitehead, A. C. Berg, W.-Y . Lo, et al. Segment anything. In Pro- ceedings of IEEE/CVF International Conference on Computer Vision, pp. 4015–4026, 2023. doi: 10.1109/ICCV51070.2023.00371 3, 4

  20. [34]

    J. M. Kniss, G. L. Kindlmann, and C. D. Hansen. Interactive volume ren- dering using multi-dimensional transfer functions and direct manipulation widgets. In Proceedings of IEEE Visualization Conference, pp. 255–262,

  21. [35]

    H. Lam, M. Tory, and T. Munzner. Bridging from goals to tasks with design study analysis reports. IEEE Transactions on Visualization and Computer Graphics, 24(1):435–445, 2018. doi: 10.1109/TVCG.2017. 2744319 6

  22. [36]

    K. Liu, F. Zhan, M. Xu, C. Theobalt, L. Shao, and S. Lu. StyleGaus- sian: Instant 3D style transfer with Gaussian splatting. arXiv preprint arXiv:2403.07807, 2024. doi: 10.48550/arXiv.2403.07807 2, 10

  23. [37]

    S. Liu, H. Miao, and P.-T. Bremer. ParaView-MCP: An autonomous visualization agent with direct tool use. arXiv preprint arXiv:2505.07064,

  24. [38]

    S. Liu, H. Miao, Z. Li, M. L. Olson, V . Pascucci, and P.-T. Bremer. A V A: Towards autonomous visualization agents through visual perception-driven decision-making. Computer Graphics Forum, 43(3):e15093, 2024. doi: 10.1111/cgf.15093 2, 3, 5

  25. [39]

    Ljung, J

    P. Ljung, J. Krüger, E. Groller, M. Hadwiger, C. D. Hansen, and A. Yn- nerman. State of the art in transfer functions for direct volume rendering. Computer Graphics Forum, 35(3):669–691, 2016. doi: 10.1111/cgf.12934 1, 4

  26. [40]

    Y . Lu, P. Gu, and C. Wang. FCNR: Fast compressive neural representation of visualization images. In Proceedings of IEEE VIS Conference (Short Papers), pp. 31–35, 2024. doi: 10.1109/VIS55277.2024.00014 2

  27. [41]

    T. Luo, C. Huang, L. Shen, B. Li, S. Shen, W. Zeng, N. Tang, and Y . Luo. nvBench 2.0: A benchmark for natural language to visualization under ambiguity. arXiv preprint arXiv:2503.12880, 2025. doi: 10.48550/arXiv. 2503.12880 9

  28. [42]

    J. Ma, Y . Zhang, S. Gu, C. Ge, S. Ma, A. Young, C. Zhu, X. Yang, K. Meng, Z. Huang, et al. Unleashing the strengths of unlabelled data in deep learning-assisted pan-cancer abdominal organ quantification: The FLARE22 challenge. The Lancet Digital Health, 6(11):e815–e826, 2024....

  29. [43]

    Maharana, D.-H

    A. Maharana, D.-H. Lee, S. Tulyakov, M. Bansal, F. Barbieri, and Y . Fang. Evaluating very long-term conversational memory of LLM agents. In Proceedings of the Annual Meeting of the Association for Computational Linguistics, pp. 13851–13870, 2024. doi: 10.18653/v1/2024.acl-lon...

  30. [44]

    Mallick, O

    T. Mallick, O. Yildiz, D. Lenz, and T. Peterka. ChatVis: Automating scientific visualization with a large language model. In Proceedings of ACM/IEEE SC Workshops, pp. 49–55, 2024. doi: 10.1109/SCW63240. 2024.00014 2, 3

  31. [45]

    Mildenhall, P

    B. Mildenhall, P. P. Srinivasan, M. Tancik, J. T. Barron, R. Ramamoorthi, and R. Ng. NeRF: Representing scenes as neural radiance fields for view synthesis. In Proceedings of European Conference on Computer Vision, pp. 405–421, 2020. doi: 10.1007/978-3-030-58452-8_24 2

  32. [46]

    Müller, A

    T. Müller, A. Evans, C. Schied, and A. Keller. Instant neural graphics primitives with a multiresolution hash encoding. ACM Transactions on Graphics, 41(4):102:1–102:15, 2022. doi: 10.1145/3528223.3530127 2

  33. [47]

    Niedermayr, C

    S. Niedermayr, C. Neuhauser, K. Petkov, K. Engel, and R. Westermann. Application of 3D Gaussian splatting for cinematic anatomy on consumer class devices. arXiv preprint arXiv:2404.11285, 2024. doi: 10.48550/ arXiv.2404.11285 2

  34. [48]

    Poux and R

    F. Poux and R. Billen. V oxel-based 3D point cloud semantic segmentation: Unsupervised geometric and relationship featuring vs deep learning meth- ods. ISPRS International Journal of Geo-Information, 8(5):213:1–213:34,

  35. [49]

    M. Qin, W. Li, J. Zhou, H. Wang, and H. Pfister. LangSplat: 3D language Gaussian splatting. In Proceedings of IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 20051–20060, 2024. doi: 10.1109/ CVPR52733.2024.01895 2, 3, 4, 10

  36. [50]

    Y . Qin, S. Hu, Y . Lin, W. Chen, N. Ding, G. Cui, Z. Zeng, X. Zhou, Y . Huang, C. Xiao, et al. Tool learning with foundation models. ACM Computing Surveys, 57(4):101:1–101:40, 2024. doi: 10.1145/3704435 5

  37. [51]

    Radford, J

    A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clark, et al. Learning transferable visual models from natural language supervision. In Proceedings of International Conference on Machine Learning, pp. 8748–8763, 2021. 3, 4

  38. [52]

    N. Ravi, V . Gabeur, Y .-T. Hu, R. Hu, C. Ryali, T. Ma, H. Khedr, R. Rädle, C. Rolland, L. Gustafson, et al. SAM 2: Segment anything in images and videos. arXiv preprint arXiv:2408.00714, 2024. doi: 10.48550/arXiv. 2408.00714 3, 4, 10

  39. [53]

    L. Shen, E. Shen, Y . Luo, X. Yang, X. Hu, X. Zhang, Z. Tai, and J. Wang. Towards natural language interfaces for data visualization: A survey.IEEE Transactions on Visualization and Computer Graphics, 29(6):3121–3144,

  40. [54]

    K. Tang, K. Ai, J. Han, and C. Wang. TexGS-V olVis: Expressive scene editing for volume visualization via textured Gaussian splatting. IEEE Transactions on Visualization and Computer Graphics, 32(1), 2026. Ac- cepted. 2

  41. [55]

    Tang and C

    K. Tang and C. Wang. ECNR: Efficient compressive neural representation of time-varying volumetric datasets. In Proceedings of IEEE Pacific Visu- alization Conference, pp. 72–81, 2024. doi: 10.1109/PACIFICVIS60374. 2024.00017 2

  42. [56]

    Tang and C

    K. Tang and C. Wang. STSR-INR: Spatiotemporal super-resolution for time-varying multivariate volumetric data via implicit neural representa- tion. Computers & Graphics, 119:103874, 2024. doi: 10.1016/J.CAG. 2024.01.001 2

  43. [57]

    Tang and C

    K. Tang and C. Wang. StyleRF-V olVis: Style transfer of neural radiance fields for expressive volume visualization.IEEE Transactions on Visualiza- tion and Computer Graphics, 31(1):613–623, 2025. doi: 10.1109/TVCG. 2024.3456342 2, 4

  44. [58]

    K. Tang, S. Yao, and C. Wang. iVR-GS: Inverse volume rendering for explorable visualization via editable 3D Gaussian splatting. IEEE Trans- actions on Visualization and Computer Graphics, 31(6):3783–3795, 2025. doi: 10.1109/TVCG.2025.3567121 2, 3, 4, 5, 6

  45. [59]

    K.-T. Tran, D. Dao, M.-D. Nguyen, Q.-V . Pham, B. O’Sullivan, and H. D. Nguyen. Multi-agent collaboration mechanisms: A survey of LLMs. arXiv preprint arXiv:2501.06322, 2025. doi: 10.48550/arXiv.2501.06322 3, 5

  46. [60]

    Vachha and A

    C. Vachha and A. Haque. Instruct-GS2GS: Editing 3D Gaussian splats with instructions. https://instruct-gs2gs.github.io/, 2024. 7

  47. [61]

    V oigt, O

    H. V oigt, O. Alacam, M. Meuschke, K. Lawonn, and S. Zarrieß. The why and the how: A survey on natural language interaction in visualization. In Proceedings of NAACL Conference: Human Language Technologies, pp. 348–374, 2022. doi: 10.18653/v1/2022.naacl-main.27 2

  48. [62]

    Wang and J

    C. Wang and J. Han. DL4SciVis: A state-of-the-art survey on deep learning for scientific visualization. IEEE Transactions on Visualization and Computer Graphics, 29(8):3714–3733, 2023. doi: 10.1109/TVCG. 2022.3167896 2

  49. [63]

    L. Wang, C. Ma, X. Feng, Z. Zhang, H. Yang, J. Zhang, Z. Chen, J. Tang, X. Chen, Y . Lin, et al. A survey on large language model based autonomous agents. Frontiers of Computer Science, 18(6):186345, 2024. doi: 10.1007/ s11704-024-40231-1 3

  50. [64]

    Y . Wu, J. Meng, H. Li, C. Wu, Y . Shi, X. Cheng, C. Zhao, H. Feng, E. Ding, J. Wang, et al. OpenGaussian: Towards point-level 3D Gaussian-based open vocabulary understanding. In Proceedings of Advances in Neural Information Processing Systems, pp. 19114–19138, 2024. 3

  51. [65]

    Y . Wu, Y . Wan, H. Zhang, Y . Sui, W. Wei, W. Zhao, G. Xu, and H. Jin. Automated data visualization from natural language via large language models: An exploratory study. Proceedings of the ACM on Management of Data, 2(3):115, 2024. doi: 10.1145/3654992 2

  52. [66]

    J. Xu, A. Szlam, and J. Weston. Beyond goldfish memory: Long-term open-domain conversation. In Proceedings of the Annual Meeting of the Association for Computational Linguistics, pp. 5180–5197, 2022. doi: 10. 18653/v1/2022.acl-long.356 9, 10

  53. [67]

    M. Yang, K. Tang, and C. Wang. Meta-INR: Efficient encoding of volumet- ric data via meta-learning implicit neural representation. In Proceedings of IEEE Pacific Visualization Conference (Visualization Notes), pp. 246–251,

  54. [68]

    S. Yao, J. Han, and C. Wang. GMT: A deep learning approach to general- ized multivariate translation for scientific data analysis and visualization. Computers & Graphics, 112:92–104, 2023. doi: 10.1016/J.CAG.2023.04. 002 2

  55. [69]

    S. Yao, Y . Lu, and C. Wang. ViSNeRF: Efficient multidimensional neural radiance field representation for visualization synthesis of dynamic volu- metric scenes. In Proceedings of IEEE Pacific Visualization Conference, pp. 235–245, 2025. doi: 10.1109/PacificVis64226.2025.00029 2, 4

  56. [70]

    Yao and C

    S. Yao and C. Wang. ReV olVE: Neural reconstruction of volumes for visualization enhancement of direct volume rendering. Computers & Graphics, 2025. Accepted. 4

  57. [71]

    Yao and C

    S. Yao and C. Wang. V olSegGS: V olumetric segmentation of dynamic visualization scenes using deformable Gaussian splatting. IEEE Transac- tions on Visualization and Computer Graphics, 32(1), 2026. Accepted. 2

  58. [72]

    M. Ye, M. Danelljan, F. Yu, and L. Ke. Gaussian Grouping: Segment and edit anything in 3D scenes. In Proceedings of European Conference on Computer Vision, 2024. doi: 10.1007/978-3-031-73397-0_10 3

  59. [73]

    Yu and C

    B. Yu and C. T. Silva. FlowSense: A natural language interface for visual data exploration within a dataflow system. IEEE Transactions on Visualization and Computer Graphics, 26(1):1–11, 2020. doi: 10.1109/ tvcg.2019.2934668 2

  60. [75]

    S. Zhi, T. Laidlow, S. Leutenegger, and A. J. Davison. In-place scene labelling and understanding with implicit scene representation. In Pro- ceedings of IEEE/CVF International Conference on Computer Vision, pp. 15818–15827, 2021. doi: 10.1109/ICCV48922.2021.01554 3

  61. [81]

    Zhang, Y

    T. Zhang, Y . Liu, B. Li, Z. Zeng, P. Wang, Y . You, C. Miao, and L. Cui. History-aware hierarchical transformer for multi-session open-domain dia- logue system. In Proceeding of Findings of the Association for Computa- tional Linguistics: EMNLP, pp. 3395–3407, 2022. doi: 10.1...

  62. [2001]

    doi: 10.1109/VISUAL.2001.964519 1

  63. [2003]

    doi: 10.1109/VISUAL.2003.1250414 1

  64. [2019]

    doi: 10.3390/ijgi8050213 4

  65. [2021]

    doi: 10.1109/MCG.2021.3089627 2

  66. [2023]

    doi: 10.1109/tvcg.2022.3148007 2

  67. [2025]

    doi: 10.48550/arXiv.2505.07064 2, 3

Pith tools

Reviewed August 6, 2026 · model on record in the stance chip above.