REVIEW 3 major objections 7 minor 17 references
FusionNet: Incorporating Shape and Texture for Abnormality Detection in 3D Abdominal CT Scans
T0 review · 3 major / 7 minor · reviewed 2026-08-14 · deepseek-v4-flash
Pith's one-line read A network that multiplies pancreas-shape features with CT-texture features at its third layer detects pancreatic ductal adenocarcinoma with 92.65% sensitivity and 97.00% specificity.
desk verdict A useful applied paper whose headline gain is likely inflated by architecture selection on the same folds; worth reading for the fusion framework, but treat the 92/97 numbers as preliminary. 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 object is the parameterized fusion function $f_{\alpha\beta}(S,X;w)=f_{\alpha:L}(\beta(f_{1:\alpha}(S;w^1_{1:\alpha}), f_{1:\alpha}(X;w^2_{1:\alpha})); w_{\alpha:L})$, where $S$ is the predicted pancreas mask, $X$ is the CT volume, $\beta \in \{+,\ast,\oplus\}$, and $\alpha$ selects the layer where the two branches meet. Varying $\alpha$ and $\beta$ changes when and how shape and texture features are combined while keeping the post-fusion network fixed, so the architecture search isolates the fusion strategy. The winning configuration, multiplication at the third of six layers, is what the paper credits for the large jump over image-only and mask-only baselines.
What would settle it
Run the four-fold classification experiment with ground-truth pancreas masks, or with masks from a segmenter trained on abnormal scans, and check whether the more-than-10-point sensitivity gain over the image-only baseline persists; if it collapses or reverses, the reported complementarity depends on the specific segmentation model rather than on a general shape-texture fusion effect.
Extended reading notes
Core claim
The central claim is that shape and texture are complementary evidence for PDAC, and that explicit fusion in a deep network captures this complementarity better than either branch alone or naive score averaging. The paper defines a functional space of fusion architectures $f_{\alpha\beta}$ in which $\alpha$ is the layer at which the mask and image branches are combined and $\beta$ is the combination operation (addition, multiplication, or concatenation). A grid search over the 18 architectures shows the best model fuses at layer 3 with multiplication: FusionNet3*. This model reports 92.65% sensitivity and 97.00% specificity, while the image-only baseline achieves 83.09% sensitivity and 92.00% specificity. The authors interpret the large gap between naive fusion and FusionNet3* as evidence that the fusion architecture, not the mere availability of two inputs, carries the improvement.
Load-bearing premise
The predicted pancreas mask, produced by a segmentation network trained only on normal cases, stays a reliable shape descriptor when the same network is applied to scans that contain tumors.
Editorial extensions
If this is right
- The two-stage pipeline can detect PDAC using only image-level labels for the classification stage and pancreas annotations only on normal scans, bypassing the need for lesion annotations.
- Because the best fusion multiplies two feature streams mid-network, the same functional-space search can be transferred to other two-input classification tasks.
- At 92.65% sensitivity and 97.00% specificity, the system misses 11 of 136 cancer cases and raises 6 false alarms per 200 normals, suggesting it could serve as a triage tool.
- The reported more-than-10-point sensitivity gain over image-only input is the direct, quantitative consequence of fusing shape and texture.
- The complementarity of mask and image implies that improvements in pancreas segmentation should translate directly into better PDAC detection within this framework.
Reading between the lines
- An implication the authors leave implicit: the same two-branch fusion recipe could apply to other cancers that visibly deform an organ, with the organ's segmentation mask serving as the shape channel.
- A testable extension outside the paper: retrain the classification stage with masks from a segmentation network that has seen abnormal cases; if the gain persists, the complementarity is about shape and texture genuinely, not about mask errors.
- The optimal fusion layer (third of six) may depend on dataset resolution and tumor size; on higher-resolution volumes the best $\alpha$ could shift, so a fixed architecture should be re-searched rather than assumed.
- The paper compares against its own image-only and mask-only baselines; a fair clinical deployment would need external validation against radiologist reads and multi-center CT protocols.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a two-stage pipeline for detecting pancreatic ductal adenocarcinoma (PDAC) in 3D abdominal CT. In the first stage, a segmentation network trained only on normal cases produces a binary pancreas mask for each scan. In the second stage, a FusionNet takes both the CT volume and the predicted mask as input and performs binary classification. The fusion is parameterized by the layer α at which two branches are combined and the operation β ∈ {+, *, concatenation}; a grid search over 18 architectures is performed within 4-fold cross-validation on the classification set. The selected architecture, FusionNet3* (α=3, β=multiplication), is reported to achieve a sensitivity of 92.65% and a specificity of 97.00% on 200 normal and 136 PDAC scans, improving over image-only (83.09% sensitivity, 92.00% specificity) and mask-only baselines. The authors also report an oracle combination of image-only and mask-only decisions (Image+Mask GT) that shows large complementarity between the two input modalities.
Significance. If validated, the work is clinically relevant and methodologically interesting. A strength is the oracle control (Image+Mask GT), which directly demonstrates that image-only and mask-only predictions are complementary and that an upper bound of fusion is much higher than either branch. The functional space of fusion architectures is clearly specified, and the authors openly describe the grid search. The method only requires pancreas annotations on normal cases, which is a practical advantage. However, the evaluation is based on a single private dataset, the reported gains are not accompanied by error bars or per-fold results, and the architecture is selected on the same folds used for evaluation. These issues limit the strength of the quantitative claims; nevertheless, the core idea is plausible and worthy of publication after substantial revision.
major comments (3)
- [§3.1–3.2, Table 1 and Table 2] The headline results are obtained by selecting the best architecture on the same cross-validation folds used to compute the final metrics. In §3.1 the authors state 'we apply grid search on α and β' over all 18 pairs, and in §3.2 FusionNet3* is presented as the final method with the best F1 in Table 2. No held-out validation set or nested cross-validation is described. Because the same four folds are used both for model selection and for evaluation, the reported sensitivity and specificity are the best of 18 models evaluated on the test folds. With 34 abnormal and 50 normal cases per fold, the reported gains over Image (about 13 abnormal cases and 10 normal cases) are within the range that can arise from selection over many correlated models. Please provide per-fold metrics for all 18 architectures, error bars, and a model-selection procedure that does not use the test folds (e.g., nested cross-validation or a separate validation split), or explicitly frame the reported numbers as an upper bound of the architecture search.
- [§2.2 and §3.1] The mask branch is generated by a segmentation network trained only on normal cases (X1) and then applied to both normal and abnormal cases in X2. The paper does not evaluate the quality of the predicted mask on PDAC cases. If masks are systematically corrupted by the presence of the tumor (e.g., deformed or missing pancreas), the shape branch in FusionNet may encode a dataset-specific artifact rather than true shape information, and the complementarity claim could be an artifact of the specific mask errors. Please report mask Dice or visual examples on abnormal cases, or perform an analysis that controls for mask corruption, for instance by ablating with ground-truth masks on a subset of the data.
- [§3.2, Table 1] The paper does not provide confidence intervals or repeated-run variability for any of the reported metrics. Given the small dataset (200 normal, 136 abnormal) and a single random 4-fold split, the differences between FusionNet3* and Image (9.56% sensitivity, 5% specificity) may not be statistically significant. Please provide bootstrap confidence intervals or repeated cross-validation with different seeds, and report the variance across folds.
minor comments (7)
- [Conclusion] The conclusion states '200 normal patients and 138 patients with PDAC', but the dataset described in §3.1 contains 136 PDAC cases; please correct this inconsistency.
- [§3.1] Please report the inclusion criteria for the patients, how the normal cases were confirmed as cancer-free, and whether the study received institutional review board approval; this information is commonly expected for medical imaging studies.
- [Figure 2 and Figure 3] The ROC curves and the metric-comparison plots overlap considerably; consider using separate panels or a table with confidence intervals to improve readability.
- [§2.3] The loss weight λ is fixed to 0.7 without a sensitivity analysis; please justify this choice or show that the results are stable across a range of λ values.
- [§3.2, Table 1] The 'Image+Mask GT' result is an oracle that uses ground-truth labels to decide if either method is correct; please state clearly that this is an idealized upper bound and not achievable in practice, and avoid the phrase 'proves' when describing what it demonstrates.
- [§3.1] Please clarify whether the same training hyperparameters (learning rate, decay, number of iterations) were used for all 18 architectures in the grid search, and whether early stopping was applied.
- [§2.3, Eq. (1)] The notation w = {w1_{1:α}, w2_{1:α}, w_{α:L}} is ambiguous; please define the shape or dimensionality of each parameter group, and clarify that the two branches have independent weights before fusion.
Circularity Check
No circular derivation: FusionNet3* is an empirically selected architecture, not a quantity derived from its own inputs.
full rationale
The paper makes no derivation claim that could reduce to its own inputs. The central result is an empirical measurement: the FusionNet architecture is selected by grid search over a pre-defined 18-model functional space (Sec. 3.1), and the reported 92.65% sensitivity / 97.00% specificity are the measured test-fold numbers of the selected model, not a quantity computed from a fitted parameter or from a theorem whose conclusion is assumed. The complementarity claim is supported by two independent observations: (i) the oracle 'Image+Mask GT' analysis in Sec. 3.2 is explicitly an upper bound computed using ground-truth labels and is not claimed as an achieved system, and (ii) Table 2 shows that most of the 18 fusion models outperform the single-branch baselines across the same folds. Neither observation is forced by construction. The self-citations are not load-bearing in a circular sense: [11] supplies the segmentation network used as a fixed preprocessing tool trained on X1 and tested on X2, and [5] provides an external baseline (AE+Mask); neither is used to justify the fusion result itself. The grid search being conducted on the same four cross-validation folds that produce the final metric is a real model-selection/statistical-validity concern, but it is a correctness risk rather than circularity: the selected model's performance is still measured, not defined by the selection. No equation, definition, or self-citation chain in the paper makes any claimed prediction equivalent to an input by construction.
Assumptions & free parameters
free parameters (4)
- loss weight λ =
0.7
- fusion layer α =
3
- fusion operation β =
*
- learning rate and decay =
0.01, decay 0.9997
assumptions (3)
- domain assumption Pancreas shape (from mask) and texture (from CT) carry complementary information for PDAC detection.
- domain assumption A segmentation network trained only on normal pancreas masks produces masks on abnormal scans that are accurate enough to serve as shape inputs.
- ad hoc to paper The 18 pre-defined fusion architectures are a representative functional space, and selecting the best on the same CV folds gives a fair performance estimate.
Cite this review
Pith. "Pith review of FusionNet: Incorporating Shape and Texture for Abnormality Detection in 3D Abdominal CT Scans." pith.science (2026). https://pith.science/paper/ZCZQ352F
@misc{pith2026190807654,
author = {Pith},
title = {Pith review of: FusionNet: Incorporating Shape and Texture for Abnormality Detection in 3D Abdominal CT Scans},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZCZQ352F}},
note = {Machine review of arXiv:1908.07654}
}
read the original abstract
Automatic abnormality detection in abdominal CT scans can help doctors improve the accuracy and efficiency in diagnosis. In this paper we aim at detecting pancreatic ductal adenocarcinoma (PDAC), the most common pancreatic cancer. Taking the fact that the existence of tumor can affect both the shape and the texture of pancreas, we design a system to extract the shape and texture feature at the same time for detecting PDAC. In this paper we propose a two-stage method for this 3D classification task. First, we segment the pancreas into a binary mask. Second, a FusionNet is proposed to take both the binary mask and CT image as input and perform a binary classification. The optimal architecture of the FusionNet is obtained by searching a pre-defined functional space. We show that the classification results using either shape or texture information are complementary, and by fusing them with the optimized architecture, the performance improves by a large margin. Our method achieves a specificity of 97% and a sensitivity of 92% on 200 normal scans and 136 scans with PDAC.
Figures
Reference graph
Works this paper leans on
-
[1]
Seer cancer statistics review 1975-2015. National Cancer Institute. Bethesda, MD
work page 1975
-
[2]
Chen, X., Chen, Y., Ma, C., Liu, X., Tang, X.: Classification of pancreatic tumors based on mri images using 3d convolutional neural networks. In: ISICDM (2018)
work page 2018
-
[3]
Hazirbas, C., Ma, L., Domokos, C., Cremers, D.: Fusenet: Incorporating depth into semantic segmentation via fusion-based cnn architecture. In: ACCV (2017)
work page 2017
-
[4]
Krizhevsky, A., Sutskever, I., Hinton, G.E.: Imagenet classification with deep con- volutional neural networks. In: NeurIPS (2012)
work page 2012
-
[5]
Liu, F., Xie, L., Xia, Y., Fishman, E.K., Yuille, A.L.: Joint shape representation and classification for detecting pdac. ArXiv (2018)
work page 2018
-
[6]
Milletari, F., Navab, N., Ahmadi, S.A.: V-net: Fully convolutional neural networks for volumetric medical image segmentation. pp. 565–571 (10 2016)
work page 2016
-
[7]
Roth, H.R., Lu, L., Farag, A., Shin, H.C., Liu, J., Turkbey, E.B., Summers, R.M.: Deeporgan: Multi-level deep convolutional networks for automated pancreas seg- mentation. In: MICCAI (2015)
work page 2015
-
[8]
Wu, J., Wang, Y., Xue, T., Sun, X., Freeman, W.T., Tenenbaum, J.B.: MarrNet: 3D Shape Reconstruction via 2.5D Sketches. In: NeurIPS (2017)
work page 2017
Show all 17 references
-
[9]
Xia, Y., Liu, F., Yang, D., Cai, J., Yu, L., Zhu, Z., Xu, D., Yuille, A.L., Roth, H.: 3d semi-supervised learning with uncertainty-aware multi-view co-training. arXiv
-
[10]
In: MICCAI
Xia, Y., Xie, L., Liu, F., Zhu, Z., Fishman, E.K., Yuille, A.L.: Bridging the gap between 2d and 3d organ segmentation with volumetric fusion net. In: MICCAI
-
[11]
CVPR (2018)
Yu, Q., Xie, L., Wang, Y., Zhou, Y., Fishman, E.K., Yuille, A.L.: Recurrent saliency transformation network: Incorporating multi-stage visual cues for small organ seg- mentation. CVPR (2018)
2018
-
[12]
In: MICCAI (2017)
Zhang, L., Lu, L., Summers, R., Kebebew, E., Yao, J.: Personalized pancreatic tumor growth prediction via group learning. In: MICCAI (2017)
2017
-
[13]
In: WACV (2019)
Zhou, Y., Wang, Y., Tang, P., Bai, S., Shen, W., Fishman, E., Yuille, A.: Semi- supervised 3d abdominal multi-organ segmentation via deep multi-planar co- training. In: WACV (2019)
2019
-
[14]
In: MICCAI (2017)
Zhou, Y., Xie, L., Fishman, E.K., Yuille, A.L.: Deep supervision for pancreatic cyst segmentation in abdominal ct scans. In: MICCAI (2017)
2017
-
[15]
In: MICCAI (2017)
Zhou, Y., Xie, L., Shen, W., Wang, Y., Fishman, E.K., Yuille, A.L.: A fixed-point model for pancreas segmentation in abdominal ct scans. In: MICCAI (2017)
2017
-
[16]
In: 2018 International Conference on 3D Vision (3DV) (2018)
Zhu, Z., Xia, Y., Shen, W., Fishman, E., Yuille, A.: A 3d coarse-to-fine framework for volumetric medical image segmentation. In: 2018 International Conference on 3D Vision (3DV) (2018)
2018
-
[17]
ArXiv (2018)
Zhu, Z., Xia, Y., Xie, L., Fishman, E.K., Yuille, A.L.: Multi-scale coarse-to-fine segmentation for screening pancreatic ductal adenocarcinoma. ArXiv (2018)
2018
Reviewed August 14, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.