pith. sign in

arxiv: 2606.19828 · v1 · pith:KK4GOEC6new · submitted 2026-06-18 · 💻 cs.CV

3D-PLOT-LLM: Part-Level Object Tokens for 3D Large Language Models

Pith reviewed 2026-06-26 18:23 UTC · model grok-4.3

classification 💻 cs.CV
keywords 3D MLLMspart-level tokenspoint cloud processingobject part reasoningtoken reorganizationmultimodal language models
0
0 comments X

The pith

Reorganizing 3D point patches with reserved part tokens lets language models directly address and reason about object components.

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

The paper establishes that 3D multimodal large language models can handle part-level tasks by changing how input tokens are organized instead of adding segmentation decoders or larger encoders. It splits patches from a frozen point encoder into K coherent regions, then places a learnable marker and a reserved token like before each region's patches. A Marker-Space Refinement module updates the markers using each region's spatial statistics and neighboring regions. This change lets the model name parts in its answers and respond to prompts that mention specific parts by token. The method adds fewer than one million trainable parameters while improving results on part-aware benchmarks and sometimes on whole-object captioning as well.

Core claim

By partitioning the frozen point encoder's patches into K locally coherent regions and inserting, before each region's patch tokens, a learnable per-region marker and a reserved vocabulary token <part_k>, followed by Marker-Space Refinement that conditions each marker on its region's spatial statistics and adjacency neighbors, the model acquires the ability to cite parts in its output and follow prompts that refer to parts by token.

What carries the argument

The part-token insertion scheme that prepends reserved vocabulary tokens <part_k> and learnable markers to each region's patch tokens, refined by the Marker-Space Refinement module.

Load-bearing premise

That partitioning the frozen point encoder's patches into K locally coherent regions and inserting learnable markers plus reserved <part_k> tokens before each region's patches is sufficient for the LLM to acquire part-addressing behavior without further architectural changes.

What would settle it

A test where the model is prompted with a specific <part_k> token on held-out objects and fails to correctly name or describe the corresponding part in its generated text.

Figures

Figures reproduced from arXiv: 2606.19828 by C.-C. Jay Kuo, Jingwen Chen, Jintang Xue, Xinyu Wang, Yixing Wu.

Figure 1
Figure 1. Figure 1: 3D-PLOT-LLM treats each geometric region of a 3D object as a first-class addressable token in the LLM’s vocabulary. A frozen point encoder’s patch tokens are partitioned into a fixed set of K geometric regions (center panel), and a reserved vocabulary slot <part_k> makes each region readable and writable through the same interface the LLM uses for text (right panel). No segmentation decoder is required. 1 … view at source ↗
Figure 2
Figure 2. Figure 2: 3D-PLOT-LLM pipeline. A frozen point encoder produces 512 patch tokens that flow through three components: (i) Geometric Region Partition (§3.1) groups patches into K regions {Gk} and exposes per-region statistics sk ∈ R 7 and inter-region adjacency E; (ii) Marker-Space Refinement (§3.3) updates each learnable marker mk → mˆ k via stats and graph residuals; (iii) Token Assembly (§3.2) interleaves [CLS], re… view at source ↗
Figure 3
Figure 3. Figure 3: Qualitative examples of part-aware tokenization. Top row (PartVerse-QA, vocabulary￾level part addressing). 3D-PLOT-LLM (a) maps a free-form caption to the exact <part_k> set covering the described region (C2S, pony tail, 5 slots, Jaccard 1.00); (b) describes a multi-slot input in one sentence (S2C, shovel handle, 7 slots → “a wooden handle of a shovel”, Word-F1 1.00); (c) handles both directions on the sam… view at source ↗
Figure 4
Figure 4. Figure 4: Semantic parts per object in our aligned PartVerse pool (N=10,200). Median 6, p95=17. The dashed line marks our slot budget K=16, which covers 94.5% of objects. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Slots per query (number of <part_k> tokens) 0 5 10 15 20 25 Share of training queries (%) 24% 19% 12% 9% 7% 6% 5% N = 77, 607 median 3 slots p95 = 11 [PITH_FULL_IMAGE:figures/full_fig_p018_4.png] view at source ↗
Figure 5
Figure 5. Figure 5: Slots per query across 77,607 training queries. The benchmark spans single-slot fine￾grained parts (24%) through near-whole-object regions (11 slots at p95, 16 slots at the tail). Eval splits (392 C2S + 196 S2C) follow the same distribution. read or write <part_k> tokens, and none accept a region encoding (mask, box, or token set) as model input. The S2C direction (slot set as input) is therefore not retro… view at source ↗
Figure 6
Figure 6. Figure 6: PartVerse-QA supervision scaling. Caption-to-slots Jaccard (left) and slot-to-caption GPT-4o judge (right) on the held-out PartVerse-QA split as a function of the fraction of the 77,607- pair pool used at Stage 2 (six points: 0/16/30/50/75/100%). The dashed horizontal references mark the no-refinement comparator at 100% data; ours meets the no-refinement Jaccard reference using only 16% of the pool, and th… view at source ↗
Figure 7
Figure 7. Figure 7: PartVerse-QA C2S dialogues (extended). Each panel shows the RGB input (top) and the K=16 partition with target slots highlighted in green (bottom; in panel (b), the additional slot the model emits is shown in red), alongside the caption and predicted slot set. Panels (a), (c), and (d) are exact set matches at 4, 2, and 7 slots respectively; panel (b) is a near-miss at 5 slots where the extra red slot <part… view at source ↗
Figure 8
Figure 8. Figure 8: PartVerse-QA S2C dialogues (extended). Each panel shows the RGB input (top) and the K=16 partition with input slots highlighted (bottom, in green), alongside the GT caption and 3D￾PLOT-LLM prediction. Panel (a) is a single-word omission (1 slot, “view” dropped); panel (b) is an exact 3-slot match; panel (c) drops a color adjective and a part-label modifier (“green”/“component”); panel (d) shows a case wher… view at source ↗
Figure 9
Figure 9. Figure 9: 3DCoMPaT-GrIn full grounded descriptions: Figures 3(d-e) at full length. Verbatim ground-truth, PointLLM, and 3D-PLOT-LLM descriptions for the candle holder (a) and bed (b) examples shown abridged in the main paper. PointLLM misclassifies both (bin, sports table) and the part-level materials/colors follow the misclassification (red); 3D-PLOT-LLM recovers the correct class and the multi-material attributes … view at source ↗
Figure 10
Figure 10. Figure 10: 3DCoMPaT-GrIn full grounded descriptions [PITH_FULL_IMAGE:figures/full_fig_p024_10.png] view at source ↗
Figure 11
Figure 11. Figure 11: 3DCoMPaT-GrIn full grounded descriptions: two additional cases with maximally different drift targets. (a) a cylindrical sink with attached metal faucet (spout, lever, stopper), misread by PointLLM as a wooden basket, a same-domain shape-driven drift; 3D-PLOT-LLM recovers the brown body and the metal faucet attachments. (b) a standalone metal faucet whose body, spout, and aerator are correctly described b… view at source ↗
Figure 12
Figure 12. Figure 12: Objaverse whole-object captioning: PointLLM failure modes. Outputs from 3D-PLOT￾LLM, PointLLM, and ShapeLLM on two held-out objects: (a) a blue robot mis-classed by PointLLM as “spaceship” (class drift); (b) a gold ring with a red gemstone, correctly classed by PointLLM but hallucinated as “boasting two contrasting white diamond shapes” that are absent from the point cloud (structural hallucination). 3D-P… view at source ↗
Figure 13
Figure 13. Figure 13: Failure modes visualized across the three benchmarks. (a) Mode (3), Objaverse: both models call a Mario-image CD a cassette, recovering only the shared blue body color. (b) Mode (2), 3DCoMPaT-GrIn shower: both collapse the multi-color GT toward a single metal color (golden for PointLLM, copper for ours); 3D-PLOT-LLM still recovers black plastic on the head support that PointLLM omits. (c) Mode (1), PartVe… view at source ↗
read the original abstract

3D multimodal large language models (3D MLLMs) describe a 3D object as a whole but cannot address, name, or reason about its parts. Prior part-aware attempts add segmentation decoders, heavier 3D encoders, or bounding-box grammars at substantial parameter cost. We take a fundamentally different path: we reorganize the input token stream so that parts become directly addressable through the LLM's own vocabulary. Our model, 3D-PLOT-LLM, partitions the frozen point encoder's patches into K locally coherent regions and inserts, before each region's patch tokens, a learnable per-region marker and a reserved vocabulary token <part_k>; a Marker-Space Refinement (MSR) module then conditions each marker on its region's spatial statistics and adjacency neighbors. The model thus cites parts in its output and follows prompts that refer to parts by token, a capability absent from prior object-level 3D MLLMs. To probe this interface, we construct PartVerse-QA, a vocabulary-level part-QA benchmark adapted from PartVerse mesh annotations (77K training pairs and 588 held-out queries on disjoint object splits), on which 3D-PLOT-LLM reaches caption-to-slots Jaccard 0.459 and Exact-match 13.78%, with a slot-to-caption GPT-4o judge of 44.68. On the 3DCoMPaT-GrIn part-aware grounded description benchmark, 3D-PLOT-LLM outperforms PointLLM, Kestrel, PARIS3D, and SegPoint on every text-output metric, and ShapeLLM on 3 of 4, with up to +3.03 GPT-4o judge over PointLLM. On Objaverse whole-object captioning, adding PartVerse-QA at Stage 2 yields +0.65 SBERT and +1.85 GPT-4o over PointLLM, and tops PointLLM-PiSA on 4 of 5 traditional metrics (SBERT, SimCSE, BLEU-1, METEOR) despite targeting a different (part-grounded) objective. All with under 1M new trainable parameters on a frozen point encoder, an order of magnitude below prior part-aware 3D MLLMs, and no segmentation decoder or bounding-box head.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

2 major / 2 minor

Summary. The paper claims that 3D-PLOT-LLM enables part-level addressing in 3D MLLMs by partitioning frozen point-encoder patches into K spatially coherent regions, prepending learnable markers and reserved <part_k> tokens to each region, and applying a Marker-Space Refinement (MSR) module; this yields part-citing and part-prompt-following behavior with under 1M trainable parameters. On the new PartVerse-QA benchmark (77K train / 588 held-out pairs) it reports Jaccard 0.459, Exact-match 13.78%, and GPT-4o judge 44.68, plus gains on 3DCoMPaT-GrIn and Objaverse captioning relative to PointLLM, Kestrel, PARIS3D, SegPoint, and ShapeLLM.

Significance. If the part-addressing claim holds, the approach supplies a low-parameter route to part-level reasoning in 3D MLLMs that avoids segmentation decoders or bounding-box heads; the introduction of PartVerse-QA as a vocabulary-level part-QA benchmark is a useful addition for the community.

major comments (2)
  1. [Abstract and §3] Abstract and §3 (method): the claim that inserting <part_k> tokens before spatially clustered patches plus MSR is sufficient for the (presumably frozen) LLM to acquire true part-addressing behavior is load-bearing, yet the regions are defined by local coherence rather than the mesh part annotations used to generate the QA pairs; the modest Exact-match of 13.78% is consistent with the tokens acting as generic labels rather than semantic part pointers, and no analysis of token usage or alignment between clusters and ground-truth parts is provided.
  2. [§4] §4 (experiments): no error bars, no ablation on K or the MSR module, and no description of how the 77K/588 PartVerse-QA split was constructed or how queries were generated from mesh annotations; these omissions make it impossible to assess whether the reported Jaccard 0.459 and GPT-4o 44.68 scores demonstrate part-specific binding or merely marginal gains from the added tokens.
minor comments (2)
  1. [§3] Clarify in the method section whether the LLM backbone itself is frozen (as implied by the <1M parameter budget) or partially updated.
  2. [§4] Table or figure showing per-metric comparisons on 3DCoMPaT-GrIn should be referenced explicitly in the text rather than summarized only in the abstract.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for the constructive feedback on our part-addressing claims and experimental details. We address each major comment below, indicating revisions where appropriate.

read point-by-point responses
  1. Referee: [Abstract and §3] Abstract and §3 (method): the claim that inserting <part_k> tokens before spatially clustered patches plus MSR is sufficient for the (presumably frozen) LLM to acquire true part-addressing behavior is load-bearing, yet the regions are defined by local coherence rather than the mesh part annotations used to generate the QA pairs; the modest Exact-match of 13.78% is consistent with the tokens acting as generic labels rather than semantic part pointers, and no analysis of token usage or alignment between clusters and ground-truth parts is provided.

    Authors: We acknowledge that regions are formed via spatial coherence rather than direct use of mesh part annotations. This choice enables inference without part labels while allowing the QA training signal (derived from annotations) and MSR to encourage semantic alignment of the <part_k> tokens. The exact-match of 13.78% is modest and may partly reflect generic labeling effects, though the Jaccard of 0.459 and GPT-4o judge of 44.68 suggest gains beyond marginal token addition. We will add an analysis of token usage statistics and quantitative alignment between clusters and ground-truth parts in the revision. revision: yes

  2. Referee: [§4] §4 (experiments): no error bars, no ablation on K or the MSR module, and no description of how the 77K/588 PartVerse-QA split was constructed or how queries were generated from mesh annotations; these omissions make it impossible to assess whether the reported Jaccard 0.459 and GPT-4o 44.68 scores demonstrate part-specific binding or merely marginal gains from the added tokens.

    Authors: We will add error bars computed over multiple random seeds. Ablations varying K and ablating the MSR module will be included to quantify their impact. A new subsection (or appendix) will detail the PartVerse-QA construction: the 77K/588 split uses disjoint object instances from PartVerse, with queries generated by templated questions over mesh part annotations. These changes will strengthen evidence that improvements reflect part-specific binding. revision: yes

Circularity Check

0 steps flagged

No significant circularity; empirical results on held-out data

full rationale

The paper describes an input reorganization method (patch partitioning into K regions, insertion of learnable markers and <part_k> tokens, plus MSR) to enable part addressing in 3D MLLMs, then reports performance on the constructed PartVerse-QA benchmark (77K training pairs, 588 held-out queries on disjoint splits) and external benchmarks like 3DCoMPaT-GrIn and Objaverse. No equations, predictions, or derivations are presented that reduce by construction to fitted parameters or self-referential definitions. No load-bearing self-citations, uniqueness theorems, or ansatzes imported from prior author work appear in the text. The central capability claim is evaluated via standard held-out metrics rather than tautological equivalence to the method's own inputs.

Axiom & Free-Parameter Ledger

2 free parameters · 1 axioms · 1 invented entities

The approach rests on the assumption that a frozen point encoder's patches admit a stable partitioning into locally coherent regions and that the LLM can learn to treat the inserted <part_k> tokens as part references; the learnable markers and the choice of K constitute free parameters whose values are not reported.

free parameters (2)
  • K (number of regions)
    Number of locally coherent regions chosen for partitioning the point patches
  • learnable per-region markers
    Trainable vectors inserted before each region's patch tokens
axioms (1)
  • domain assumption Frozen point encoder patches can be partitioned into K locally coherent regions whose spatial statistics are meaningful for part addressing
    Invoked when the method description states that patches are partitioned and markers are conditioned on region statistics
invented entities (1)
  • <part_k> reserved vocabulary token no independent evidence
    purpose: Allow the LLM to directly cite and respond to specific object parts by token name
    New token type introduced into the LLM vocabulary for part addressing

pith-pipeline@v0.9.1-grok · 5991 in / 1516 out tokens · 34424 ms · 2026-06-26T18:23:27.223475+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

46 extracted references · 9 canonical work pages

  1. [1]

    European Conference on Computer Vision , pages=

    Pointllm: Empowering large language models to understand point clouds , author=. European Conference on Computer Vision , pages=. 2024 , organization=

  2. [2]

    Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

    Kestrel: 3D Multimodal LLM for Part-Aware Grounded Description , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

  3. [3]

    Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages=

    Pisa: A self-augmented data engine and training strategy for 3d understanding with large models , author=. Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages=

  4. [4]

    arXiv preprint arXiv:2405.10370 , year=

    Grounded 3d-llm with referent tokens , author=. arXiv preprint arXiv:2405.10370 , year=

  5. [5]

    arXiv preprint arXiv:2506.05689 , year=

    Pts3D-LLM: Studying the Impact of Token Structure for 3D Scene Understanding With Large Language Models , author=. arXiv preprint arXiv:2506.05689 , year=

  6. [6]

    arXiv preprint arXiv:2511.13647 , year=

    Part-X-MLLM: Part-aware 3D Multimodal Large Language Model , author=. arXiv preprint arXiv:2511.13647 , year=

  7. [7]

    arXiv preprint arXiv:2506.05573 , year=

    Partcrafter: Structured 3d mesh generation via compositional latent diffusion transformers , author=. arXiv preprint arXiv:2506.05573 , year=

  8. [8]

    Proceedings of the SIGGRAPH Asia 2025 Conference Papers , pages=

    Omnipart: Part-aware 3d generation with semantic decoupling and structural cohesion , author=. Proceedings of the SIGGRAPH Asia 2025 Conference Papers , pages=

  9. [9]

    arXiv preprint arXiv:2509.16768 , year=

    MMPart: Harnessing Multi-Modal Large Language Models for Part-Aware 3D Generation , author=. arXiv preprint arXiv:2509.16768 , year=

  10. [10]

    European Conference on Computer Vision , pages=

    Shapellm: Universal 3d object understanding for embodied interaction , author=. European Conference on Computer Vision , pages=. 2024 , organization=

  11. [11]

    arXiv preprint arXiv:2310.06773 , year=

    Uni3d: Exploring unified 3d representation at scale , author=. arXiv preprint arXiv:2310.06773 , year=

  12. [12]

    arXiv preprint arXiv:2309.00615 , year=

    Point-bind & point-llm: Aligning point cloud with multi-modality for 3d understanding, generation, and instruction following , author=. arXiv preprint arXiv:2309.00615 , year=

  13. [13]

    Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=

    Gpt4point: A unified framework for point-language understanding and generation , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=

  14. [14]

    Advances in Neural Information Processing Systems , volume=

    3d-llm: Injecting the 3d world into large language models , author=. Advances in Neural Information Processing Systems , volume=

  15. [15]

    Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

    3dgraphllm: Combining semantic graphs and large language models for 3d scene understanding , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

  16. [16]

    Advances in Neural Information Processing Systems , volume=

    Chat-scene: Bridging 3d scene and large language models with object identifiers , author=. Advances in Neural Information Processing Systems , volume=

  17. [17]

    Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages=

    Descrip3D: Enhancing Large Language Model-based 3D Scene Understanding with Object-Level Text Descriptions , author=. Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision , pages=

  18. [18]

    arXiv preprint arXiv:2506.07491 , year=

    Spatiallm: Training large language models for structured indoor modeling , author=. arXiv preprint arXiv:2506.07491 , year=

  19. [19]

    Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

    Ll3da: Visual interactive instruction tuning for omni-3d understanding reasoning and planning , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

  20. [20]

    arXiv preprint arXiv:2409.18125 (2024) 5

    Llava-3d: A simple yet effective pathway to empowering lmms with 3d-awareness , author=. arXiv preprint arXiv:2409.18125 , year=

  21. [21]

    Proceedings of the Computer Vision and Pattern Recognition Conference , pages=

    3d-llava: Towards generalist 3d lmms with omni superpoint transformer , author=. Proceedings of the Computer Vision and Pattern Recognition Conference , pages=

  22. [22]

    2025 International Conference on 3D Vision (3DV) , pages=

    Reason3d: Searching and reasoning 3d segmentation via large language model , author=. 2025 International Conference on 3D Vision (3DV) , pages=. 2025 , organization=

  23. [23]

    European Conference on Computer Vision , pages=

    Paris3d: Reasoning-based 3d part segmentation using large multimodal model , author=. European Conference on Computer Vision , pages=. 2024 , organization=

  24. [24]

    European Conference on Computer Vision , pages=

    Segpoint: Segment any point cloud via large language model , author=. European Conference on Computer Vision , pages=. 2024 , organization=

  25. [25]

    Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

    Partnet: A large-scale benchmark for fine-grained and hierarchical part-level 3d object understanding , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

  26. [26]

    Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

    Partslip: Low-shot part segmentation for 3d point clouds via pretrained image-language models , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

  27. [27]

    Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

    Satr: Zero-shot semantic segmentation of 3d shapes , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

  28. [28]

    Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

    From one to more: Contextual part latents for 3d generation , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

  29. [29]

    IEEE Transactions on Pattern Analysis and Machine Intelligence , year=

    3dcompat++: An improved large-scale 3d vision dataset for compositional recognition , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , year=

  30. [30]

    Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

    Point-bert: Pre-training 3d point cloud transformers with masked point modeling , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

  31. [31]

    Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

    Lisa: Reasoning segmentation via large language model , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

  32. [32]

    Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=

    Glamm: Pixel grounding large multimodal model , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=

  33. [33]

    See https://vicuna

    Vicuna: An open-source chatbot impressing gpt-4 with 90\ author=. See https://vicuna. lmsys. org (accessed 14 April 2023) , volume=

  34. [34]

    Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

    Objaverse: A universe of annotated 3d objects , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

  35. [35]

    Advances in Neural Information Processing Systems , volume=

    Scalable 3d captioning with pretrained models , author=. Advances in Neural Information Processing Systems , volume=

  36. [36]

    Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=

    Ulip-2: Towards scalable multimodal pre-training for 3d understanding , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=

  37. [37]

    Proceedings of the 26th ACM SIGKDD international conference on knowledge discovery & data mining , pages=

    Deepspeed: System optimizations enable training deep learning models with over 100 billion parameters , author=. Proceedings of the 26th ACM SIGKDD international conference on knowledge discovery & data mining , pages=

  38. [38]

    Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

    Imagebind: One embedding space to bind them all , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

  39. [39]

    2023 IEEE International Conference on Robotics and Automation (ICRA) , pages=

    Mask3d: Mask transformer for 3d semantic instance segmentation , author=. 2023 IEEE International Conference on Robotics and Automation (ICRA) , pages=. 2023 , organization=

  40. [40]

    Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

    Grounded language-image pre-training , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=

  41. [41]

    Sentence-bert: Sentence embeddings using siamese bert-networks , author=. Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP) , pages=

  42. [42]

    Proceedings of the 2021 conference on empirical methods in natural language processing , pages=

    Simcse: Simple contrastive learning of sentence embeddings , author=. Proceedings of the 2021 conference on empirical methods in natural language processing , pages=

  43. [43]

    Proceedings of the 40th annual meeting of the Association for Computational Linguistics , pages=

    Bleu: a method for automatic evaluation of machine translation , author=. Proceedings of the 40th annual meeting of the Association for Computational Linguistics , pages=

  44. [44]

    Text summarization branches out , pages=

    Rouge: A package for automatic evaluation of summaries , author=. Text summarization branches out , pages=

  45. [45]

    Proceedings of the acl workshop on intrinsic and extrinsic evaluation measures for machine translation and/or summarization , pages=

    METEOR: An automatic metric for MT evaluation with improved correlation with human judgments , author=. Proceedings of the acl workshop on intrinsic and extrinsic evaluation measures for machine translation and/or summarization , pages=

  46. [46]

    International conference on machine learning , pages=

    Neural message passing for quantum chemistry , author=. International conference on machine learning , pages=. 2017 , organization=