REVIEW 3 major objections 8 minor 3 cited by
DCFormer: Efficient 3D Vision-Language Modeling with Decomposed Convolutions
T0 review · 3 major / 8 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read The paper claims that factorizing each 3D convolution into three parallel 1D depthwise convolutions cuts the per-layer cost from $Ck^3$ to $3Ck$ parameters and from $2CHWDk^3$ to $6CHWDk$ FLOPs while matching or beating larger encoders on…
desk verdict The efficiency gain is real and the architecture is clearly described, but the paper never runs the one control experiment that would support its claim that decomposed convolutions preserve 3D spatial information. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the Decomposed Convolution, defined in Eq. 7 as $$X' = X + \mathrm{Norm}_h(X \ast_h) + \mathrm{Norm}_w(X \ast_w) + \mathrm{Norm}_d(X \ast_d),$$ where $X \ast_h = \mathrm{DWConv}_{k\times1\times1}(X)$, $X \ast_w = \mathrm{DWConv}_{1\times k\times1}(X)$, and $X \ast_d = \mathrm{DWConv}_{1\times1\times k}(X)$ are depthwise convolutions along height, width, and depth, each followed by its own normalization. The block inherits the MetaFormer layout—normalization, token mixer, channel MLP, residual connection—with the decomposed convolution in place of self-attention. This is the component that turns $Ck^3$ parameters into $3Ck$ and $2CHWDk^3$ FLOPs into $6CHWDk$, which is what makes large kernels (here 7) affordable in deep 3D networks.
What would settle it
Run the same CLIP training with everything identical except that the token mixer is a full 3D depthwise convolution matched in FLOPs or parameters, and compare zero-shot F1 on the 18 CT-RATE abnormalities; a clear win for the full mixer, or a sharp drop when any one of the three axis branches is removed, would show the additive decomposition is losing information that the reported tables cannot resolve.
Extended reading notes
Core claim
The central claim is that a 3D depthwise convolution can be replaced, as a token mixer, by three parallel 1D depthwise convolutions—one along each spatial axis—and still serve as the spatial backbone of a CLIP-style vision-language model. The replacement changes the per-layer cost from $Ck^3$ parameters and $2CHWDk^3$ FLOPs to $3Ck$ parameters and $6CHWDk$ FLOPs, turning cubic growth in kernel size into linear growth. On CT-RATE, DCFormer variants report the highest F1 scores in both zero-shot and fine-tuned detection of 18 chest abnormalities among the compared encoders, while the naïve variant uses 5.85 million parameters against CT-ViT's 101.1 million. The authors attribute the result to large-kernel decomposed convolutions giving broad spatial context inside a hierarchical, multi-scale encoder.
Load-bearing premise
The result depends on the assumption that summing three axis-wise 1D sweeps preserves the cross-axis spatial interactions a full 3D convolution would capture; if those interactions matter for a pathology, the efficiency gain comes at a representational cost.
Editorial extensions
If this is right
- The encoder family scales from 0.92M to 15.1M parameters and 34 to 168 GFLOPs, so the same CLIP training and inference pipeline runs on much lighter hardware than CT-ViT's 101.1M parameters and 160.5 GFLOPs.
- Because cost scales linearly with kernel size, the design makes large-kernel 3D convolutions practical; larger kernels than 7 are a natural next knob to turn.
- A single linear layer on top of the frozen encoder gives fine-tuned multi-label detection an F1 score of 48.6% for the tiny variant, the best reported in the comparison.
- The hierarchical four-stage structure preserves multi-scale features that a fixed large-patch tokenizer such as CT-ViT loses, which the authors connect to medical imaging performance.
Reading between the lines
- The effective receptive field of one decomposed block is a 3D cross—each axis is processed independently and the results are summed—so stacked layers must build up oblique or curved structure across multiple blocks; whether that is a strength or weakness for specific pathologies is not tested.
- The same factorization transfers directly to any 3D modality where local features are roughly axis-aligned, such as MRI, PET, or volumetric video; the paper only evaluates chest CT, so the transfer is an extrapolation.
- One could push kernel sizes to 31 or 51, as in large-kernel 2D work, at a cost that remains linear, turning the design into a test bed for how much receptive field 3D medical vision-language models actually need.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. DCFormer is a 3D vision encoder that replaces the token mixer in a MetaFormer block with three parallel axis-wise 1D depthwise convolutions along height, width, and depth, whose outputs are normalized and summed (Eq. 7). This decomposition reduces parameters from Ck^3 to 3Ck and FLOPs from 2CHWDk^3 to 6CHWDk. The encoder is hierarchical with four stages, and it is integrated into a CLIP framework with a CXR-BERT text encoder. The paper evaluates this model on the CT-RATE dataset for zero-shot and fine-tuned detection of 18 pathologies, and for image-text retrieval, comparing against CT-ViT, ViT, ConvNeXt, PoolFormer, and TransUNet. The central claim is that the decomposed convolution preserves spatial information while greatly reducing cost, and that DCFormer consistently outperforms the compared encoders.
Significance. The efficiency analysis is correct and clearly presented: the parameter and FLOP formulas for the decomposed convolution are properly derived, and the hierarchical design is well specified. The paper also ships code and uses a unified CLIP training framework across all compared encoders, which is a strength for fair comparison. If the central architectural claim were established, DCFormer would be a useful and practical 3D vision encoder for medical vision-language models. However, the current evidence does not yet establish that the decomposed convolution preserves the spatial information captured by a full 3D convolution, and the reported performance advantages are often small and unsupported by repeated runs or significance testing. The significance is therefore conditional on additional controlled experiments.
major comments (3)
- [Formulation of the DCFormer block, Eq. (7)] The central architectural assumption — that X' = X + Norm_h(X*h) + Norm_w(X*w) + Norm_d(X*d) is an adequate replacement for a 3D token mixer — is not tested against the natural control of a full 3D depthwise convolution at a matched parameter/FLOP budget. The effective per-layer operator has support only on the H, W, and D axes, so it cannot represent cross-axis correlations within a single layer. Whether stacking layers and nonlinearities recovers this capacity is an empirical question, and the paper provides no ablation against a standard 3D depthwise convolution (or a full 3D convolution) to support the claim that spatial information is preserved. This is the load-bearing experiment for the core design choice and is currently missing.
- [Tables 1 and 3; Abstract and Discussion] All reported results are single runs with no error bars, no multiple seeds, and no statistical significance testing. The margins over strong baselines are often small or reversed. For example, in Table 1 the zero-shot accuracy of DCFormer-tiny (62.0%) is lower than CT-ViT (62.9%) and ConvNeXt-tiny (62.5%), and DCFormer-nano (60.4%) is lower than ConvNeXt-nano (62.2%). In Table 3, TransUNet-naive achieves higher retrieval R@10 (2.36% vs. 2.20%) and R@50 (10.00% vs. 9.54%) than DCFormer-naive. Therefore the claim in the abstract and Discussion that DCFormer 'consistently outperforms' the compared state-of-the-art encoders is not supported by the reported data.
- [Image-Text Retrieval (Table 3)] The retrieval protocol is under-specified. It is not stated whether R@k is computed against the full validation set, how many candidates are in the retrieval pool, or whether the reported numbers correspond to the validation split used in the other tasks. Because the retrieval task is one of the three main evaluation pillars, the experimental setup must be described precisely so that the results can be independently reproduced and interpreted.
minor comments (8)
- [Eq. (7) and Algorithm 1] The relationship between Eq. (7) and the MetaFormer recurrence in Eq. (2) is unclear: the pseudocode applies BatchNorm3d inside each of the three parallel branches but does not show a normalization applied to X before the three convolutions, while Eq. (7) explicitly normalizes the three convolution outputs. Please clarify whether the block applies a shared normalization to the input of the token mixer and how the per-branch norms relate to Norm1 in Eq. (2).
- [Discussion, Med3DVLM validation] The claim that DCFormer has been 'independently validated' in Med3DVLM (ref. 33) is misleading because the author list of Med3DVLM overlaps with the present authors. Please describe this as additional validation by the same group, not an independent evaluation.
- [Methods, kernel size notation] The text states that kernel sizes are chosen from {13, 11, 9, 7}, but the architecture table and all reported experiments use kernel size 7 only. Please clarify whether larger kernels were tested or whether the set notation refers to a design choice that was not exercised in the experiments.
- [Implementation Details] Please state explicitly whether all baseline encoders (ViT, TransUNet, ConvNeXt, PoolFormer, CT-ViT) were trained with exactly the same training recipe, including the CLIP loss, batch size, learning rate, number of epochs, and absence of scheduling, and whether any per-model hyperparameter tuning was performed.
- [Zero-Shot Multi-Abnormality Detection] There is a duplicated word in the sentence 'We compute the cosine similarity between between the CT image embedding and each of the text prompt embeddings.'
- [Introduction and Related Work] The novelty claim that DCFormer is 'the first 3D vision encoder to use decomposed convolutions to improve vision-language modeling' should be scoped more carefully and should cite prior work on factorized or axial convolutions, which are closely related to the proposed decomposition.
- [Table 3] Table 3 uses the spelling 'naive' while the rest of the text uses 'naïve'; please unify the spelling.
- [Discussion, clinical deployability] The Discussion claims that DCFormer 'can run on standard hospital hardware without requiring specialized infrastructure' and is suited for real-time applications, but the paper does not report inference time or latency. Consider adding latency measurements to support this claim.
Circularity Check
No significant circularity; the efficiency reduction is arithmetically derived from Eqs. 4-7 and the performance claims are empirical comparisons against external baselines.
full rationale
The central derivation is self-contained. The parameter/FLOP reduction follows by construction from Eqs. 4-7: a k×k×k depthwise kernel with Ck^3 parameters and 2CHWDk^3 FLOPs is replaced by three axis-wise 1D depthwise kernels with 3Ck parameters and 6CHWDk FLOPs; this is an exact arithmetic consequence, not a fitted parameter renamed as a prediction. The zero-shot, fine-tuned, and retrieval results (Tables 1-3) are empirical comparisons against external encoders (ConvNeXt, PoolFormer, TransUNet, ViT, CT-ViT) on CT-RATE, and no target metric is used as an architectural input. The claim that decomposition 'preserves spatial information' is an unverified assumption — no ablation against a full 3D depthwise convolution and no error bars are given — but lack of proof is a correctness/validity concern, not circularity. The only self-citation is Med3DVLM [33] in the Discussion, where the paper calls DCFormer 'independently validated' in a same-author work; that is an overstated independence claim, but it is auxiliary and not load-bearing for the paper's own CT-RATE results. No step in the derivation reduces to its own inputs, so the circularity score is 0.
Assumptions & free parameters
free parameters (5)
- Base decomposed kernel size k=7 =
7
- MLP expansion ratio =
4
- Stage depth configurations =
[1,1,1,1], [2,2,2,2], [2,3,3,2]
- CLIP temperature tau =
1
- Training recipe =
AdamW, lr 1e-5, 15 epochs, no schedule, 8 A100 GPUs
assumptions (3)
- ad hoc to paper Three parallel axis-wise 1D depthwise convolutions summed additively preserve enough 3D spatial context to serve as a token mixer (Eq. 7).
- domain assumption CT-RATE labels and reports are accurate enough to measure zero-shot and fine-tuned pathology detection.
- domain assumption CLIP contrastive loss aligns visual and textual embeddings under a fixed temperature tau=1 (Eq. 8).
Cite this review
Pith. "Pith review of DCFormer: Efficient 3D Vision-Language Modeling with Decomposed Convolutions." pith.science (2026). https://pith.science/paper/LXS3VP5W
@misc{pith2026250205091,
author = {Pith},
title = {Pith review of: DCFormer: Efficient 3D Vision-Language Modeling with Decomposed Convolutions},
year = {2026},
howpublished = {\url{https://pith.science/paper/LXS3VP5W}},
note = {Machine review of arXiv:2502.05091}
}
read the original abstract
Vision-language models (VLMs) have been widely applied to 2D medical image analysis due to their ability to align visual and textual representations. However, extending VLMs to 3D imaging remains computationally challenging. Existing 3D VLMs often rely on Vision Transformers (ViTs), which are computationally expensive due to the quadratic complexity of self-attention, or on 3D convolutions, which require large numbers of parameters and FLOPs as kernel size increases. We introduce DCFormer, an efficient 3D image encoder that factorizes 3D convolutions into three parallel 1D convolutions along the depth, height, and width dimensions. This design preserves spatial information while significantly reducing computational cost. Integrated into a CLIP-based vision-language framework, DCFormer is trained and evaluated on CT-RATE, a dataset of 50,188 paired 3D chest CT volumes and radiology reports. In zero-shot and fine-tuned detection of 18 pathologies, as well as in image-text retrieval tasks, DCFormer consistently outperforms state-of-the-art 3D vision encoders, including CT-ViT, ViT, ConvNeXt, PoolFormer, and TransUNet. These results highlight DCFormer's potential for scalable, clinically deployable 3D medical VLMs. Our code is available at: https://github.com/mirthAI/DCFormer.
Figures
Figures from the paper (2 more)
Forward citations
Cited by 3 Pith papers
-
GreenRFM: Learning a resource-efficient radiology vision-language foundation model via supervision-centric pre-training
MUST supervision—LLM-distilled diagnostic labels plus two-stage ubiquitous training—lets a 33M-parameter 3D ResNet-18 reach 84.8 zero-shot AUC on CT-RATE in 24 GPU-hours and transfer across institutions and MRI.
-
HSENet: Hybrid Spatial Encoding Network for 3D Medical Vision-Language Understanding
HSENet improves 3D CT vision-language understanding by combining global and local 3D encoders with a centroid-based spatial token compressor, posting state-of-the-art results on CT-RATE and RadGenome-ChestCT.
-
Taming Vision-Language Models for Medical Image Analysis: A Comprehensive Review
A survey that classifies vision-language model adaptation for medical imaging into five strategies across eleven tasks, with challenges and future directions.
Reference graph
Works this paper leans on
-
[1]
Litjens, G. et al. A survey on deep learning in medical image analysis. Med. image analysis 42, 60–88 (2017)
2017
-
[2]
Esteva, A. et al. Deep learning-enabled medical computer vision. NPJ digital medicine 4, 5 (2021). 10/13
work page 2021
-
[3]
& Suk, H.-I
Shen, D., Wu, G. & Suk, H.-I. Deep learning in medical image analysis. Annu. review biomedical engineering 19, 221–248 (2017)
2017
-
[4]
Fink, O. et al. Potential, challenges and future directions for deep learning in prognostics and health management applications. Eng. Appl. Artif. Intell. 92, 103678 (2020)
work page 2020
-
[5]
Fukushima, K. Neocognitron: A self-organizing neural network model for a mechanism of pattern recognition unaffected by shift in position. Biol. cybernetics 36, 193–202 (1980)
work page 1980
-
[6]
Handwritten digit recognition with a back-propagation network
LeCun, Y .et al. Handwritten digit recognition with a back-propagation network. Adv. neural information processing systems 2 (1989)
work page 1989
-
[7]
An image is worth 16x16 words: Transformers for image recognition at scale
Dosovitskiy, A. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929 (2020)
arXiv 2020
-
[8]
Ronneberger, O., Fischer, P. & Brox, T. U-net: Convolutional networks for biomedical image segmentation. InMedical image computing and computer-assisted intervention–MICCAI 2015: 18th international conference, Munich, Germany, October 5-9, 2015, proceedings, part III 18, 234–241 (Springer, 2015)
work page 2015
Show all 49 references
-
[9]
Chen, J. et al. Transunet: Transformers make strong encoders for medical image segmentation. arXiv preprint arXiv:2102.04306 (2021)
2021 arXiv
-
[10]
Cao, H. et al. Swin-unet: Unet-like pure transformer for medical image segmentation. In European conference on computer vision, 205–218 (Springer, 2022)
2022
-
[11]
& Zaiane, O
Wang, H., Cao, P., Wang, J. & Zaiane, O. R. Uctransnet: rethinking the skip connections in u-net from a channel-wise perspective with transformer. In Proceedings of the AAAI conference on artificial intelligence, vol. 36, 2441–2449 (2022)
2022
-
[12]
C., Mohan, P
Ates, G. C., Mohan, P. & Celik, E. Dual cross-attention for medical image segmentation. Eng. Appl. Artif. Intell. 126, 107139 (2023)
2023
-
[13]
He, K. et al. Masked autoencoders are scalable vision learners. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 16000–16009 (2022)
2022
-
[14]
Self-supervised pre-training of swin transformers for 3d medical image analysis
Tang, Y .et al. Self-supervised pre-training of swin transformers for 3d medical image analysis. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 20730–20740 (2022)
2022
-
[15]
Chen, R. J. et al. Scaling vision transformers to gigapixel images via hierarchical self-supervised learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 16144–16155 (2022)
2022
-
[16]
Radford, A. et al. Learning transferable visual models from natural language supervision. In International conference on machine learning, 8748–8763 (PMLR, 2021)
2021
-
[17]
Lin, Z. et al. Frozen clip models are efficient video learners. In European Conference on Computer Vision, 388–404 (Springer, 2022)
2022
-
[18]
& Khan, F
Thengane, V ., Khan, S., Hayat, M. & Khan, F. Clip model is an efficient continual learner.arXiv preprint arXiv:2210.03114 (2022)
2022 arXiv
-
[19]
& Xiao, Y
Koleilat, T., Asgariandehkordi, H., Rivaz, H. & Xiao, Y . Medclip-samv2: Towards universal text-driven medical image segmentation. arXiv preprint arXiv:2409.19483 (2024)
2024 arXiv
-
[20]
Y .et al
Lu, M. Y .et al. A multimodal generative ai copilot for human pathology. Nature 634, 466–473 (2024)
2024
-
[21]
Tiu, E. et al. Expert-level detection of pathologies from unannotated chest x-ray images via self-supervised learning. Nat. Biomed. Eng. 6, 1399–1406 (2022)
2022
-
[22]
Endo, M., Krishnan, R., Krishna, V ., Ng, A. Y . & Rajpurkar, P. Retrieval-based chest x-ray report generation using a pre-trained contrastive language-image model. In Machine Learning for Health, 209–219 (PMLR, 2021)
2021
-
[23]
& Hoogs, A
Hu, B., Vasu, B. & Hoogs, A. X-mir: Explainable medical image retrieval. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, 440–450 (2022)
2022
-
[24]
& De Melo, G
Eslami, S., Meinel, C. & De Melo, G. Pubmedclip: How much does clip benefit visual question answering in the medical domain? In Findings of the Association for Computational Linguistics: EACL 2023, 1181–1193 (2023)
2023
-
[25]
Huang, Z., Bianchi, F., Yuksekgonul, M., Montine, T. J. & Zou, J. A visual–language foundation model for pathology image analysis using medical twitter. Nat. medicine 29, 2307–2316 (2023)
2023
-
[26]
Hamamci, I. E. et al. A foundation model utilizing chest ct volumes and radiology reports for supervised-level zero-shot detection of abnormalities. CoRR (2024). 11/13
2024
-
[27]
Hamamci, I. E. et al. Generatect: Text-conditional generation of 3d chest ct volumes. InEuropean Conference on Computer Vision, 126–143 (Springer, 2025)
2025
-
[28]
Hatamizadeh, A. et al. Swin unetr: Swin transformers for semantic segmentation of brain tumors in mri images. In International MICCAI brainlesion workshop, 272–284 (Springer, 2021)
2021
-
[29]
Xception: Deep learning with depthwise separable convolutions
Chollet, F. Xception: Deep learning with depthwise separable convolutions. In Proceedings of the IEEE conference on computer vision and pattern recognition, 1251–1258 (2017)
2017
-
[30]
Boecking, B. et al. Making the most of text semantics to improve biomedical vision–language processing. In European conference on computer vision, 1–21 (Springer, 2022)
2022
-
[31]
Liu, Z. et al. A convnet for the 2020s. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 11976–11986 (2022)
2022
-
[32]
Metaformer is actually what you need for vision
Yu, W.et al. Metaformer is actually what you need for vision. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 10819–10829 (2022)
2022
-
[33]
C., Gong, K
Xin, Y ., Ates, G. C., Gong, K. & Shao, W. Med3dvlm: An efficient vision-language model for 3d medical image analysis. arXiv preprint arXiv:2503.20047 (2025)
2025
-
[34]
& Beyer, L
Zhai, X., Mustafa, B., Kolesnikov, A. & Beyer, L. Sigmoid loss for language image pre-training. In Proceedings of the IEEE/CVF international conference on computer vision, 11975–11986 (2023)
2023
-
[35]
& Lee, Y
Liu, H., Li, C., Wu, Q. & Lee, Y . J. Visual instruction tuning.Adv. neural information processing systems 36 (2024)
2024
-
[36]
Lai, X. et al. Lisa: Reasoning segmentation via large language model. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 9579–9589 (2024)
2024
-
[37]
Metaformer baselines for vision
Yu, W.et al. Metaformer baselines for vision. IEEE Transactions on Pattern Analysis Mach. Intell.(2023)
2023
-
[38]
& Sun, J
He, K., Zhang, X., Ren, S. & Sun, J. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, 770–778 (2016)
2016
-
[39]
Batch normalization: Accelerating deep network training by reducing internal covariate shift
Ioffe, S. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167 (2015)
2015 arXiv
-
[40]
Ba, J. L. Layer normalization. arXiv preprint arXiv:1607.06450 (2016)
2016 arXiv
-
[41]
& Hinton, G
Nair, V . & Hinton, G. E. Rectified linear units improve restricted boltzmann machines. In Proceedings of the 27th international conference on machine learning (ICML-10), 807–814 (2010)
2010
-
[42]
& Gimpel, K
Hendrycks, D. & Gimpel, K. Gaussian error linear units (gelus). arXiv preprint arXiv:1606.08415 (2016)
2016 arXiv
-
[43]
& Wang, X
Yu, W., Zhou, P., Yan, S. & Wang, X. Inceptionnext: When inception meets convnext. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 5672–5683 (2024)
2024
-
[44]
& Ding, G
Ding, X., Zhang, X., Han, J. & Ding, G. Scaling up your kernels to 31x31: Revisiting large kernel design in cnns. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 11963–11975 (2022)
2022
-
[45]
Liu, S. et al. More convnets in the 2020s: Scaling up kernels beyond 51x51 using sparsity.arXiv preprint arXiv:2207.03620 (2022)
2022 arXiv
-
[46]
Liu, Z. et al. Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF international conference on computer vision, 10012–10022 (2021)
2021
-
[47]
Internimage: Exploring large-scale vision foundation models with deformable convolutions
Wang, W.et al. Internimage: Exploring large-scale vision foundation models with deformable convolutions. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 14408–14419 (2023)
2023
-
[48]
Dai, Z., Liu, H., Le, Q. V . & Tan, M. Coatnet: Marrying convolution and attention for all data sizes.Adv. neural information processing systems 34, 3965–3977 (2021)
2021
-
[49]
Kingma, D. P. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980 (2014). Acknowledgements This work was supported by the Department of Medicine and the Intelligent Clinical Care Center at the University of Florida College of Medicine. The authors expres...
2014 arXiv
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.