Pith. sign in

REVIEW 3 major objections 6 minor 2 cited by

Self-Disentanglement and Re-Composition for Cross-Domain Few-Shot Segmentation

T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read The paper argues that cross-domain few-shot segmentation fails because distance-based comparison of Vision Transformer features treats every pairwise layer comparison as equally important, so meaningful matches are diluted by meaningless…

desk verdict Credible empirical gains for CD-FSS, but the causal story is under-tested; worth a serious referee if the theory and artifacts are cleaned up. read the letter →

arxiv 2506.02677 v1 pith:55LN5SC7 submitted 2025-06-03 cs.CV cs.AIcs.LG

classification cs.CVcs.AIcs.LG
keywords cross-domainfew-shotsegmentationfeaturedisentanglementVisionTransformerdecompositionresidualstreamorthogonalspacedecouplingprototypematchingdomaingeneralizationsemantic
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

The paper takes on cross-domain few-shot segmentation (CD-FSS), in which a model trained on one domain must segment unseen classes in an unfamiliar domain from a few labeled examples. It claims that the standard approach—comparing support and query features with a distance metric—suffers from feature entanglement: source-domain patterns become bound together, so they do not transfer. The authors find that a Vision Transformer's output can be decomposed into a sum of per-layer contributions, and that the distance computation then compares every layer with every other layer on equal footing, mixing meaningful matches with meaningless ones. They build a method, Self-Disentanglement and Re-Composition (SDRC), that learns weights for these cross-layer comparisons after decoupling the layer features in an orthogonal low-rank space. On the CD-FSS benchmark the method improves mean IoU by 1.92 points (1-shot) and 1.88 points (5-shot) over the previous state of the art.

What carries the argument

The load-bearing identity is the residual-stream decomposition of a Vision Transformer, written as $\mathrm{ViT}(I)=Z^0+\sum_{l=1}^{L}\mathrm{Layer}_l$, which treats the final output as the sum of per-layer contributions. This turns a single feature-distance computation into a matrix of all pairwise inter-layer comparisons, and it drives both the diagnosis and the remedy: the CKA measurements quantify which comparisons are meaningful, and the method learns weights over that comparison matrix. The method itself consists of three modules: Orthogonal Space Decoupling (OSD), which projects the concatenated layer features into a low-rank space with an orthogonality loss and maps them back; Cross-Pattern Comparison (CPC), which builds $L\times L$ foreground/background score maps between support prototypes and query features; and Adaptive Fusion Weight (AFW), a small ($L^2\times 2$) weight matrix learned during target finetuning to re-compose the score maps.

What would settle it

Run the CD-FSS benchmark with the fusion weights (or AFW) replaced by random fixed weights while keeping everything else identical; the paper's account predicts a large drop toward the equal-weight baseline. If accuracy stays roughly the same, then the learned weighting is not the active ingredient and the entanglement explanation is not supported.

Watch

Extended reading notes

Core claim

The central claim is that it is the equal-weight cross-match of ViT components in distance calculation that causes feature entanglement in CD-FSS, not the individual features themselves. Because residual connections keep every layer's output in the same feature space, the final ViT representation is a cumulative composition of all layers; a cosine-similarity distance between support and query therefore expands into a full matrix of pairwise layer comparisons. The paper shows that diagonal (same-layer) comparisons have much higher source–target CKA similarity than the final-output comparison, which they take as evidence that correct matches carry transferable signal, while off-diagonal matches dilute it. It further observes that some off-diagonal matches are better than the diagonal, indicating the optimal comparison is a learnable cross-match rather than strict layer-wise matching. Based on this, SDRC decouples layer features with an orthogonality constraint, cross-compares them, and re-composes the resulting score maps with weights learned during target-domain finetuning.

Load-bearing premise

The causal interpretation rests on treating a Vision Transformer's final feature as a plain sum of independent layer outputs, ignoring layer normalization and the indirect ways layers influence each other; if that simplification is not faithful, the diagnosis may not be the real mechanism even though the method still works.

Editorial extensions

If this is right

  • Any distance-based CD-FSS method that compares final ViT features with equal weights is leaving transferable signal unused; reweighting the cross-layer comparison matrix should improve accuracy without changing the encoder.
  • The gains of 1.92 and 1.88 mean-IoU points under 1-shot and 5-shot indicate that comparison weighting matters more when the support set is small, and the consistent improvement across natural, satellite, skin-lesion, and X-ray domains suggests the entanglement mechanism is domain-agnostic.
  • Because OSD operates on a rank-8 low-dimensional space and AFW has only a few hundred parameters, the approach can be grafted onto existing prototype-based few-shot segmenters at negligible computational cost.
  • The theoretical argument in Section 6 implies the learned weights tighten the target-domain risk bound by shrinking the weighted inter-layer domain discrepancy, so the method is a form of attention over layer comparisons rather than a new feature extractor.

Reading between the lines

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

  • The same equal-weight cross-layer comparison appears in many metric-based few-shot learners beyond segmentation, so the learned-weighting principle could transfer to few-shot classification and retrieval, though the paper does not test this.
  • One diagnostic use suggested by the paper's logic: computing the CKA matrix between support and query layer features at inference time could flag when a model is relying on meaningless cross-layer matches, enabling a data-driven choice of where to apply reweighting.
  • The paper's theoretical bound connects learned comparison weights to $H$-divergence; a natural extension would be to make the weights directly penalize low-CKA cross-layer pairs during source training rather than learning them only during target finetuning.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 6 minor

Summary. The paper proposes a cross-domain few-shot segmentation method (SDRC) built on a decomposition of the ViT output into a sum of layer contributions. It argues that existing distance-based methods entangle meaningful and meaningless cross-layer comparisons because all comparisons are weighted equally, and proposes to fix this by (i) extracting per-layer features, (ii) an Orthogonal Space Decoupling (OSD) module that reduces feature correlation in a low-rank space, (iii) a Cross-Pattern Comparison (CPC) module that computes all L×L support-query layer comparisons, and (iv) an Adaptive Fusion Weight (AFW) for target-domain fine-tuning. Experiments on four CD-FSS target datasets report mean IoU improvements of 1.92 and 1.88 points over prior state of the art under 1-shot and 5-shot settings, with ablations over components, distance metrics, loss weights, and network architectures.

Significance. The paper's strongest contribution is empirical: it demonstrates consistent gains on the standard CD-FSS benchmark using a lightweight encoder-only ViT design, with ablations isolating the contribution of each proposed module and additional studies on Swin Transformers, FSS, and domain generalization. These results are valuable for the community even if the proposed interpretation is later refined. The causal interpretation of entanglement through equal-weight cross-layer comparisons is the paper's main conceptual novelty, and its validation currently relies on an indirect CKA proxy and an approximate additivity assumption that are not sufficient to establish the mechanism. The theoretical analysis in Section 6 is internally inconsistent and should be corrected.

major comments (3)
  1. [Section 2.2, Eq. (3)] The central decomposition ViT(I)=Z0+Σ_l Layer_l explicitly ignores layer normalization (stated in the text) and indirect cross-layer effects. Because LayerNorm is a nonlinear operation applied inside each block (and at the output), the final representation is not a sum of independent layer contributions. Since Eq. (7) and the notion of 'equal importance' of cross-layer comparisons rely directly on this additivity, the causal interpretation is built on an unverified approximation. The paper should either quantify the faithfulness of Eq. (3) on actual ViT features (e.g., reconstruction error or a diagnostic where uniform vs. diagonal cross-layer weights are compared in a simple baseline without OSD/AFW), or soften the causal claim. The empirical method may still be effective, but the stated interpretation is not yet supported.
  2. [Section 2.3, Table 1 and Fig. 4] The validation of the entanglement hypothesis uses CKA between source and target features as a proxy for overfitting/entanglement. CKA is a similarity measure between representations, not a measure of segmentation error, transferability, or 'meaningless comparison' impact. Table 1 compares final-output CKA with layer-wise average CKA, but these are different quantities (a single representation versus an average of 12 pairwise similarities), and the reported 'Top-12 Avg' and 'Bottom-12 Avg' values are not defined in the text or figure caption. Moreover, Table 5's comparison between position-wise and cross-pattern comparison is performed inside the full pipeline containing OSD and AFW, so it cannot isolate the effect of equal-weight cross-layer matching in the baseline of Eq. (6). A controlled experiment with fixed equal weights vs. diagonal-only weights, without learned modules, is needed to support the causal claim.
  3. [Section 6, Eq. (19)-(20)] The theoretical analysis is internally inconsistent with the method section. Mechanism 1 states that AFW 'reduces ε_S(h)' by optimizing source-domain output, but AFW is deliberately excluded from source-domain training (Section 3.2 and Table 7 show that source-trained AFW performs worse). The sentence 'as confirmed by the experiments on the source domain in Answer 3' contains a vestige of a prior exchange and should be removed. Additionally, the inequality in Eq. (20) requires 0 ≤ w_ij ≤ 1 and a well-defined decomposition of the H-divergence into per-layer terms, neither of which is established; the learned weights are unconstrained. Please either provide a rigorous derivation with stated assumptions or delete this section, as it currently undermines rather than supports the paper's claims.
minor comments (6)
  1. [Section 2.1 and Section 3.2] The problem definition states the model is trained solely on the source domain 'without access to the target data,' but the method includes target-domain fine-tuning on the support set. Please clarify that the episodic evaluation uses support-set fine-tuning after source training; this distinction is important for understanding the setting and for assessing the AFW results.
  2. [Table 1 and Fig. 4] Please define 'Top-12 Avg' and 'Bottom-12 Avg' explicitly; the current text says 'simply shift the match between layers' but does not describe the shift procedure.
  3. [Throughout] Several typographical errors: 'usual perform' in Section 1, 'the model is trained solely... without access to the target data' (contradicts fine-tuning), 'the layers' in Section 2.2, and the footnote 'Please see Fig. 2 for distinguishing Layer and Block' should be integrated.
  4. [Section 2.2] The citation to 'Gandelsman et al.' is missing the publication venue/year in the bibliography; the same reference appears incomplete.
  5. [Section 5, Table 6] The rank sweep row lacks a header; it is not clear what the first row (64, 32, 16, 8, 4, 2) represents until reading the text. Also, the claim that rank=8 uses 1/4 the parameters of rank=32 is not visible from the table; please state the parameter counts.
  6. [Section 4.2] The claim that APSeg has 'substantially lower computational costs' for the proposed method is not quantified; please include parameter counts or FLOPs for APSeg alongside Table 11.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: SDRC's reported gains are evaluated on held-out target episodes, and the ViT decomposition is an explicitly stated approximation used for motivation rather than as evidence for itself.

full rationale

The paper's central chain is: decompose ViT output into layer components (Eq. 3), expand cosine similarity into cross-layer terms (Eq. 7), hypothesize that equal-weight cross-layer comparisons cause feature entanglement, validate this hypothesis with CKA domain-similarity measurements, and then design OSD, CPC, and AFW to reweight those comparisons. None of these steps reduces to its own input by construction. The decomposition in Eq. 3 is explicitly approximate (layer normalization and indirect downstream effects are ignored), but this is a stated modeling assumption, not a circular definition. The CKA validation uses the standard CKA metric from Kornblith et al. (2019); the self-citation to Zou et al. (2024a) is only for the choice of metric and is not load-bearing because the metric and its equations are provided in Appendix A and originate externally. The method's predictions are test-set segmentation masks, not re-displays of fitted parameters: OSD, AFW, and comparison weights are learned from support episodes and evaluated on held-out query images, and the ablations compare genuine architectural variants on the same benchmark. The main limitation is that the causal claim that cross-layer matching is the unique cause of entanglement is not fully isolated by the ablations; CKA similarity is a proxy, and the same-layer CKA differences could partly reflect known layer-function alignment rather than a demonstrated mechanism. That is a correctness or identification concern, not circularity. One unusual artifact should be noted but does not affect circularity: Section 6 contains the unsupported sentence 'as confirmed by the experiments on the source domain in Answer 3,' which appears to be a template remnant and is not a demonstrated experimental confirmation in the paper. Overall, the empirical contributions stand independently of the paper's interpretative narrative, so no circular step is present.

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

The main free parameters are standard hyperparameters plus the test-time AFW and Worth updates. The axioms include the approximate ViT decomposition, the CKA proxy for entanglement, and the orthogonality-driven disentanglement assumption. No new physical entities are introduced.

free parameters (4)
  • lambda (orthogonal loss weight) = 0.1
    Tuned manually; Table 9 shows minor sensitivity across 0.01 to 0.5.
  • r (OSD rank) = 8
    Chosen as a parameter-efficiency tradeoff; Table 6 shows r=32 gives slightly higher mIoU but four times the parameters.
  • AFW weight matrix (L^2 x 2) = Learned per target episode
    Adaptive Fusion Weights are learned during target-domain fine-tuning on support data; they directly compose the score maps.
  • Worth (OSD convolutional layer) = Fine-tuned on target
    The only part of OSD updated during target fine-tuning, enabling adaptation.
assumptions (4)
  • domain assumption ViT final output equals the sum of per-layer outputs, ignoring layer normalization and cross-layer interactions (Eq. 2,3)
    Used to argue that cross-layer comparisons in distance calculation are a direct source of entanglement; explicitly approximated in the paper.
  • domain assumption CKA similarity between source and target features measures feature entanglement or overfitting
    Borrowed from prior work (Zou et al., 2024a); used to validate the entanglement hypothesis in Fig. 4 and Table 1.
  • domain assumption Orthogonal regularization on a low-rank projection of concatenated layer features produces semantically disentangled patterns
    Core design assumption of OSD; supported only by mutual information reduction, not by a formal guarantee.
  • standard math Standard domain adaptation bound epsilon_T <= epsilon_S + d_H + lambda (Eq. 19)
    Used in Section 6 to frame the method's theoretical benefit; the application to AFW and OSD is asserted, not derived.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Self-Disentanglement and Re-Composition for Cross-Domain Few-Shot Segmentation." pith.science (2026). https://pith.science/paper/55LN5SC7

@misc{pith2026250602677,
  author       = {Pith},
  title        = {Pith review of: Self-Disentanglement and Re-Composition for Cross-Domain Few-Shot Segmentation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/55LN5SC7}},
  note         = {Machine review of arXiv:2506.02677}
}
read the original abstract

Cross-Domain Few-Shot Segmentation (CD-FSS) aims to transfer knowledge from a source-domain dataset to unseen target-domain datasets with limited annotations. Current methods typically compare the distance between training and testing samples for mask prediction. However, we find an entanglement problem exists in this widely adopted method, which tends to bind sourcedomain patterns together and make each of them hard to transfer. In this paper, we aim to address this problem for the CD-FSS task. We first find a natural decomposition of the ViT structure, based on which we delve into the entanglement problem for an interpretation. We find the decomposed ViT components are crossly compared between images in distance calculation, where the rational comparisons are entangled with those meaningless ones by their equal importance, leading to the entanglement problem. Based on this interpretation, we further propose to address the entanglement problem by learning to weigh for all comparisons of ViT components, which learn disentangled features and re-compose them for the CD-FSS task, benefiting both the generalization and finetuning. Experiments show that our model outperforms the state-of-the-art CD-FSS method by 1.92% and 1.88% in average accuracy under 1-shot and 5-shot settings, respectively.

Figures

Figures reproduced from arXiv: 2506.02677 by the authors.

Figure 1
Figure 1. (a) A problem of feature entanglement exists [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. The residual connection and consistent spatial [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 4
Figure 4. Domain similarities between source- and target [PITH_FULL_IMAGE:figures/full_fig_p003_4.png] view at source ↗
Figures from the paper (7 more)
Figure 5
Figure 5. Figure 5: Overview of our method. We extract L support and query features from various blocks. These features are concatenated along the channel dimension and fed into OSD to impose orthogonal constraints for weight allocation and semantic decoupling. Outputs of OSD are then fed…
Figure 6
Figure 6. Figure 6: Qualitative results of our model for 1-shot setting. [PITH_FULL_IMAGE:figures/full_fig_p006_6.png]
Figure 8
Figure 8. Figure 8: The heatmaps of some examples of cross￾comparison maps and the results after re-composition [PITH_FULL_IMAGE:figures/full_fig_p008_8.png]
Figure 9
Figure 9. Figure 9: Visualization of AFW on four target datasets, [PITH_FULL_IMAGE:figures/full_fig_p008_9.png]
Figure 10
Figure 10. Figure 10: Examples of images and their corresponding [PITH_FULL_IMAGE:figures/full_fig_p013_10.png]
Figure 11
Figure 11. Figure 11: Visualization of features extracted from different layers of ViT demonstrates the feasibility of disentangling the [PITH_FULL_IMAGE:figures/full_fig_p016_11.png]
Figure 12
Figure 12. Figure 12: Visualization of the heatmaps showing some examples of cross comparison maps and the results after re [PITH_FULL_IMAGE:figures/full_fig_p016_12.png]

Discussion (0). Sign in to comment.

Forward citations

Cited by 2 Pith papers

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

  1. Cross-Domain Few-Shot Segmentation via Multi-view Progressive Adaptation

    cs.CV 2026-02 conditional novelty 6.0 of 10

    A progressive multi-view augmentation and dual-chain prediction method improves cross-domain few-shot segmentation, reporting +7.0% mIoU over state-of-the-art while also working without source-domain training.

  2. The First EgoCross Challenge at EgoVis 2026: Cross-Domain Egocentric Video Question Answering

    cs.CV 2026-08 accept novelty 5.0 of 10

    At CVPR 2026, the EgoCross Challenge evaluated cross-domain egocentric video QA across four specialist domains, with the best system reaching 66.98% accuracy.

Reference graph

Works this paper leans on

53 extracted references · 36 canonical work pages · cited by 2 Pith papers

  1. [1]

    I., Piantanida, P., Ben Ayed, I., and Dolz, J

    Boudiaf, M., Kervadec, H., Masud, Z. I., Piantanida, P., Ben Ayed, I., and Dolz, J. Few-shot segmentation without meta-learning: A good transductive inference is all you need? In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 13979--13988, 2021

  2. [2]

    P., Singh, R

    Candemir, S., Jaeger, S., Palaniappan, K., Musco, J. P., Singh, R. K., Xue, Z., Karargyris, A., Antani, S., Thoma, G., and McDonald, C. J. Lung segmentation in chest radiographs using anatomical atlases with nonrigid registration. IEEE transactions on medical imaging, 33 0 (2): 0 577--590, 2013

  3. [3]

    Mmfuser: Multimodal multi-layer feature fuser for fine-grained vision-language understanding

    Cao, Y., Liu, Y., Chen, Z., Shi, G., Wang, W., Zhao, D., and Lu, T. Mmfuser: Multimodal multi-layer feature fuser for fine-grained vision-language understanding. arXiv preprint arXiv:2410.11829, 2024

  4. [4]

    F., and Huang, J.-B

    Chen, W.-Y., Liu, Y.-C., Kira, Z., Wang, Y.-C. F., and Huang, J.-B. A closer look at few-shot classification. In International Conference on Learning Representations, 2019

  5. [5]

    Infogan: Interpretable representation learning by information maximizing generative adversarial nets

    Chen, X., Duan, Y., Houthooft, R., Schulman, J., Sutskever, I., and Abbeel, P. Infogan: Interpretable representation learning by information maximizing generative adversarial nets. Advances in neural information processing systems, 29, 2016

  6. [6]

    C., and Wen, B

    Cheng, H., Wang, Y., Li, H., Kot, A. C., and Wen, B. Disentangled feature representation for few-shot image classification. IEEE transactions on neural networks and learning systems, 2023

  7. [7]

    E., Dusza, S., Gutman, D., Helba, B., Kalloo, A., Liopyris, K., Marchetti, M., et al

    Codella, N., Rotemberg, V., Tschandl, P., Celebi, M. E., Dusza, S., Gutman, D., Helba, B., Kalloo, A., Liopyris, K., Marchetti, M., et al. Skin lesion analysis toward melanoma detection 2018: A challenge hosted by the international skin imaging collaboration (isic). arXiv preprint arXiv:1902.03368, 2019

  8. [8]

    Deepglobe 2018: A challenge to parse the earth through satellite images

    Demir, I., Koperski, K., Lindenbaum, D., Pang, G., Huang, J., Basu, S., Hughes, F., Tuia, D., and Raskar, R. Deepglobe 2018: A challenge to parse the earth through satellite images. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops, pp.\ 172--181, 2018

Show all 53 references
  1. [9]

    and Xing, E

    Dong, N. and Xing, E. P. Few-shot semantic segmentation with prototype learning. In BMVC, volume 3, 2018

  2. [10]

    An image is worth 16x16 words: Transformers for image recognition at scale

    Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020

  3. [11]

    K., Winn, J., and Zisserman, A

    Everingham, M., Van Gool, L., Williams, C. K., Winn, J., and Zisserman, A. The pascal visual object classes (voc) challenge. International journal of computer vision, 88: 0 303--338, 2010

  4. [12]

    Self-support few-shot semantic segmentation

    Fan, Q., Pei, W., Tai, Y.-W., and Tang, C.-K. Self-support few-shot semantic segmentation. In European Conference on Computer Vision, pp.\ 701--719. Springer, 2022

  5. [13]

    A., and Steinhardt, J

    Gandelsman, Y., Efros, A. A., and Steinhardt, J. Interpreting clip's image representation via text-based decomposition. In The Twelfth International Conference on Learning Representations

  6. [14]

    Semantic contours from inverse detectors

    Hariharan, B., Arbel \'a ez, P., Bourdev, L., Maji, S., and Malik, J. Semantic contours from inverse detectors. In 2011 international conference on computer vision, pp.\ 991--998. IEEE, 2011

  7. [15]

    Apseg: Auto-prompt network for cross-domain few-shot semantic segmentation

    He, W., Zhang, Y., Zhuo, W., Shen, L., Yang, J., Deng, S., and Sun, L. Apseg: Auto-prompt network for cross-domain few-shot semantic segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 23762--23772, 2024

  8. [16]

    Adapt before comparison: A new perspective on cross-domain few-shot segmentation

    Herzog, J. Adapt before comparison: A new perspective on cross-domain few-shot segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 23605--23615, 2024

  9. [17]

    K., Antani, S., et al

    Jaeger, S., Karargyris, A., Candemir, S., Folio, L., Siegelman, J., Callaghan, F., Xue, Z., Palaniappan, K., Singh, R. K., Antani, S., et al. Automatic tuberculosis screening using chest radiographs. IEEE transactions on medical imaging, 33 0 (2): 0 233--245, 2013

  10. [18]

    C., Lo, W.-Y., et al

    Kirillov, A., Mintun, E., Ravi, N., Mao, H., Rolland, C., Gustafson, L., Xiao, T., Whitehead, S., Berg, A. C., Lo, W.-Y., et al. Segment anything. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pp.\ 4015--4026, 2023

  11. [19]

    Similarity of neural network representations revisited

    Kornblith, S., Norouzi, M., Lee, H., and Hinton, G. Similarity of neural network representations revisited. In International Conference on Machine Learning, pp.\ 3519--3529. PMLR, 2019

  12. [20]

    Cross-domain few-shot semantic segmentation

    Lei, S., Zhang, X., He, J., Chen, F., Du, B., and Lu, C.-T. Cross-domain few-shot semantic segmentation. In European Conference on Computer Vision, pp.\ 73--90. Springer, 2022

  13. [21]

    Adaptive prototype learning and allocation for few-shot segmentation

    Li, G., Jampani, V., Sevilla-Lara, L., Sun, D., Kim, J., and Kim, J. Adaptive prototype learning and allocation for few-shot segmentation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 8334--8343, 2021 a

  14. [22]

    P., Tai, Y.-W., and Tang, C.-K

    Li, X., Wei, T., Chen, Y. P., Tai, Y.-W., and Tang, C.-K. Fss-1000: A 1000-class dataset for few-shot segmentation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 2869--2878, 2020

  15. [23]

    Generalized zero-shot learning via disentangled representation

    Li, X., Xu, Z., Wei, K., and Deng, C. Generalized zero-shot learning via disentangled representation. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 35, pp.\ 1966--1974, 2021 b

  16. [24]

    Feature pyramid networks for object detection

    Lin, T.-Y., Doll \'a r, P., Girshick, R., He, K., Hariharan, B., and Belongie, S. Feature pyramid networks for object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.\ 2117--2125, 2017

  17. [25]

    The devil is in low-level features for cross-domain few-shot segmentation

    Liu, Y., Zou, Y., Li, Y., and Li, R. The devil is in low-level features for cross-domain few-shot segmentation. arXiv preprint arXiv:2503.21150, 2025

  18. [26]

    Swin transformer: Hierarchical vision transformer using shifted windows

    Liu, Z., Lin, Y., Cao, Y., Hu, H., Wei, Y., Zhang, Z., Lin, S., and Guo, B. Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF international conference on computer vision, pp.\ 10012--10022, 2021

  19. [27]

    Object-centric learning with slot attention

    Locatello, F., Weissenborn, D., Unterthiner, T., Mahendran, A., Heigold, G., Uszkoreit, J., Dosovitskiy, A., and Kipf, T. Object-centric learning with slot attention. Advances in neural information processing systems, 33: 0 11525--11538, 2020

  20. [28]

    Fully convolutional networks for semantic segmentation

    Long, J., Shelhamer, E., and Darrell, T. Fully convolutional networks for semantic segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.\ 3431--3440, 2015

  21. [29]

    Hypercorrelation squeeze for few-shot segmentation

    Min, J., Kang, D., and Cho, M. Hypercorrelation squeeze for few-shot segmentation. In Proceedings of the IEEE/CVF international conference on computer vision, pp.\ 6941--6952, 2021

  22. [30]

    C., and Lu, S

    Nie, J., Xing, Y., Zhang, G., Yan, P., Xiao, A., Tan, Y.-P., Kot, A. C., and Lu, S. Cross-domain few-shot segmentation via iterative support-query correspondence mining. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 3380--3390, 2024

  23. [31]

    and Kim, S

    Park, N. and Kim, S. How do vision transformers work? In 10th International Conference on Learning Representations, ICLR 2022, 2022

  24. [32]

    Imagenet large scale visual recognition challenge

    Russakovsky, O., Deng, J., Su, H., Krause, J., Satheesh, S., Ma, S., Huang, Z., Karpathy, A., Khosla, A., Bernstein, M., et al. Imagenet large scale visual recognition challenge. International journal of computer vision, 115: 0 211--252, 2015

  25. [33]

    Bridging the gap to real-world object-centric learning

    Seitzer, M., Horn, M., Zadaianchuk, A., Zietlow, D., Xiao, T., Simon-Gabriel, C.-J., He, T., Zhang, Z., Sch \"o lkopf, B., Brox, T., et al. Bridging the gap to real-world object-centric learning. arXiv preprint arXiv:2209.14860, 2022

  26. [34]

    One-shot learning for semantic segmentation

    Shaban, A., Bansal, S., Liu, Z., Essa, I., and Boots, B. One-shot learning for semantic segmentation. arXiv preprint arXiv:1709.03410, 2017

  27. [35]

    Prototypical networks for few-shot learning

    Snell, J., Swersky, K., and Zemel, R. Prototypical networks for few-shot learning. Advances in neural information processing systems, 30, 2017

  28. [36]

    Domain-rectifying adapter for cross-domain few-shot segmentation

    Su, J., Fan, Q., Pei, W., Lu, G., and Chen, F. Domain-rectifying adapter for cross-domain few-shot segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 24036--24045, 2024

  29. [37]

    Prior guided feature enrichment network for few-shot segmentation

    Tian, Z., Zhao, H., Shu, M., Yang, Z., Li, R., and Jia, J. Prior guided feature enrichment network for few-shot segmentation. IEEE transactions on pattern analysis and machine intelligence, 44 0 (2): 0 1050--1065, 2020

  30. [38]

    Lightweight frequency masker for cross-domain few-shot semantic segmentation

    Tong, J., Zou, Y., Li, Y., and Li, R. Lightweight frequency masker for cross-domain few-shot semantic segmentation. Advances in Neural Information Processing Systems, 37: 0 96728--96749, 2024

  31. [39]

    The ham10000 dataset, a large collection of multi-source dermatoscopic images of common pigmented skin lesions

    Tschandl, P., Rosendahl, C., and Kittler, H. The ham10000 dataset, a large collection of multi-source dermatoscopic images of common pigmented skin lesions. Scientific data, 5 0 (1): 0 1--9, 2018

  32. [40]

    Matching networks for one shot learning

    Vinyals, O., Blundell, C., Lillicrap, T., Wierstra, D., et al. Matching networks for one shot learning. Advances in neural information processing systems, 29, 2016

  33. [41]

    H., Zou, Y., Zhou, D., and Feng, J

    Wang, K., Liew, J. H., Zou, Y., Zhou, D., and Feng, J. Panet: Few-shot image semantic segmentation with prototype alignment. In proceedings of the IEEE/CVF international conference on computer vision, pp.\ 9197--9206, 2019

  34. [42]

    All you need is beyond a good init: Exploring better solution for training extremely deep convolutional neural networks with orthonormality and modulation

    Xie, D., Xiong, J., and Pu, S. All you need is beyond a good init: Exploring better solution for training extremely deep convolutional neural networks with orthonormality and modulation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp.\ 617...

  35. [43]

    Prototype mixture models for few-shot semantic segmentation

    Yang, B., Liu, C., Li, B., Jiao, J., and Ye, Q. Prototype mixture models for few-shot semantic segmentation. In Computer Vision--ECCV 2020: 16th European Conference, Glasgow, UK, August 23--28, 2020, Proceedings, Part VIII 16, pp.\ 763--778. Springer, 2020 a

  36. [44]

    Prototype mixture models for few-shot semantic segmentation

    Yang, B., Liu, C., Li, B., Jiao, J., and Ye, Q. Prototype mixture models for few-shot semantic segmentation. In Computer Vision--ECCV 2020: 16th European Conference, Glasgow, UK, August 23--28, 2020, Proceedings, Part VIII 16, pp.\ 763--778. Springer, 2020 b

  37. [45]

    Deepemd: Few-shot image classification with differentiable earth mover's distance and structured classifiers

    Zhang, C., Cai, Y., Lin, G., and Shen, C. Deepemd: Few-shot image classification with differentiable earth mover's distance and structured classifiers. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 12203--12213, 2020 a

  38. [46]

    Personalize segment anything model with one shot

    Zhang, R., Jiang, Z., Guo, Z., Yan, S., Pan, J., Dong, H., Qiao, Y., Gao, P., and Li, H. Personalize segment anything model with one shot. In The Twelfth International Conference on Learning Representations, 2024

  39. [47]

    Zhang, X., Wei, Y., Yang, Y., and Huang, T. S. Sg-one: Similarity guidance network for one-shot semantic segmentation. IEEE transactions on cybernetics, 50 0 (9): 0 3855--3865, 2020 b

  40. [48]

    Pyramid scene parsing network

    Zhao, H., Shi, J., Qi, X., Wang, X., and Jia, J. Pyramid scene parsing network. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.\ 2881--2890, 2017

  41. [49]

    Multi-modal large language model enhanced pseudo 3d perception framework for visual commonsense reasoning

    Zhu, J., Wang, H., and Shi, M. Multi-modal large language model enhanced pseudo 3d perception framework for visual commonsense reasoning. IEEE Transactions on Circuits and Systems for Video Technology, 2024

  42. [50]

    Margin-based few-shot class-incremental learning with class-level overfitting mitigation

    Zou, Y., Zhang, S., Li, Y., and Li, R. Margin-based few-shot class-incremental learning with class-level overfitting mitigation. Advances in neural information processing systems, 35: 0 27267--27279, 2022

  43. [51]

    Flatten long-range loss landscapes for cross-domain few-shot learning

    Zou, Y., Liu, Y., Hu, Y., Li, Y., and Li, R. Flatten long-range loss landscapes for cross-domain few-shot learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 23575--23584, 2024 a

  44. [52]

    Compositional few-shot class-incremental learning

    Zou, Y., Zhang, S., Zhou, H., Li, Y., and Li, R. Compositional few-shot class-incremental learning. In International Conference on Machine Learning, pp.\ 62964--62977. PMLR, 2024 b

  45. [53]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...

Pith tools

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