Pith. sign in

REVIEW 4 major objections 7 minor 56 references

View N-gram Network for 3D Object Retrieval

T0 review · 4 major / 7 minor · reviewed 2026-08-14 · deepseek-v4-flash

Pith's one-line read View N-gram Network claims that dividing a 3D object's ordered rendered views into overlapping visual n-grams and aggregating them with a parameterless attention mechanism produces state-of-the-art retrieval accuracy and partial rotation…

desk verdict A solid, incremental multi-view retrieval paper whose aligned-benchmark results are credible; the rotation-robustness claim is undercut by an unspecified view ordering on the perturbed dataset. read the letter →

arxiv 1908.01958 v2 pith:JX62IXT6 submitted 2019-08-06 cs.CV

classification cs.CV
keywords 3Dobjectretrievalmulti-viewlearningvisualn-gramsn-GramUnitattentionaggregationshaperepresentationModelNetCore55
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

This paper tries to establish that local spatial context across a 3D object's rendered views is the key to building a discriminative global shape descriptor. It proposes View N-gram Network (VNN), which treats each view as a "word" and slides windows of n consecutive views over the view sequence, encoding each window with a small convolution called an n-Gram Learning Unit. A parameter-free attention module then weights these n-gram features before they are combined into one descriptor. The paper reports strong retrieval scores on ModelNet40, ModelNet10, and ShapeNetCore55, and its ablations show that windows larger than one view and attention over max-pooling both help. If correct, this means multi-view 3D retrieval can obtain the benefit of sequential view modeling without the computational cost of recurrent networks.

What carries the argument

The n-Gram Learning Unit (n-GLU) is a 2D convolution filter of size $D'\\times D \\times n \\times 1$ applied to the $|V|\\times D$ matrix of view features arranged in rendering order, so that a sliding window of $n$ consecutive views produces $(|V|-n+1)\\times D'$ enhanced local features. It carries the argument by encoding spatial context within short runs of adjacent views while remaining parallelizable, and the parameterless attention aggregator then selects and combines these local windows into one global descriptor.

What would settle it

Render the same ModelNet40 objects but shuffle the order of the 12 views before forming the n-grams while keeping every other training detail fixed; if retrieval mAP stays near the reported 88.9%, the visual n-gram's claimed spatial-context mechanism is not what drives the performance, and the gain would come from feature aggregation alone.

Watch

Extended reading notes

Core claim

The paper's central claim is that an ordered sequence of rendered views can be treated like a sentence and decomposed into overlapping visual n-grams, and that encoding each n-gram with a 2D convolution over the view-feature matrix captures local spatial relationships among consecutive views. VNN builds one branch per n-gram size, here 3, 5, and 7, and each branch ends in a parameterless attentional aggregator: max-pool the n-gram features into a proxy global vector, score each n-gram by a scaled inner product with that vector, take a softmax, form a weighted sum, then add a residual connection and layer-normalize. Concatenating the branch outputs gives a compact descriptor that the paper reports as 89.6% AUC and 88.9% mAP on ModelNet40, 93.5% AUC and 92.8% mAP on ModelNet10, and leading F-measure, mAP, and NDCG on the aligned ShapeNetCore55 benchmark, with competitive results on its arbitrarily oriented version. The paper argues that the local adjacent relationship captured by visual n-grams is robust to rotation, and that the parameterless attention aggregator is a better aggregation method than max-pooling for multi-view features.

Load-bearing premise

The entire method depends on the rendering order making consecutive views true spatial neighbors, so that a sliding window of n consecutive views describes a connected local region of the object; if the view order is shuffled or rotations break that adjacency, the n-gram windows lose their geometric meaning.

Editorial extensions

If this is right

  • View-based 3D retrieval can reach top accuracy without recurrent sequential processing, because n-gram windows can be computed in parallel.
  • A parameter-free attention module over n-gram features is a workable alternative to max-pooling for aggregating multi-view representations.
  • Combining several n-gram sizes is complementary: fusing 3-, 5-, and 7-gram branches consistently improves over any single window size.
  • The learned descriptor carries some rotation robustness, since local adjacent view relationships survive object rotation, as shown by the competitive results on the perturbed ShapeNetCore55 version.
  • The framework composes with metric learning: adding triplet-center loss to the softmax objective further improves retrieval.

Reading between the lines

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

  • Beyond the paper, the same sliding-window idea could transfer to other ordered multi-image inputs, such as video frames or 360-degree panoramas, wherever consecutive images are true spatial neighbors.
  • The paper leaves implicit that the parameterless aggregator could be attached to any CNN feature extractor without retraining the aggregator itself, which may make it useful in few-shot retrieval settings.
  • A natural stress test of the rotation-robustness claim would be to rotate a fixed set of objects by arbitrary angles and measure how stable the resulting descriptors are, rather than relying only on the perturbed benchmark.
  • One could also test whether the learned attention weights correlate with view informativeness, effectively making the model explain which viewing directions matter most for a given shape.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 7 minor

Summary. The paper introduces View N-gram Network (VNN), a multi-view 3D object retrieval method. Given an ordered sequence of rendered views of a 3D object, VNN extracts per-view features with a shared CNN, then slides a convolutional window of size n over the feature sequence (n-GLU) to produce visual n-gram features that encode local spatial context. Three parallel branches with n-gram sizes 3, 5, and 7 are fused by concatenation after each branch aggregates its n-gram features with a proposed parameterless attention mechanism (max-pooling proxy, inner-product scores, weighted sum, residual layer norm). A two-layer classifier with softmax loss is trained on the fused descriptor. Experiments on ModelNet40, ModelNet10, and ShapeNetCore55 (normal and perturbed) report improvements over prior view-based and model-based methods, including 89.6% AUC and 88.9% mAP on ModelNet40 and 92.8% mAP on ModelNet10.

Significance. If the reported results are robust, VNN is a meaningful contribution: it offers a computationally efficient alternative to RNN-based view aggregation, captures local view dependencies without extra parameters (modulo the layer-norm point), and improves retrieval accuracy over strong baselines on aligned benchmarks. The parameter-free attention aggregator is a neat idea that performs better than max-pooling in the ablation. The paper ships a clear description of the architecture, a thorough ablation over n-gram sizes and combinations, and comparisons on three standard benchmarks. However, the magnitude of the claimed advantages is uncertain in several places: the n-gram sizes are selected on the test set, the perturbed-dataset experiment does not specify the view order that the n-gram mechanism receives, and the margins over the strongest baseline (TCL) on perturbed ShapeNetCore55 are zero for mAP. Thus the central claims of state-of-the-art performance and rotation robustness are not yet established at the reported level of confidence.

major comments (4)
  1. [Sec. 4.3 and Sec. 3.2] The rendering protocol for the perturbed ShapeNetCore55 dataset specifies 80 views as 20 icosahedron vertices times 4 in-plane rotations per camera, but the paper never states the order in which these views are fed to the n-GLU. If the views are ordered by camera and then by rotation (the natural implementation), consecutive views in a 3-, 5-, or 7-gram are mostly images from the same camera direction differing by in-plane rotation, rather than spatially adjacent views around the object. Since Section 3.2 grounds the rotation robustness of visual n-grams in the 'local adjacent relation of views,' the perturbed experiments in Table 2 would then not test that mechanism at all. Please specify the exact view ordering and, ideally, report the perturbed results for two different orderings to show the claimed robustness.
  2. [Sec. 4.5, Table 3] The final architecture uses n-gram sizes {3,5,7}, which are chosen from the ablation on the ModelNet40 test set, and the main results in Table 1 are reported on that same test set. This is a form of test-set overfitting: the hyperparameters are selected on the evaluation set, so the reported 89.6 AUC/88.9 mAP are optimistically biased and the comparison with prior work is not a fair out-of-sample comparison. Please use a validation split for hyperparameter selection and report test results for the resulting model, or use nested cross-validation.
  3. [Sec. 3.3, Eq. (1)-(3)] The paper states in Section 3.3 that 'the full pipeline of our attentional feature aggregation does not involve any learnable parameters,' yet the residual stage applies layer normalization [1], which in the standard formulation contains learnable scale and bias parameters. Either specify that a non-affine layer normalization without learnable parameters is used, or revise the claims in Sections 1 and 4.5 that the attention model is parameter-free. This is directly relevant to contribution 3.
  4. [Sec. 4.4, Table 2 (perturbed)] On the perturbed ShapeNetCore55 set, VNN's mAP is 81.2 vs. TCL's 81.2 and NDCG is 88.3 vs. 88.2, so the stated superiority over TCL rests entirely on F1 (60.7 vs. 55.9). With no error bars or significance tests, the conclusion that VNN 'can be naturally extended to the cases where orientations of 3D shapes are agnostic' is not strongly supported. Please report multiple runs (with mean and std) for at least the main comparisons, and moderate the claim accordingly.
minor comments (7)
  1. [Sec. 4.4, ModelNet10 paragraph] The sentence 'VNN significantly boosts the mAP of MCNNN by 12.7%' appears to contain a typo: 'MCNNN' should be 'MVCNN'.
  2. [Sec. 3.4] The sentence 'we use three n-gram branches with n-gram sizes of 3, 5 and 7' states the final choice without justification, which is only provided later in the Section 4.5 ablation; consider noting that the choice is empirically validated there.
  3. [Fig. 3 caption] The caption refers to the module as 'GLU' while the text defines 'n-GLU'; please make the terminology consistent throughout.
  4. [Sec. 4.3] The rendered images are described as greyscale 224x224, but the pre-trained VGG-A expects RGB input; please specify how the greyscale images are converted to three channels or whether the first convolutional layer was modified.
  5. [Table 2] The column 'microALL + macroALL' appears to be an average of the microALL and macroALL columns, but the averaging formula is not defined; please state whether this is the official SHREC evaluation protocol.
  6. [Eq. (1)] The summation in the denominator of Eq. (1) is written as summing over i without explicit bounds; it should be i=1 to |V|+1-n for clarity.
  7. [Sec. 4.2] The definition 'AUC is the mean area under the PR curve' is unusual for the term AUC, which commonly refers to the ROC curve; please clarify that the PR-curve AUC is intended.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: VNN is an empirical architecture whose gains are measured against external benchmarks; self-citations are not load-bearing.

full rationale

VNN is an empirical architecture paper. The central mechanism (n-GLU) is a 2D convolution over a sequence of view features; the reported gains are measured against external benchmarks with fixed splits (ModelNet40/10, ShapeNetCore55) and compared with published baselines. No parameter is fitted to the target metric and then reported as a prediction: n-gram sizes (3, 5, 7) are selected by ablations and reported as such, and the attention aggregator is parameter-free and computed directly from the features being aggregated, which is a standard self-attention-style operation rather than a logical dependency. Self-citations (e.g., TCL [19]) are confined to a complementary metric-learning ablation and do not carry the central claim. The only substantive concern is the unspecified ordering of the 80 perturbed ShapeNetCore55 views, which could undermine the rotation-robustness interpretation, but this is an experimental-validity issue, not a circular reduction: no equation in the paper defines the outcome in terms of the input. Therefore no circular step meets the quoted-evidence bar.

Assumptions & free parameters 3 free parameters · 4 assumptions · 0 invented entities

No new physical or conceptual entities are invented. The free parameters are architecture choices, not fitted constants in a physical model. The assumptions are domain assumptions about view order and the informativeness of local view windows.

free parameters (3)
  • n-gram sizes {3,5,7} = 3, 5, 7
    Selected after evaluating all combinations on the ModelNet40 test set (Section 4.5); these hyperparameters are then used for the main results, constituting model selection on the test data.
  • n-GLU output dimension D' = 512
    Chosen by hand as a standard hidden size; no sensitivity analysis is reported.
  • Rendering view count and protocol = 12 views for aligned, 80 for perturbed
    Follows MVCNN [46] protocol; the 80-view ordering for perturbed shapes is a modeling choice that affects the definition of consecutive views.
assumptions (4)
  • domain assumption 3D shapes from the same category share similar n-gram patterns, while different categories differ.
    Stated in Section 3.2 as motivation for learning n-gram patterns; this is the underlying assumption that local view windows are semantically informative.
  • domain assumption The local adjacent relationship captured by visual n-grams is robust to rotation.
    Asserted in Section 3.2 as the basis for claimed rotation invariance, but not directly measured or compared with alternative view orderings.
  • domain assumption A fixed rendering order (every 30 degrees, or icosahedron plus in-plane rotations) produces a sequence where consecutive views are spatially adjacent.
    Entered implicitly in Section 4.3 rendering protocol; critical for the meaning of 'consecutive' in visual n-grams.
  • domain assumption Pretrained VGG-11 on ImageNet provides transferable features for rendered view images.
    Used as the feature extractor (Section 3.1); standard transfer learning practice, but an external source of information not revisited.

how reviews work

0 comments
Cite this review

Pith. "Pith review of View N-gram Network for 3D Object Retrieval." pith.science (2026). https://pith.science/paper/JX62IXT6

@misc{pith2026190801958,
  author       = {Pith},
  title        = {Pith review of: View N-gram Network for 3D Object Retrieval},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/JX62IXT6}},
  note         = {Machine review of arXiv:1908.01958}
}
read the original abstract

How to aggregate multi-view representations of a 3D object into an informative and discriminative one remains a key challenge for multi-view 3D object retrieval. Existing methods either use view-wise pooling strategies which neglect the spatial information across different views or employ recurrent neural networks which may face the efficiency problem. To address these issues, we propose an effective and efficient framework called View N-gram Network (VNN). Inspired by n-gram models in natural language processing, VNN divides the view sequence into a set of visual n-grams, which involve overlapping consecutive view sub-sequences. By doing so, spatial information across multiple views is captured, which helps to learn a discriminative global embedding for each 3D object. Experiments on 3D shape retrieval benchmarks, including ModelNet10, ModelNet40 and ShapeNetCore55 datasets, demonstrate the superiority of our proposed method.

Figures

Figures reproduced from arXiv: 1908.01958 by the authors.

Figure 1
Figure 1. Illustration of different aggregation strategies for mul [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. The pipeline of View N-gram Network. A shared CNN is used to extract features for each view images of the 3D object. The raw [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. A diagram of the GLU model used in our method. [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (3 more)
Figure 4
Figure 4. Figure 4: The detailed structure of our proposed attention aggrega [PITH_FULL_IMAGE:figures/full_fig_p005_4.png]
Figure 5
Figure 5. Figure 5: Illustration of the retrieval examples on the ModelNet40 [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 6
Figure 6. Figure 6: PR curves on the ModelNet40 dataset for different set [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

56 extracted references · 49 canonical work pages

  1. [1]

    Layer normalization

    Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hin- ton. Layer normalization. arXiv preprint arXiv:1607.06450,

  2. [2]

    Gift: A real-time and scalable 3d shape search engine

    Song Bai, Xiang Bai, Zhichao Zhou, Zhaoxiang Zhang, and Longin Jan Latecki. Gift: A real-time and scalable 3d shape search engine. In CVPR, pages 5023–5032, 2016. 1, 3, 6, 7

  3. [3]

    Re-ranking via metric fusion for object retrieval and per- son re-identification

    Song Bai, Peng Tang, Philip HS Torr, and Longin Jan Late- cki. Re-ranking via metric fusion for object retrieval and per- son re-identification. In Proc. CVPR, pages 740–749, 2019. 1

  4. [4]

    Ensemble diffusion for retrieval

    Song Bai, Zhichao Zhou, Jingdong Wang, Xiang Bai, Longin Jan Latecki, and Qi Tian. Ensemble diffusion for retrieval. In Proc. ICCV, pages 774–783, 2017. 6, 7

  5. [5]

    Shape con- text: A new descriptor for shape matching and object recog- nition

    Serge Belongie, Jitendra Malik, and Jan Puzicha. Shape con- text: A new descriptor for shape matching and object recog- nition. In Proc. NIPS, pages 831–837, 2001. 1

  6. [6]

    3d medical objects retrieval approach using spharms descriptor and network flow as sim- ilarity measure

    Leila Bergamasco, Karla Lima, Carlos Rochitte, and F ´atima de Lourdes dos Santos Nunes. 3d medical objects retrieval approach using spharms descriptor and network flow as sim- ilarity measure. In 2018 31st SIBGRAPI Conference on Graphics, Patterns and Images (SIBGRAPI), pages 329–336. IEEE, 2018. 1

  7. [7]

    Bronstein, Michael M

    Alexander M. Bronstein, Michael M. Bronstein, Leonidas J. Guibas, and Maks Ovsjanikov. Shape google: Geometric words and expressions for invariant shape retrieval. Acm Transactions on Graphics, 30(1):1–20, 2011. 2

  8. [8]

    Shapenet: An information-rich 3d model repository

    Angel X Chang, Thomas Funkhouser, Leonidas Guibas, Pat Hanrahan, Qixing Huang, Zimo Li, Silvio Savarese, Manolis Savva, Shuran Song, Hao Su, et al. Shapenet: An information-rich 3d model repository. arXiv preprint arXiv:1512.03012, 2015. 1, 5

Show all 56 references
  1. [9]

    Group consistent similarity learning via deep crf for person re-identification

    Dapeng Chen, Dan Xu, Hongsheng Li, Nicu Sebe, and Xi- aogang Wang. Group consistent similarity learning via deep crf for person re-identification. In Proc. CVPR, pages 8649– 8658, 2018. 3

  2. [10]

    On visual similarity based 3d model retrieval

    Ding-Yun Chen, Xiao-Pei Tian, Yu-Te Shen, and Ming Ouhyoung. On visual similarity based 3d model retrieval. In Comput. Graph. Forum, pages 223–232, 2003. 1, 2, 6

  3. [11]

    Veram: View-enhanced recurrent attention model for 3d shape classification

    Songle Chen, Lintao Zheng, Yan Zhang, Zhixin Sun, and Kai Xu. Veram: View-enhanced recurrent attention model for 3d shape classification. IEEE Trans. Vis. Comput. Graphics,

  4. [12]

    Siamese cnn-bilstm ar- chitecture for 3d shape representation learning

    Guoxian Dai, Jin Xie, and Yi Fang. Siamese cnn-bilstm ar- chitecture for 3d shape representation learning. In Proc. IJ- CAI, 2018. 1, 3

  5. [13]

    3d deep shape descriptor

    Yi Fang, Jin Xie, Guoxian Dai, Meng Wang, Fan Zhu, Tiantian Xu, and Edward Wong. 3d deep shape descriptor. In Proc. CVPR, pages 2319–2328, 2015. 2

  6. [14]

    Gvcnn: Group-view convolutional neural networks for 3d shape recognition

    Yifan Feng, Zizhao Zhang, Xibin Zhao, Rongrong Ji, and Yue Gao. Gvcnn: Group-view convolutional neural networks for 3d shape recognition. In Proc. CVPR, pages 264–272,

  7. [15]

    Deep aggregation of local 3d geometric features for 3d model retrieval

    Takahiko Furuya and Ryutarou Ohbuchi. Deep aggregation of local 3d geometric features for 3d model retrieval. InProc. BMVC, 2016. 6, 7

  8. [16]

    3d object retrieval with bag-of-region-words

    Yue Gao, You Yang, Qionghai Dai, and Naiyao Zhang. 3d object retrieval with bag-of-region-words. In Proc. ACM Int. Conf. Multimedia, pages 955–958, 2010. 1

  9. [17]

    Seqviews2seqlabels: Learning 3d global features via aggregating sequential views by rnn with atten- tion

    Zhizhong Han, Mingyang Shang, Zhenbao Liu, Chi-Man V ong, Yu-Shen Liu, Matthias Zwicker, Junwei Han, and CL Philip Chen. Seqviews2seqlabels: Learning 3d global features via aggregating sequential views by rnn with atten- tion. IEEE Trans. Image Process., 28(2):658–672, 2018. 1...

  10. [18]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proc. CVPR, pages 770–778, 2016. 3, 8

  11. [19]

    Triplet-center loss for multi-view 3d object retrieval

    Xinwei He, Yang Zhou, Zhichao Zhou, Song Bai, and Xiang Bai. Triplet-center loss for multi-view 3d object retrieval. Proc. CVPR, 2018. 6, 7, 8

  12. [20]

    Interactive retrieval of 3d virtual shapes using physical objects

    Hiroyasu Ichida, Yuichi Itoh, Yoshifumi Kitamura, and Fu- mio Kishino. Interactive retrieval of 3d virtual shapes using physical objects. In IEEE Virtual Reality 2004, pages 231–

  13. [21]

    Deep structured output learning for uncon- strained text recognition

    Max Jaderberg, Karen Simonyan, Andrea Vedaldi, and An- drew Zisserman. Deep structured output learning for uncon- strained text recognition. arXiv preprint arXiv:1412.5903 ,

  14. [22]

    Exploring the limits of language modeling

    Rafal Jozefowicz, Oriol Vinyals, Mike Schuster, Noam Shazeer, and Yonghui Wu. Exploring the limits of language modeling. arXiv preprint arXiv:1602.02410, 2016. 3

  15. [23]

    Rotationnet: Joint object categorization and pose estimation using multiviews from unsupervised viewpoints

    Asako Kanezaki, Yasuyuki Matsushita, and Yoshifumi Nishida. Rotationnet: Joint object categorization and pose estimation using multiviews from unsupervised viewpoints. In Proc. CVPR, pages 5010–5019, 2018. 1

  16. [24]

    Rotation invariant spherical harmonic repre- sentation of 3 d shape descriptors

    Michael Kazhdan, Thomas Funkhouser, and Szymon Rusinkiewicz. Rotation invariant spherical harmonic repre- sentation of 3 d shape descriptors. In Symposium on geom- etry processing, volume 6, pages 156–164, 2003. 1, 2, 3, 6

  17. [25]

    Statistical frame- work for model-based image retrieval in medical applica- tions

    Daniel Keysers, J ¨org Dahmen, Hermann Ney, Berthold B Wein, and Thomas Martin Lehmann. Statistical frame- work for model-based image retrieval in medical applica- tions. Journal of Electronic Imaging, 12(1):59–69, 2003. 1

  18. [26]

    Anatomical 2d/3d shape-matching in virtual reality: A user interface for quantifying joint kinematics with radiographic imaging

    Kyungyoon Kim, Rebekah L Lawrence, Nikki Kyllonen, Paula M Ludewig, Arin M Ellingson, and Daniel F Keefe. Anatomical 2d/3d shape-matching in virtual reality: A user interface for quantifying joint kinematics with radiographic imaging. In 2017 IEEE Symposium on 3D User Interfac...

  19. [27]

    Convolutional neural networks for sentence clas- sification

    Yoon Kim. Convolutional neural networks for sentence clas- sification. arXiv preprint arXiv:1408.5882, 2014. 1, 3

  20. [28]

    Character-aware neural language models

    Yoon Kim, Yacine Jernite, David Sontag, and Alexander M Rush. Character-aware neural language models. In Proc. AAAI, 2016. 3

  21. [29]

    Escape from cells: Deep kd-networks for the recognition of 3d point cloud mod- els

    Roman Klokov and Victor Lempitsky. Escape from cells: Deep kd-networks for the recognition of 3d point cloud mod- els. In Proc. ICCV, pages 863–872, 2017. 2, 7

  22. [30]

    Imagenet classification with deep convolutional neural net- works

    Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural net- works. In Proc. NIPS, pages 1097–1105, 2012. 3

  23. [31]

    Learning discriminative 3d shape representations by view discerning networks

    Biao Leng, Cheng Zhang, Xiaochen Zhou, Cheng Xu, and Kai Xu. Learning discriminative 3d shape representations by view discerning networks. IEEE transactions on visual- ization and computer graphics, 2018. 3

  24. [32]

    Weighted neural bag-of-n-grams model: New baselines for text classification

    Bofang Li, Zhe Zhao, Tao Liu, Puwei Wang, and Xiaoyong Du. Weighted neural bag-of-n-grams model: New baselines for text classification. In Proceedings of COLING 2016, the 26th International Conference on Computational Linguis- tics: Technical Papers, pages 1591–1600, 2016. 1, 3

  25. [33]

    N-gram-based machine translation

    Jos ´e B Marino, Rafael E Banchs, Josep M Crego, Adri `a de Gispert, Patrik Lambert, Jos ´e AR Fonollosa, and Marta R Costa-Juss`a. N-gram-based machine translation. Computa- tional linguistics, 32(4):527–549, 2006. 1

  26. [34]

    V oxnet: A 3d con- volutional neural network for real-time object recognition

    Daniel Maturana and Sebastian Scherer. V oxnet: A 3d con- volutional neural network for real-time object recognition. In Proc. Int. Conf. Intell. Robots Syst., pages 922–928, 2015. 1, 2

  27. [35]

    Automatic differentiation in pytorch

    Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito, Zeming Lin, Al- ban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in pytorch. In NIPS-W, 2017. 6

  28. [36]

    Cnn-n-gram for handwriting word recognition

    Arik Poznanski and Lior Wolf. Cnn-n-gram for handwriting word recognition. In Proc. CVPR, pages 2305–2314, 2016. 3

  29. [37]

    Pointnet: Deep learning on point sets for 3d classification and segmentation

    Charles R Qi, Hao Su, Kaichun Mo, and Leonidas J Guibas. Pointnet: Deep learning on point sets for 3d classification and segmentation. In Proc. CVPR, pages 652–660, 2017. 1, 2

  30. [38]

    V olumetric and multi-view cnns for object classification on 3d data

    Charles R Qi, Hao Su, Matthias Nießner, Angela Dai, Mengyuan Yan, and Leonidas J Guibas. V olumetric and multi-view cnns for object classification on 3d data. In Proc. CVPR, pages 5648–5656, 2016. 2

  31. [39]

    Pointnet++: Deep hierarchical feature learning on point sets in a metric space

    Charles Ruizhongtai Qi, Li Yi, Hao Su, and Leonidas J Guibas. Pointnet++: Deep hierarchical feature learning on point sets in a metric space. In Proc. NIPS, pages 5099– 5108, 2017. 1, 2

  32. [40]

    Discrimi- native n-gram language modeling

    Brian Roark, Murat Saraclar, and Michael Collins. Discrimi- native n-gram language modeling. Computer Speech & Lan- guage, 21(2):373–392, 2007. 1

  33. [41]

    Imagenet large scale visual recognition challenge

    Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, San- jeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge. International journal of computer vision, 115(3):211–252, 2015. 3

  34. [42]

    Shrec16 track: largescale 3d shape retrieval from shapenet core55

    Manolis Savva, Fisher Yu, Hao Su, M Aono, B Chen, D Cohen-Or, W Deng, Hang Su, Song Bai, Xiang Bai, et al. Shrec16 track: largescale 3d shape retrieval from shapenet core55. In Proc. EG Workshop 3D Object Recognit., 2016. 7

  35. [43]

    Ensemble of panorama-based convolutional neural networks for 3d model classification and retrieval

    Konstantinos Sfikas, Ioannis Pratikakis, and Theoharis Theo- haris. Ensemble of panorama-based convolutional neural networks for 3d model classification and retrieval. Comput- ers & Graphics, 71:208–218, 2018. 3

  36. [44]

    Deeppano: Deep panoramic representation for 3-d shape recognition

    Baoguang Shi, Song Bai, Zhichao Zhou, and Xiang Bai. Deeppano: Deep panoramic representation for 3-d shape recognition. IEEE Signal Process. Lett., 22(12):2339–2343,

  37. [45]

    Very deep convo- lutional networks for large-scale image recognition

    Karen Simonyan and Andrew Zisserman. Very deep convo- lutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. 3

  38. [46]

    Multi-view convolutional neural networks for 3d shape recognition

    Hang Su, Subhransu Maji, Evangelos Kalogerakis, and Erik Learned-Miller. Multi-view convolutional neural networks for 3d shape recognition. In Proc. CVPR, pages 945–953,

  39. [47]

    Going deeper with convolutions

    Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In Proc. CVPR, pages 1–9, 2015. 3

  40. [48]

    Outdoors aug- mented reality on mobile phone using loxel-based visual fea- ture organization

    Gabriel Takacs, Vijay Chandrasekhar, Natasha Gelfand, Yin- gen Xiong, Wei-Chao Chen, Thanos Bismpigiannis, Radek Grzeszczuk, Kari Pulli, and Bernd Girod. Outdoors aug- mented reality on mobile phone using loxel-based visual fea- ture organization. In Proceedings of the 1st ACM...

  41. [49]

    3d print- ing of cardiac structures from medical images: an overview of methods and interactive tools

    Francesca Uccheddu, Monica Carfagni, Lapo Governi, Rocco Furferi, Yary V olpe, and Erica Nocerino. 3d print- ing of cardiac structures from medical images: an overview of methods and interactive tools. International Journal on Interactive Design and Manufacturing (IJIDeM), 12(...

  42. [50]

    Attention is all you need

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszko- reit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Proc. NIPS, pages 5998–6008, 2017. 1, 4, 5

  43. [51]

    Dominant set clustering and pooling for multi-view 3d object recogni- tion

    Chu Wang, Marcello Pelillo, and Kaleem Siddiqi. Dominant set clustering and pooling for multi-view 3d object recogni- tion. In Proc. BMVC, volume 12, 2017. 1, 3

  44. [52]

    O-cnn: Octree-based convolutional neu- ral networks for 3d shape analysis

    Peng-Shuai Wang, Yang Liu, Yu-Xiao Guo, Chun-Yu Sun, and Xin Tong. O-cnn: Octree-based convolutional neu- ral networks for 3d shape analysis. ACM Trans. Graph. , 36(4):72, 2017. 2

  45. [53]

    3d shapenets: A deep representation for volumetric shapes

    Zhirong Wu, Shuran Song, Aditya Khosla, Fisher Yu, Lin- guang Zhang, Xiaoou Tang, and Jianxiong Xiao. 3d shapenets: A deep representation for volumetric shapes. In Proc. CVPR, pages 1912–1920, 2015. 1, 2, 5, 6

  46. [54]

    Deepshape: Deep-learned shape descriptor for 3d shape retrieval

    Jin Xie, Guoxian Dai, Fan Zhu, Edward K Wong, and Yi Fang. Deepshape: Deep-learned shape descriptor for 3d shape retrieval. IEEE Trans. Pattern Anal. Mach. Intell. , 39(7):1335–1345, 2017. 1, 2

  47. [55]

    Multi-view har- monized bilinear network for 3d object recognition

    Tan Yu, Jingjing Meng, and Junsong Yuan. Multi-view har- monized bilinear network for 3d object recognition. In Proc. CVPR, pages 186–194, 2018. 1, 3

  48. [56]

    Semi-supervised 3d ab- dominal multi-organ segmentation via deep multi-planar co- training

    Yuyin Zhou, Yan Wang, Peng Tang, Song Bai, Wei Shen, Elliot Fishman, and Alan Yuille. Semi-supervised 3d ab- dominal multi-organ segmentation via deep multi-planar co- training. In Proc. WACV, pages 121–140, 2019. 1

Pith tools

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