Pith. sign in

REVIEW 4 major objections 4 minor 43 references

Parameter Efficient Fine-Tuning of Segment Anything Model for Biomedical Imaging

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

Pith's one-line read Finetuning SAM for biomedical images is memory-bound by activations, not trainable parameters, so tuning only the late encoder blocks delivers most of full finetuning's benefit at a fraction of the memory cost.

desk verdict Solid empirical PEFT benchmark for SAM with a genuinely new late-PEFT recipe; the activation-bound claim is well measured in one training regime but overgeneralized without testing checkpointing or larger batches. read the letter →

arxiv 2502.00418 v2 pith:YPJKJ7KC submitted 2025-02-01 cs.CV

classification cs.CV
keywords parameter-efficientfine-tuningSegmentAnythingModelbiomedicalimagesegmentationvisiontransformeractivationmemorylatePEFTLoRAQLo
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 for vision transformers like SAM, where you put the trainable parameters matters more for efficiency than which PEFT method you use. It argues that finetuning SAM on biomedical images is activation-bound rather than parameter-bound: most memory goes to storing activations and their gradients, not to the small set of trainable weights. As a result, standard PEFT methods that shrink parameter count, such as LoRA, barely reduce memory, while freezing early encoder blocks and tuning only late ones ('late PEFT') gives meaningful memory savings with a small quality loss. The paper's recipe: freeze the whole encoder on very limited hardware, use late finetuning on a consumer GPU, and use full finetuning when memory is plentiful.

What carries the argument

The central mechanism is the measurement of memory consumption during training, decomposed into parameter gradients versus activation gradients, captured by the ratio of model parameters to sequence length: SAM's ViT-B has a ratio near 20,000, far below GPT-3 or LLaMA, meaning activations dominate. The paper's operational tools are 'late PEFT'—applying LoRA, QLoRA, or full unfreezing only to the last layers of the image encoder (about 50% of the blocks)—and the comparison of nine PEFT methods (LoRA, QLoRA, AdaptFormer, SSF, FacT, bias, layer-norm, attention, and free-encoder tuning) across six microscopy and six medical datasets.

What would settle it

Measure peak training memory for full finetuning versus late finetuning on ViT-L or ViT-H with gradient checkpointing enabled, or with a batch size larger than 1; if late finetuning no longer reduces memory significantly (or full finetuning fits in the same budget), the activation-bound diagnosis and the late-PEFT recommendation would be refuted for those settings.

Watch

Extended reading notes

Core claim

The central claim is that PEFT layer placement is more important than layer type for vision transformers. Concretely, the paper finds that finetuning SAM's ViT encoder is constrained by activation memory, not by the number of trainable parameters, and that introducing trainable parameters or unfreezing weights only in the late layers of the encoder produces nearly the same segmentation quality as full finetuning while cutting memory use. It also reports that PEFT does not beat full finetuning even with a single annotated training image, contrary to suggestions in earlier work, and that QLoRA helps mainly when the domain gap to the base model is small.

Load-bearing premise

The conclusion that finetuning is activation-bound rests on memory measurements from a single setup—ViT-B, batch size 1, the LIVECell dataset, and ordinary backpropagation without gradient checkpointing—and the paper generalizes it to all datasets, larger models, and other training settings.

Editorial extensions

If this is right

  • Late finetuning of only the last ~50% of ViT blocks cuts training memory (e.g., from 52.1 GB to 45.1 GB for ViT-B with late FT) while staying close to full finetuning in segmentation quality.
  • Standard parameter-saving PEFT methods like LoRA, AdaptFormer, SSF, and FacT yield only marginal memory reductions because they do not remove activation gradients.
  • Freezing the entire image encoder is the only PEFT choice viable on CPU-scale hardware, while late PEFT is the recommended compromise for consumer GPUs.
  • PEFT does not provide a quality advantage over full finetuning even in the one-image training regime, implying that gains from fewer trainable parameters do not materialize for SAM.
  • QLoRA performs well only when starting from domain-specific baselines such as muSAM and MedicoSAM and degrades for default SAM, suggesting that quantization hurts more under large domain shifts.

Reading between the lines

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

  • If the activation-bound conclusion generalizes to other ViT-based foundation models, future PEFT designs should target activation memory (freezing early blocks, activation checkpointing, or input downsampling) rather than parameter count.
  • The memory comparison may shift under gradient checkpointing or larger batch sizes, so the late-PEFT recipe should be re-tested in those settings before being adopted as a universal rule.
  • Extending the same recipe to SAM2 or video-based segmentation will require re-measuring the activation-to-parameter ratio, since longer sequences change the balance the paper identifies.
  • A testable prediction is that combining late-layer adapters with early-block freezing will match the memory savings of late PEFT while retaining more tunable capacity at the late layers; the paper's results suggest this but do not explicitly test it.
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

4 major / 4 minor

Summary. The paper presents an empirical study of parameter-efficient fine-tuning (PEFT) methods applied to Segment Anything Model (SAM) and two domain-specific SAM variants (µSAM and MedicoSAM) for biomedical image segmentation. It compares additive and selective PEFT methods against full fine-tuning on six microscopy and six medical imaging datasets, reporting segmentation quality, trainable parameter counts, training times, and peak VRAM usage. The paper introduces 'late PEFT' variants in which only late encoder blocks are adapted, and argues that for vision transformers the placement of PEFT layers matters more for efficiency than the type of layer, because SAM fine-tuning is activation-bound rather than parameter-bound. It also proposes a resource-efficient finetuning recipe using one training image and one validation image, with code released.

Significance. If the activation-bound conclusion holds, this is a practically useful result for vision transformers: freezing early encoder blocks and tuning only late blocks can deliver most of the benefit of full fine-tuning at a fraction of the memory cost. The study is broader than prior work on PEFT for SAM, includes detailed ablations, and releases code, which are clear strengths. However, the central efficiency claim rests on a narrow set of measurements (one dataset, one batch size, no gradient checkpointing), and the quality comparisons lack repeated runs or statistical support. The paper's recommendations are therefore somewhat ahead of the evidence.

major comments (4)
  1. [Appendix A; Tables 5–7] The activation-bound conclusion and the late-PEFT recommendation are inferred from efficiency measurements on a single configuration: LIVECell, ViT-B, batch size 1, and standard backpropagation without gradient checkpointing. Under gradient checkpointing or larger batch sizes, activation memory ceases to be the dominant bottleneck, and the memory advantage of late PEFT (e.g., 9.7 GB vs 13.3 GB for Full FT in Table 8) can shrink or disappear; the paper nevertheless generalizes to ViT-L/ViT-H and to consumer-GPU recommendations. Please add at least one benchmark with gradient checkpointing and one with a larger batch size, or explicitly narrow the claimed scope of the activation-bound conclusion.
  2. [§3.1; Tables 1–4] All quality comparisons are reported from single runs per method and dataset, without standard deviations or significance tests, yet the conclusions rely on small differences among top methods (e.g., Table 1 AIS: Full FT 0.352, Attn Tune 0.352, LoRA 0.343; Table 3 Point: Full FT 0.511 vs Attn Tune 0.522). The statements that LoRA is the best overall and that late PEFT incurs only a small quality loss are not supportable at this precision without repeated seeds or paired significance testing. Please provide seed variability or otherwise temper the ranking claims.
  3. [Table 3; Fig. 7] Table 3 reports averages 'over all 9 datasets' but the caption of Fig. 7 states that the late finetuning experiments were only run on the core 6 medical datasets. If Late FT averages are computed over a different subset than the other methods, the comparison 'Late FT is almost as good as Full FT' is not valid. Please recompute all averages on the common subset or report per-dataset results for the late experiments.
  4. [Appendix B] The QLoRA evaluation at inference uses full-precision pretrained weights plus the learned LoRA adapters instead of the 4-bit quantized weights used during training. The reported QLoRA quality numbers therefore do not correspond to the actual inference-time quantization scheme, and the claim that QLoRA performs well for small domain gaps may not hold for the quantized deployment. Please report both the current approximate evaluation and an evaluation using the true quantized inference, or explicitly characterize the current numbers as an upper bound.
minor comments (4)
  1. [Table 1] Table 1 contains a duplicated 'AdaptFormer' row (0.334/0.291 AIS); one entry likely belongs to a different method or configuration and should be relabeled.
  2. [Appendix C] The authors note that the choice of the two manual training images is crucial; no sensitivity analysis over alternative image choices is provided, so the resource-efficient finetuning results should be interpreted with this caveat.
  3. [Abstract] The abstract states that the placement of PEFT layers is more important for efficiency than the type of layer; this is supported only in the memory dimension and not in segmentation quality, and the wording should be clarified.
  4. [Fig. 4; Section 3.1] The terms 'LoRA-C' and 'LoRA-A' are used in the main text and figures, but their definitions appear only in Appendix A; please define them at first use.

Circularity Check

0 steps flagged · score 2.0 of 10

No significant circularity: the central efficiency finding and late-PEFT recipe are direct measurements against external baselines (default SAM, CellSeg1, published datasets); self-citations to the authors' μSAM/MedicoSAM are supportive but not load-bearing.

full rationale

The derivation chain is empirical at every load-bearing step. Appendix A states the activation-bound hypothesis from a parameter-to-sequence-length heuristic, then tests it by direct measurement on LIVECell (batch size 1): 'unfreezing the first block of the image encoder reduced memory usage by approximately 500MB, while unfreezing the last block saved around 5GB compared to full fine-tuning.' Tabs. 5–7 measure VRAM, per-iteration time, and trainable parameters directly and show that PEFT type (LoRA 51.2 GB, QLoRA 51.1 GB, AdaptFormer 50.8 GB, FacT 51.2 GB, SSF 53.3 GB for ViT-B) barely moves memory while placement (Late FT 45.1 GB, Late LoRA 43.6 GB, Freeze Encoder 35.5 GB) does. The recommendation tiering (Freeze Encoder for CPU, Late FT for consumer GPU, Full FT for server GPU) is a summary of measured memory (Tab. 8: 5.8/9.7/13.3 GB) and measured quality (Figs. 3–4), not a quantity derived from the inputs by construction. Quality comparisons are made against external benchmarks: default SAM, the published CellSeg1 workflow, and 12 published datasets. The paper's reliance on the authors' own μSAM (Archit et al., 2025a) and MedicoSAM (Archit et al., 2025b) as base models, and on μSAM's earlier freeze-encoder result, is self-citation, but it is not load-bearing: the central placement-vs-type and activation-bound findings are established on default SAM (App. A, Tabs. 5–7), and the freeze-encoder quality claim is independently re-measured here (Tabs. 1–4), so no central claim reduces to an unverified self-citation. Stated limitations—efficiency reported 'only for a single dataset' (App. E.2), recommendations 'only tested for finetuning SAM' (App. E.3), and the single GPU configuration without gradient checkpointing flagged by the reviewer—are generality caveats about external validity, not circular reductions. The one adjacent concern is that the 50% late-PEFT setting was selected on the same datasets later used for the headline quality claim (Sec. 3.1 and Figs. 13–14); that is test-set-informed model selection, which could inflate reported quality, but the efficiency argument is structural (measured VRAM) and the quality numbers are measurements rather than predictions forced by construction, so per the review rules it does not constitute circularity. Score 2 reflects the presence of minor, non-load-bearing self-citation; the derivation itself is self-contained against external benchmarks.

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

The central empirical claims rest on hand-chosen hyperparameters, several tuned on single validation datasets, and on assumptions that efficiency and quality measurements transfer across datasets, model sizes, and training settings. No new physical or conceptual entities are introduced.

free parameters (6)
  • LoRA rank = 32
    Chosen from ablation on OrgaSegment (Fig. 15) and used for all main experiments.
  • LoRA alpha = 1
    Recommend alpha=1 as safe default after ablations (Fig. 16, 17).
  • Learning rate = 1e-5
    Selected as best trade-off in LoRA ablation (Fig. 16), used across methods.
  • AdaptFormer projection size = 64
    Chosen to balance parameter count and performance after grid search on OrgaSegment (App. G.2).
  • FacT rank = 16
    Best in LIVECell ablation (App. G.3).
  • Late PEFT layer fraction = 50%
    Selected as best trade-off in Fig. 13/14; applied in main experiments.
assumptions (6)
  • domain assumption SAM fine-tuning memory usage is dominated by activation gradients, not trainable parameter count
    Supported by the ratio argument and the LIVECell experiment in App. A, but assumed to hold across all tested configurations and model sizes.
  • domain assumption Efficiency measurements on LIVECell generalize to other datasets
    App. E.2 states measurements are 'largely independent of the data specifics', but only one dataset is used for the main efficiency tables.
  • domain assumption Segmentation quality trends observed with ViT-B transfer to ViT-L and ViT-H
    The paper states prior work showed ViT-B is sufficient for biomedical quality (Sec. E.2), but does not verify quality for large models in this study.
  • domain assumption Simulated interactive prompting (automatic prompts with 7-8 correction iterations) reflects real interactive use
    The evaluation protocol in Sec. 2.2 is a proxy for human-in-the-loop interaction; no human study is conducted.
  • ad hoc to paper The two manually selected training images are representative of each dataset
    App. C acknowledges image choice is crucial and manual selection is 'critical to avoid negative bias'; this is an ad hoc choice tied to this paper.
  • ad hoc to paper QLoRA inference with full-precision weights plus LoRA (instead of quantized weights) is a valid way to evaluate the finetuned model
    App. B describes a non-standard inference setup to make QLoRA usable; results depend on this choice.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Parameter Efficient Fine-Tuning of Segment Anything Model for Biomedical Imaging." pith.science (2026). https://pith.science/paper/YPJKJ7KC

@misc{pith2026250200418,
  author       = {Pith},
  title        = {Pith review of: Parameter Efficient Fine-Tuning of Segment Anything Model for Biomedical Imaging},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/YPJKJ7KC}},
  note         = {Machine review of arXiv:2502.00418}
}
read the original abstract

Segmentation is an important analysis task for biomedical images, enabling the study of individual organelles, cells or organs. Deep learning has massively improved segmentation methods, but challenges remain in generalization to new conditions, requiring costly data annotation. Vision foundation models, such as Segment Anything Model (SAM), address this issue through improved generalization. However, these models still require finetuning on annotated data, although with less annotations, to achieve optimal results for new conditions. As a downside, they require more computational resources. This makes parameter-efficient finetuning (PEFT) relevant. We contribute the first comprehensive study of PEFT for SAM applied to biomedical images. We find that the placement of PEFT layers is more important for efficiency than the type of layer for vision transformers and we provide a recipe for resource-efficient finetuning. Our code is publicly available at https://github.com/computational-cell-analytics/peft-sam.

Figures

Figures reproduced from arXiv: 2502.00418 by the authors.

Figure 1
Figure 1. Overview of PEFT-SAM. a) We study PEFT of domain-specific SAMs to enable interactive correction and efficient finetuning for improved segmentation. b) Seg￾mentation results for three datasets from µSAM, µSAM finetuned with LoRA and CellSeg1, all trained on two images (Zhou et al., 2024). MitoLab Covid-IF HPA μSAM μSAM-LoRA CellSeg1 Update Model Weights Interactive Correction Finetuning (PEFT) Interactive Correction … view at source ↗
Figure 2
Figure 2. The original architecture of SAM, comprising image encoder, mask decoder and prompt encoder, with an additional segmentation decoder, proposed by µSAM. The image encoder is fine-tuned through additive PEFT, which introduces a few additional parameters, or selective PEFT, which updates only selected parame￾ters. We also introduce late PEFT, which adapts only layers at the end of ViT. transformation, introducing a sca… view at source ↗
Figure 3
Figure 3. PEFT results for microscopy (left) and medical (right) segmentation. Methods are ordered by parameter count, SAM and µSAM / MedicoSAM are used as base models. Circles show the best three results per dataset / task. See also [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (16 more)
Figure 4
Figure 4. Figure 4: Resource-efficient training for microscopy and medical segmentation. We compare several PEFT methods in data limited settings. Our methods use one image for training, one for validation, CellSeg1 uses only a single image. we introduce late PEFT, which improves efficien…
Figure 5
Figure 5. Figure 5: a) Parameter count vs. memory requirements during training for Late LoRA, Late QLoRA and late finetuning (Late FT) for microscopy finetuning on HPA. We report two different LoRA approaches, where adapters are applied only to the attention layer (LoRA-C) or also to the …
Figure 6
Figure 6. Figure 6: Results for iterative prompting on 6 different microscopy datasets, starting with point or box prompts. The accuracy is evaluated after 8 iterations of predicting and correcting prompts. 20 [PITH_FULL_IMAGE:figures/full_fig_p020_6.png]
Figure 7
Figure 7. Figure 7: Results for iterative prompting on 9 different medical imaging datasets, starting with point or box prompts. The accuracy is evaluated after 8 iterations of pre￾dicting and correcting prompts. The late finetuning experiments are only run on the core 6 datasets. 21 [PI…
Figure 8
Figure 8. Figure 8: Qualitative comparison of interactive segmentation for the default µSAM model and the finetuned model with LoRA and Full Finetuning. For all three models ViT-B was used. The yellow outlines show the ground truth, red the model prediction and cyan shows the input prompt…
Figure 9
Figure 9. Figure 9: Qualitative comparison of interactive segmentation for the default MedicoSAM and the finetuned model with LoRA and Full Finetuning. For all three models ViT-B was used. The yellow outlines show the ground truth, red the model prediction and cyan shows the input prompts…
Figure 10
Figure 10. Figure 10: Time until convergence (early stopping) when training µSAM and SAM on the microscopy datasets, including LIVECell, for the PEFT methods. The dashed line in black represents the average train time taken by each PEFT method. 28 [PITH_FULL_IMAGE:figures/full_fig_p028_10.png]
Figure 11
Figure 11. Figure 11: Time until convergence (early stopping) when training MedicoSAM and SAM on the 6 medical datasets for the PEFT methods. The dashed line in black represents the average train time taken by each PEFT method. 29 [PITH_FULL_IMAGE:figures/full_fig_p029_11.png]
Figure 12
Figure 12. Figure 12: Data scaling experiments: SAM models are trained on n training images and evaluated on the same test set. 31 [PITH_FULL_IMAGE:figures/full_fig_p031_12.png]
Figure 13
Figure 13. Figure 13: Quantitative results of µSAM models trained with late finetuning and late LoRA across different settings on 6 different microscopy datasets. 32 [PITH_FULL_IMAGE:figures/full_fig_p032_13.png]
Figure 14
Figure 14. Figure 14: Quantitative results of MedicoSAM models trained with late finetuning and late LoRA across different settings on 9 different medical datasets. 33 [PITH_FULL_IMAGE:figures/full_fig_p033_14.png]
Figure 15
Figure 15. Figure 15: Inference results on OrgaSegment for LoRA with different combinations in α and rank. Results are shown in mean segmentation accuracy and evaluated across different tasks. In this section, we conduct a series of experiments to investigate the influence of two key hyper…
Figure 16
Figure 16. Figure 16: Inference results on OrgaSegment for LoRA with different learning rates and scaling factors α. The colorbars represent mean segmentation accuracy. 38 [PITH_FULL_IMAGE:figures/full_fig_p038_16.png]
Figure 17
Figure 17. Figure 17: Inference results for LoRA with different scaling factors α on four datasets. Circles highlight he best results per dataset and task Next, we investigate the relationship between the scaling factor α and the learning rate [PITH_FULL_IMAGE:figures/full_fig_p039_17.png]
Figure 18
Figure 18. Figure 18: Inference results on OrgaSegment for different projection sizes and scaling factors and dropout values for AdaptFormer. To find the best hyperparameters for AdaptFormer a grid-search was run on 3 pa￾rameters. The scaling factor, which scales the output of the Adapter …
Figure 19
Figure 19. Figure 19: AdaptFormer inference results, trained on OrgaSegment for different scaling factors and projection sizes. The results are averaged over different dropout factor experiments. parameter. However, if reducing the number of parameters is a priority, setting alpha to 1 is …

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

43 extracted references · 24 canonical work pages

  1. [1]

    Segment anything for microscopy.Nature Methods, 22(3):579–591, February 2025a

    Anwai Archit, Luca Freckmann, Sushmita Nair, Nabeel Khalid, Paul Hilt, Vikas Ra- jashekar, Marei Freitag, Carolin Teuber, Genevieve Buckley, Sebastian von Haaren, Sag- nik Gupta, Andreas Dengel, Sheraz Ahmed, and Constantin Pape. Segment anything for microscopy.Nature Methods, 22(3):579–591, February 2025a. ISSN 1548-7105. doi: 10.1038/s41592-024-02580-4....

  2. [3]

    doi: 10.1609/ aaai.v38i10.28978

    ISSN 2159-5399. doi: 10.1609/ aaai.v38i10.28978. URLhttp://doi.org/10.1609/aaai.v38i10.28978. Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal, Ariel Herbert-Voss, Gretchen Krueger, Tom Henighan, Rewon Child, Aditya Ramesh, Daniel Zieg...

  3. [5]

    ISBN 9781713829546

    Curran Associates Inc. ISBN 9781713829546. URLhttps://proceedings.neurips.cc/paper/2020/file/ 81f7acabd411274fcf65ce2070ed568a-Paper.pdf. Juan C. Caicedo, Allen Goodman, Kyle W. Karhohs, Beth A. Cimini, Jeanelle Acker- man, Marzieh Haghighi, CherKeng Heng, Tim Becker, Minh Doan, Claire McQuin, Mohammad Rohban, Shantanu Singh, and Anne E. Carpenter. Nucleu...

  4. [6]

    Yanlin Wu, Zhihong Wang, Xiongfeng Yang, Hong Kang, Along He, and Tao Li

    URLhttp://doi.org/10.1007/978-3-031-72684-2_6. Yanlin Wu, Zhihong Wang, Xiongfeng Yang, Hong Kang, Along He, and Tao Li. Trans-sam: Transfer segment anything model to medical image segmentation with parameter-efficient fine-tuning.Knowledge-Based Systems, 310:112909,

  5. [9]

    org/10.48550/arXiv.1810.04805

    URLhttps://doi. org/10.48550/arXiv.1810.04805. Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition at scale.ICLR,

  6. [10]

    URLhttp://doi.org/10.1038/s41597-024-03634-0

    1038/s41597-024-03634-0. URLhttp://doi.org/10.1038/s41597-024-03634-0. Hanxue Gu, Haoyu Dong, Jichen Yang, and Maciej A. Mazurowski. How to build the best medical image segmentation algorithm using foundation models: a comprehensive empirical study with segment anything model.Machine Learning for Biomedical Imaging, 3(May 2025):88–120, May

  7. [11]

    ISSN 2052-4463. doi:

  8. [14]

    doi: 10.1038/s41597-024-03844-6

    ISSN 2052-4463. doi: 10.1038/s41597-024-03844-6. URL http://doi.org/10.1038/s41597-024-03844-6. Fabian Isensee, Paul F. Jaeger, Simon A. A. Kohl, Jens Petersen, and Klaus H. Maier- Hein. nnu-net: a self-configuring method for deep learning-based biomedical image segmentation.Nature Methods, 18(2):203–211, December

Show all 43 references
  1. [15]

    doi: 10.1038/s41592-020-01008-z

    ISSN 1548-7105. doi: 10.1038/s41592-020-01008-z. URLhttp://doi.org/10.1038/s41592-020-01008-z. Uriah Israel, Markus Marks, Rohit Dilip, Qilin Li, Changhua Yu, Emily Laubscher, Shenyi Li, Morgan Schwartz, Elora Pradhan, Ada Ates, et al. A foundation model for cell 12 PEFT-SAM s...

  2. [16]

    11.17.567630

    URLhttps://doi.org/10.1101/2023. 11.17.567630. Malte Jensen, Andreas Clemmensen, Jacob Gorm Hansen, Julie van Krimpen Mortensen, Emil N. Christensen, Andreas Kjaer, and Rasmus Sejersten Ripa. 3d whole body pre- clinical micro-ct database of subcutaneous tumors in mice with ann...

  3. [17]

    doi: 10.1038/ s41597-024-03814-y

    ISSN 2052-4463. doi: 10.1038/ s41597-024-03814-y. URLhttp://doi.org/10.1038/s41597-024-03814-y. Shibo Jie and Zhi-Hong Deng. Fact: Factor-tuning for lightweight adaptation on vi- sion transformer.Proceedings of the AAAI Conference on Artificial Intelligence, 37 (1):1060–1068, June

  4. [18]

    doi: 10.1609/aaai.v37i1.25187

    ISSN 2159-5399. doi: 10.1609/aaai.v37i1.25187. URL http://doi.org/10.1609/aaai.v37i1.25187. Florian Jug and Bioicons Contributors. Bioicons - free biology icons,

  5. [19]

    doi: 10.1038/s41597-022-01388-1

    ISSN 2052-4463. doi: 10.1038/s41597-022-01388-1. URL http://doi.org/10.1038/s41597-022-01388-1. Juliet W. Lefferts, Suzanne Kroes, Matthew B. Smith, Paul J. Niem¨ oller, Natascha D. A. Nieuwenhuijze, Heleen N. Sonneveld van Kooten, Cornelis K. van der Ent, Jeffrey M. Beekman, ...

  6. [20]

    doi: 10.1038/s42003-024-05966-4

    ISSN 2399-3642. doi: 10.1038/s42003-024-05966-4. URLhttps://doi.org/ 10.1038/s42003-024-05966-4. Dongze Lian, Daquan Zhou, Jiashi Feng, and Xinchao Wang. Scaling & shifting your features: A new baseline for efficient model tuning. InAdvances in Neural Information Processing Sy...

  7. [21]

    Jun Ma, Yuting He, Feifei Li, Lin Han, Chenyu You, and Bo Wang

    URLhttps://papers.neurips.cc/paper_files/ paper/2022/file/00bb4e415ef117f2dee2fc3b778d806d-Paper-Conference.pdf. Jun Ma, Yuting He, Feifei Li, Lin Han, Chenyu You, and Bo Wang. Segment anything in medical images.Nature Communications, 15(1):654,

  8. [22]

    doi: 10.1038/s41592-019-0658-6

    ISSN 1548-7105. doi: 10.1038/s41592-019-0658-6. URLhttps://doi.org/10.1038/s41592-019-0658-6. Marius Pachitariu and Carsen Stringer. Cellpose 2.0: how to train your own model. Nature Methods, 19(12):1634–1641, December

  9. [23]

    doi: 10.1038/ s41592-022-01663-4

    ISSN 1548-7105. doi: 10.1038/ s41592-022-01663-4. URLhttps://doi.org/10.1038/s41592-022-01663-4. Constantin Pape, Roman Remme, Adrian Wolny, Sylvia Olberg, Steffen Wolf, Lorenzo Cerrone, Mirko Cortese, Severina Klaus, Bojana Lucic, Stephanie Ullrich, Maria Anders- ¨Osswein, St...

  10. [24]

    George Pu, Anirudh Jain, Jihan Yin, and Russell Kaplan

    URLhttps://doi.org/10.1002/bies.202000257. George Pu, Anirudh Jain, Jihan Yin, and Russell Kaplan. Empirical analysis of the strengths and weaknesses of peft techniques for llms,

  11. [27]

    doi: 10.1007/978-3-031-20053-3

    ISBN 9783031200533. doi: 10.1007/978-3-031-20053-3

  12. [29]

    URLhttp://doi.org/10.1007/978-3-031-20053-3_29. 14 PEFT-SAM Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, Dan Bikel, Lukas Blecher, Cristian Canton Ferrer, Moya Chen, ...

  13. [30]

    URLhttps://doi.org/10.48550/arXiv.2307. 09288. Hernando M. Vergara, Constantin Pape, Kimberly I. Meechan, Valentyna Zinchenko, Chris- tel Genoud, Adrian A. Wanner, Kevin Nzumbi Mutemi, Benjamin Titze, Rachel M. Templin, Paola Y. Bertucci, Oleg Simakov, Wiebke D¨ urichen, Pedro...

  14. [31]

    doi: 10.1016/j.cell.2021.07.017

    ISSN 0092-8674. doi: 10.1016/j.cell.2021.07.017. URLhttps://doi.org/10.1016/j.cell.2021.07.017. Athul Vijayan, Tejasvinee Atul Mody, Qin Yu, Adrian Wolny, Lorenzo Cerrone, Soeren Strauss, Miltos Tsiantis, Richard S. Smith, Fred A. Hamprecht, Anna Kreshuk, and Kay Schneitz. A d...

  15. [32]

    doi: 10.1242/dev.202800

    ISSN 0950-1991. doi: 10.1242/dev.202800. URLhttps://doi.org/10.1242/dev.202800. Jakob Wasserthal, Hanns-Christian Breit, Manfred T Meyer, Maurice Pradella, Daniel Hinck, Alexander W Sauter, Tobias Heye, Daniel T Boll, Joshy Cyriac, Shan Yang, et al. Totalsegmentator: robust se...

  16. [33]

    Xiaobao Wei, Jiajun Cao, Yizhu Jin, Ming Lu, Guangyu Wang, and Shanghang Zhang.I- MedSAM: Implicit Medical Image Segmentation with Segment Anything, page 90–107

    URLhttps://doi.org/10.1148/ryai.230024. Xiaobao Wei, Jiajun Cao, Yizhu Jin, Ming Lu, Guangyu Wang, and Shanghang Zhang.I- MedSAM: Implicit Medical Image Segmentation with Segment Anything, page 90–107. Springer Nature Switzerland, November

  17. [34]

    1016/j.knosys.2024.112909

    URLhttps://doi.org/10. 1016/j.knosys.2024.112909. Yi Xin, Siqi Luo, Haodi Zhou, Junlong Du, Xiaohong Liu, Yue Fan, Qing Li, and Yuntao Du. Parameter-efficient fine-tuning for pre-trained vision models: A survey,

  18. [35]

    15 Teuber Archit Pape Lingling Xu, Haoran Xie, Si-Zhao Joe Qin, Xiaohui Tao, and Fu Lee Wang

    URL https://doi.org/10.48550/arXiv.2402.02242. 15 Teuber Archit Pape Lingling Xu, Haoran Xie, Si-Zhao Joe Qin, Xiaohui Tao, and Fu Lee Wang. Parameter- efficient fine-tuning methods for pretrained language models: A critical review and as- sessment,

  19. [36]

    Kaidong Zhang and Dong Liu

    URLhttps://doi.org/10.48550/arXiv.2312.12148. Kaidong Zhang and Dong Liu. Customized segment anything model for medical image segmentation,

  20. [37]

    Theodore Zhao, Yu Gu, Jianwei Yang, Naoto Usuyama, Ho Hin Lee, Sid Kiblawi, Tristan Naumann, Jianfeng Gao, Angela Crabtree, Jacob Abel, et al

    URLhttps://doi.org/10.48550/arXiv.2304.13785. Theodore Zhao, Yu Gu, Jianwei Yang, Naoto Usuyama, Ho Hin Lee, Sid Kiblawi, Tristan Naumann, Jianfeng Gao, Angela Crabtree, Jacob Abel, et al. A foundation model for joint segmentation, detection and recognition of biomedical objec...

  21. [38]

    Peilin Zhou, Bo Du, and Yongchao Xu

    URLhttps://doi.org/10.1038/s41592-024-02499-w. Peilin Zhou, Bo Du, and Yongchao Xu. Cellseg1: Robust cell segmentation with one training image,

  22. [39]

    Xueyan Zou, Jianwei Yang, Hao Zhang, Feng Li, Linjie Li, Jianfeng Wang, Lijuan Wang, Jianfeng Gao, and Yong Jae Lee

    URLhttps://doi.org/10.48550/arXiv.2412.01410. Xueyan Zou, Jianwei Yang, Hao Zhang, Feng Li, Linjie Li, Jianfeng Wang, Lijuan Wang, Jianfeng Gao, and Yong Jae Lee. Segment everything everywhere all at once. InPro- ceedings of the 37th International Conference on Neural Informat...

  23. [40]

    URLhttps: //openreview.net/forum?id=UHBrWeFWlL

    Curran Associates Inc. URLhttps: //openreview.net/forum?id=UHBrWeFWlL. Appendix A. Efficiency of PEFT For the optimal use of PEFT methods in vision transformers, it is important to understand the main contributors to the memory footprint during training. Unlike typical LLM tra...

  24. [41]

    LoRA Classic

    suggest that once memory constraints are taken care of, per- formance can be further optimized by introducing additional trainable parameters through more low-rank adapters. Rather than limiting LoRA to the query and value matrices of the attention blocks, which is a common pr...

  25. [42]

    has shown that 17 Teuber Archit Pape the choice of image is crucial in this setting. Once these two images are selected, we use 1 image for training and the other exclusively for validation, and test our trained model on the entire test set, for consistency with other experime...

  26. [43]

    Note that we perform all experiments for segmentation quality with the smallest model, ViT-B, because it was shown e.g

    dataset, a large dataset with annotations for cell segmentation in phase-contrast microscopy. Note that we perform all experiments for segmentation quality with the smallest model, ViT-B, because it was shown e.g. in (Gu et al., 2025; Archit et al., 2025b) that using it does n...

  27. [2000]

    doi: 10.2214/ajr.174.1.1740071

    ISSN 1546-3141. doi: 10.2214/ajr.174.1.1740071. URLhttp://doi.org/10.2214/ajr.174. 1.1740071. Hugo Touvron, Matthieu Cord, Alaaeldin El-Nouby, Jakob Verbeek, and Herv´ e J´ egou. Three Things Everyone Should Know About Vision Transformers, page 497–515. Springer Nature Switzerland,

  28. [2018]

    doi: 10.1007/978-3-030-00934-2

    ISBN 9783030009342. doi: 10.1007/978-3-030-00934-2

  29. [2019]

    doi: 10.1038/s41592-019-0612-7

    ISSN 1548-7105. doi: 10.1038/s41592-019-0612-7. URLhttps: //doi.org/10.1038/s41592-019-0612-7. Cheng Chen, Juzheng Miao, Dufan Wu, Aoxiao Zhong, Zhiling Yan, Sekeun Kim, Jiang Hu, Zhengliang Liu, Lichao Sun, Xiang Li, et al. Ma-sam: Modality-agnostic sam adaptation for 3d medi...

  30. [2020]

    10 PEFT-SAM Han Cai, Chuang Gan, Ligeng Zhu Massachusetts Institute of Technology, and Song Han Massachusetts Institute of Technology

    URLhttps://proceedings.neurips.cc/paper_files/ paper/2020/file/1457c0d6bfcb4967418bfb8ac142f64a-Paper.pdf. 10 PEFT-SAM Han Cai, Chuang Gan, Ligeng Zhu Massachusetts Institute of Technology, and Song Han Massachusetts Institute of Technology. Tinytl: reduce memory, not paramete...

  31. [2021]

    URLhttps://doi.org/10.1038/s41592-021-01249-6

    doi: 10.1038/s41592-021-01249-6. URLhttps://doi.org/10.1038/s41592-021-01249-6. Database Center for Life Science (DBCLS). Togotv - life science video portal,

  32. [2022]

    Ryan Conrad and Kedar Narayan

    URLhttps://proceedings.neurips.cc/paper_files/paper/2022/ file/69e2f49ab0837b71b0e0cb7c555990f8-Paper-Conference.pdf. Ryan Conrad and Kedar Narayan. Instance segmentation of mitochondria in electron mi- croscopy images with a generalist deep learning model trained on a diverse...

  33. [2023]

    doi: 10.1016/j.cels.2022.12.006

    ISSN 2405-4712. doi: 10.1016/j.cels.2022.12.006. URL https://doi.org/10.1016/j.cels.2022.12.006. Tim Dettmers, Artidoro Pagnoni, Ari Holtzman, and Luke Zettlemoyer. Qlora: Effi- cient finetuning of quantized llms,

  34. [2024]

    Samyadeep Basu, Shell Hu, Daniela Massiceti, and Soheil Feizi

    URLhttps://doi.org/10.48550/arXiv.2404.13506. Samyadeep Basu, Shell Hu, Daniela Massiceti, and Soheil Feizi. Strong baselines for parameter-efficient few-shot fine-tuning.Proceedings of the AAAI Conference on Ar- tificial Intelligence, 38(10):11024–11031, March

  35. [2025]

    doi: 10.59275/j.melba.2025-86a6

    ISSN 2766-905X. doi: 10.59275/j.melba.2025-86a6. URL http://doi.org/10.59275/j.melba.2025-86a6. Ali Hatamizadeh, Yucheng Tang, Vishwesh Nath, Dong Yang, Andriy Myronenko, Bennett Landman, Holger R. Roth, and Daguang Xu. Unetr: Transformers for 3d medical image segmentation. In...

Pith tools

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