REVIEW 2 major objections 5 minor 57 references
SAC-MIL is an all-MLP model that encodes patch positions through polar-coordinate rotation and correlates every patch in a whole slide in linear time, reporting the best accuracy, AUC, and F1 on three histopathology benchmarks.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
A spatial-aware MLP-Mixer with polar rotary position embedding and channel-shifting SAC blocks achieves state-of-the-art slide-level classification on CAMELYON-16, TCGA-LUNG, and TCGA-BRCA.
T0 review reviewed 2026-08-05 challenge →
load-bearing objection A clever all-MLP WSI classifier with a real design idea, but the central full-correlation claim is undermined by a math-versus-pseudo-code contradiction that needs to be resolved before the numbers can be trusted. the 2 major comments →
SAC-MIL: Spatial-Aware Correlated Multiple Instance Learning for Histopathology Whole Slide Image Classification
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
On its own terms, the paper claims MLP-based multiple instance learning can match or beat Transformer-based methods on whole-slide classification. First, PROPE normalizes each patch's 2D coordinates per slide, converts them to polar radius and angle, and rotates features by e^{i(ρθ+α)}; per-slide normalization maps training and test sequences of different lengths into the same range, which the paper says removes length-extrapolation failure. Second, the SAC block splits instance features into channel folds, rolls each fold across instances by an increasing step (partial correlation), mixes with a channel-wise MLP, reverses the rolls, and mixes again (full correlation); region size grows expo
What carries the argument
The load-bearing object is the SAC block, an MLP-only correlation primitive: each instance is split along the channel dimension into folds; each fold is cyclically shifted across instances by an amount that grows with the fold index (the partial-correlation step); a channel-wise MLP mixes the shifted folds; the rolls are undone and a second channel-wise MLP mixes again (the full-correlation step). Working alongside it is PROPE, a parameter-free positional embedding that rotates each patch feature by a phase built from its normalized polar coordinates (radius ρ, angle α) rather than its slot in the input sequence. FPS+KNN region partitioning feeds the blocks local neighborhoods, and the regio
Load-bearing premise
Full correlation within a region requires as many channel folds per instance as there are instances in the region; the main text (8 folds) and the appendix pseudo code (64 folds) disagree on this count, and the paper never resolves which one is implemented.
What would settle it
Run the Fig. 5 effective-context test on the released SAC-MIL code with an input of length 65,536 and region sizes 64/4096/262,144, or simply count the channel folds in the shift function. If instances are split into D/k = 8 folds, one block correlates only 8 neighbours and the number of outputs that change when the middle input is zeroed will be far below the sequence length; if the appendix's k = 64 folds are implemented, all outputs change. Either observation settles the specification.
If this is right
- If the full-correlation mechanism holds, whole-slide classifiers reach Transformer-comparable accuracy with pure MLP operations, so deployment no longer depends on custom CUDA kernels or specific GPU architectures.
- Per-slide coordinate normalization makes the positional embedding robust to slides of very different sizes, so a model trained on short sequences can be applied to longer ones without retraining.
- Linear complexity with respect to instance count means a stack of three blocks can process typical slides with over 10,000 patches without subsampling.
- Because the SAC block is length-agnostic, the same architecture transfers to other bag-of-instance pathology tasks the paper names as future work, such as survival prediction.
Where Pith is reading between the lines
- The full-correlation claim is only as strong as the fold count: the main-text equations imply D/k = 8 channel folds per instance (for D=512, k=64), which after three blocks would limit the effective context to roughly 512 instances, whereas the appendix pseudo code splits into k = 64 folds, which supports the claimed context of 64³ = 262,144; the paper never flags the difference.
- The normalized-polar rotation is geometry-agnostic, so the same positional encoding could be dropped into other tile- or point-based medical imaging tasks, such as spatial transcriptomics or gigapixel scanning, wherever coordinates are known.
- The Fig. 5 zeroed-instance test is a cheap, decisive experiment: run it on released code and count the changed outputs to determine which fold count is actually implemented.
- Since SAC blocks are drop-in MLP replacements for self-attention, they invite head-to-head benchmarking against Transformer blocks in multimodal pathology settings with no inference-stack changes.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes SAC-MIL, an all-MLP multiple instance learning model for whole-slide histopathology classification. It partitions patch instances into spatial regions via FPS/KNN, applies a polar rotary position embedding (PROPE) based on normalized coordinates, and stacks SAC blocks that shift channel folds across instances and apply channel-wise MLPs to correlate instances in linear time. The authors report state-of-the-art accuracy/AUC/F1 on CAMELYON-16, TCGA-LUNG, and TCGA-BRCA with ResNet-50 and UNI features, and present ablations of PROPE, correlation methods, and an effective-context-length (ECL) test against Cycle-MLP and Chord-Mixer.
Significance. If the core mechanism works as stated, SAC-MIL is an attractive practical alternative to transformer-based MIL: linear complexity in sequence length, no custom CUDA kernels, and strong performance on standard benchmarks. The paper's all-MLP design and the empirical ECL comparison are useful and clearly presented. However, the central claim of full instance correlation is not currently pinned down, because the formal shift equation in Sec. III-D and the pseudo-code in Appendix I specify different schedules. The contribution cannot be fully assessed until this ambiguity is resolved.
major comments (2)
- [Sec. III-D, Eq. (10), Appendix I] Eq. (10) and Algorithm 2 specify different shift schedules. In Eq. (10), t_j is an absolute channel index; with D=512 and k=64, floor(t_j/k) takes only the eight values 0,...,7. Thus the first SAC block (region size 64, l=0) shifts folds by at most 7, so a 64-instance region cannot be fully correlated; the same shortfall propagates to larger regions. Algorithm 2, by contrast, splits the channel dimension into k=64 chunks and shifts chunk idx by idx*scale (idx=0,...,63), which is the schedule that supports the claimed exponential growth. If Algorithm 2 is the implementation, Eq. (10) should use floor(t_j/(D/k)) (equivalently floor(t_j*k/D)); if Eq. (10) is the implementation, the full-correlation claim and the ECL results in Figs. 4-6 are unsupported. The manuscript never flags this contradiction and no code is provided. Because every downstream claim (linear-time full correlation, SOTA r
- [Sec. IV-B, Figs. 4-6] The ECL test is presented as evidence that SAC-MIL performs full instance correlations, but the protocol zeroes one middle instance and counts changed outputs. This is only a necessary condition for full correlation and is not a proof that all instance pairs interact. More importantly, the interpretation of the test changes completely under the two shift schedules in Eq. (10) vs Algorithm 2. Please provide a formal statement of the correlation property for the exact implemented schedule, or release the code so that the schedule can be verified. The current empirical ECL curves do not resolve the Eq. (10)/Algorithm 2 ambiguity.
minor comments (5)
- [Sec. III-D, Eq. (9)] The right-hand side of Eq. (9) uses \hat{h}_{i,t_j}; as written it defines a value in terms of itself. It should be h_{i,t_j} or otherwise define the shifted tensor explicitly.
- [Sec. IV, Model] The third region size is given as 262114. Since 64^3 = 262144, this is likely a typo and should be corrected.
- [Appendix III, Table VI] The PROPE row in Table VI is identical to Table V (90.4/95.0/90.1) yet is labeled TCGA-BRAC. This is impossible given the other rows in the table and is probably a copy-paste error.
- [Sec. III-C and Conclusion] The text refers to the 'length exploitation issue' and the 'length exploration issue'; these should be 'length extrapolation issue'.
- [Appendix I, Algorithm 2] The pseudo-code is labeled Algorithm 2 but the text says 'pseudo code ... illustrated in 1'. Also, the check 'if x.shape[-2] == 0' appears to be intended as a length-zero check and should be 'if x.shape[-2] == 0' or similar with the correct dimension. Please clarify.
Circularity Check
No derivation reduces to its inputs; only a minor non-load-bearing self-citation and a correctness ambiguity, not circularity.
full rationale
The central claims of SAC-MIL are constructional and empirical. PROPE is a coordinate-based positional encoding with a chosen scaling factor; the SAC block's full-correlation property is supported by direct ECL perturbation experiments (Figs. 4-6) on random inputs, which is a behavioral check rather than an assumed conclusion. The reported SOTA results are benchmark comparisons against published baselines, not quantities derived from the method's own definitions. The only self-citation, Norma [23], is used as a comparison baseline and is not load-bearing for the SAC-MIL derivation. Appendix IV's selection of lambda on the same evaluation datasets is a hyperparameter-selection concern, not an identity or reduction of the derivation. A genuine correctness issue exists: Eq. 10 specifies D/k folds (8 for D=512, k=64), while Algorithm 2 splits into k chunks (64), so the claimed full-correlation property is ambiguous; however, this is an internal inconsistency, not circularity. Overall circularity is minimal.
Axiom & Free-Parameter Ledger
free parameters (4)
- lambda (PROPE radius scaling) =
512
- Region sizes k_l =
64, 4096, 262144
- Number of SAC blocks N =
3
- Number of channel folds =
64 (pseudo code) or 8 (Eq. 10)
axioms (4)
- domain assumption Baseline results are directly comparable across methods despite potential differences in data splits, preprocessing, and hyperparameters.
- ad hoc to paper The ECL test, setting one instance to zero and counting changed outputs, is a valid proxy for full instance correlation.
- domain assumption FPS and KNN produce regions that preserve local tissue context, and arranging region instances contiguously in the sequence is lossless.
- domain assumption Patch coordinates are available as top-left corners for all tissue patches and are used without further preprocessing details.
Cite this review
Pith. "Pith review of SAC-MIL: Spatial-Aware Correlated Multiple Instance Learning for Histopathology Whole Slide Image Classification." pith.science (2026). https://pith.science/paper/GEPTG72P
@misc{pith2026250903973,
author = {Pith},
title = {Pith review of: SAC-MIL: Spatial-Aware Correlated Multiple Instance Learning for Histopathology Whole Slide Image Classification},
year = {2026},
howpublished = {\url{https://pith.science/paper/GEPTG72P}},
note = {Machine review of arXiv:2509.03973}
}
read the original abstract
We propose Spatial-Aware Correlated Multiple Instance Learning (SAC-MIL) for performing WSI classification. SAC-MIL consists of a positional encoding module to encode position information and a SAC block to perform full instance correlations. The positional encoding module utilizes the instance coordinates within the slide to encode the spatial relationships instead of the instance index in the input WSI sequence. The positional encoding module can also handle the length extrapolation issue where the training and testing sequences have different lengths. The SAC block is an MLP-based method that performs full instance correlation in linear time complexity with respect to the sequence length. Due to the simple structure of MLP, it is easy to deploy since it does not require custom CUDA kernels, compared to Transformer-based methods for WSI classification. SAC-MIL has achieved state-of-the-art performance on the CAMELYON-16, TCGA-LUNG, and TCGA-BRAC datasets. The code will be released upon acceptance.
Figures
Reference graph
Works this paper leans on
-
[1]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016
work page 2016
-
[2]
Zhuchen Shao et al. Transmil: Transformer based correlated multiple instance learning for whole slide image classification. In Advances in Neural Information Processing Systems (NeurIPS) , volume 34, pages 2136–2147, 2021
work page 2021
-
[3]
Feature re-embedding: Towards foundation model- level performance in computational pathology
Wenhao Tang et al. Feature re-embedding: Towards foundation model- level performance in computational pathology. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2024
work page 2024
-
[4]
Conditional positional encodings for vision transformers
Xiangxiang Chu et al. Conditional positional encodings for vision transformers. arXiv preprint arXiv:2102.10882 , 2021
Pith/arXiv arXiv 2021
-
[5]
Roformer: Enhanced transformer with rotary position embedding
Jianlin Su et al. Roformer: Enhanced transformer with rotary position embedding. Neurocomputing, 568:127063, 2024
work page 2024
-
[7]
Unified-IO 2: Scaling autoregressive multimodal models with vision language audio and action
Jiasen Lu et al. Unified-IO 2: Scaling autoregressive multimodal models with vision language audio and action. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2024
work page 2024
-
[9]
CycleMLP: A MLP-like Architecture for Dense Prediction
Shoufa Chen et al. Cyclemlp: A mlp-like architecture for dense prediction. arXiv preprint arXiv:2107.10224 , 2021
work page internal anchor Pith review Pith/arXiv arXiv 2021
-
[10]
ChordMixer: A Scalable Neural Attention Model for Sequences with Different Lengths
Ruslan Khalitov et al. Chordmixer: A scalable neural attention model for sequences with different lengths. arXiv preprint arXiv:2206.05852 , 2022
work page internal anchor Pith review Pith/arXiv arXiv 2022
-
[11]
Metaformer is actually what you need for vision
Weihao Yu et al. Metaformer is actually what you need for vision. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2022
work page 2022
-
[12]
Shapley values-enabled progressive pseudo bag augmentation for whole-slide image classification
Renao Yan et al. Shapley values-enabled progressive pseudo bag augmentation for whole-slide image classification. IEEE Transactions on Medical Imaging , 2024
work page 2024
-
[13]
Patch-based convolutional neural network for whole slide tissue image classification
Le Hou et al. Patch-based convolutional neural network for whole slide tissue image classification. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2016
work page 2016
- [14]
- [15]
-
[16]
Hongrun Zhang et al. Dtfd-mil: Double-tier feature distillation multiple instance learning for histopathology whole slide image classification. 10 IEEE TRANSACTIONS ON MEDICAL IMAGING, VOL. XX, NO. XX, XXXX 2020 Methods CAMELYON-16 TCGA-LUNG TCGA-BRAC ACC AUC F1 ACC AUC F1 ACC AUC F1 λ = 1 89 .9 1 .3 91 .0 1 .3 89 .7 0 .3 94 .8 1 .1 97 .4 0 .5 95 .2 1 .0 ...
work page 2020
-
[17]
Richard J. Chen et al. Scaling vision transformers to gigapixel im- ages via hierarchical self-supervised learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2022
work page 2022
-
[18]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929 , 2020
Pith/arXiv arXiv 2010
-
[19]
Self-attention with relative position representations
Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. arXiv preprint arXiv:1803.02155, 2018
Pith/arXiv arXiv 2018
-
[20]
Transformer-xl: Attentive language models beyond a fixed-length context
Zihang Dai et al. Transformer-xl: Attentive language models beyond a fixed-length context. arXiv preprint arXiv:1901.02860 , 2019
Pith/arXiv arXiv 1901
-
[21]
Transformers are rnns: Fast autoregressive transformers with linear attention
Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and Franc ¸ois Fleuret. Transformers are rnns: Fast autoregressive transformers with linear attention. In ICML, pages 5156–5165, 2020
work page 2020
-
[22]
A whole-slide foundation model for digital pathology from real-world data
Hanwen Xu et al. A whole-slide foundation model for digital pathology from real-world data. Nature, pages 1–8, 2024
work page 2024
-
[23]
Norma: A noise robust memory-augmented framework for whole slide image classification
Yu Bai et al. Norma: A noise robust memory-augmented framework for whole slide image classification. In European Conference on Computer Vision (ECCV). Springer, Cham, 2025
work page 2025
-
[24]
A. Vaswani et al. Attention is all you need. In Advances in Neural Information Processing Systems (NeurIPS) , 2017
work page 2017
-
[25]
Efficiently modeling long sequences with structured state spaces
Albert Gu, Karan Goel, and Christopher R ´e. Efficiently modeling long sequences with structured state spaces. arXiv preprint arXiv:2111.00396, 2021
Pith/arXiv arXiv 2021
-
[26]
Sparse factorization of square matrices with application to neural attention modeling
Ruslan Khalitov et al. Sparse factorization of square matrices with application to neural attention modeling. Neural Networks , 152:160– 168, 2022
work page 2022
-
[27]
Mambamil: Enhancing long sequence modeling with sequence reordering in computational pathol- ogy
Shu Yang, Yihui Wang, and Hao Chen. Mambamil: Enhancing long sequence modeling with sequence reordering in computational pathol- ogy. In International Conference on Medical Image Computing and Computer-Assisted Intervention (MICCAI). Springer Nature Switzerland, 2024
work page 2024
-
[28]
MamMIL: Multiple Instance Learning for Whole Slide Images with State Space Models
Zijie Fang et al. Mammil: Multiple instance learning for whole slide images with state space models. arXiv preprint arXiv:2403.05160, 2024
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[29]
Clinical-grade computational pathology using weakly supervised deep learning on whole slide images
Gabriele Campanella et al. Clinical-grade computational pathology using weakly supervised deep learning on whole slide images. Nature Medicine, 25(8):1301–1309, 2019
work page 2019
-
[30]
Mamba: Linear-time sequence modeling with selective state spaces
Albert Gu and Tri Dao. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752 , 2023
Pith/arXiv arXiv 2023
-
[31]
Structured state space models for multiple instance learning in digital pathology
Leo Fillioux et al. Structured state space models for multiple instance learning in digital pathology. In International Conference on Medi- cal Image Computing and Computer-Assisted Intervention (MICCAI) . Springer Nature Switzerland, 2023
work page 2023
-
[32]
The farthest point strategy for progressive image sampling
Yuval Eldar et al. The farthest point strategy for progressive image sampling. IEEE Transactions on Image Processing , 6(9):1305–1315, 1997
work page 1997
-
[33]
Rotary position embedding for vision transformer
Byeongho Heo et al. Rotary position embedding for vision transformer. In European Conference on Computer Vision (ECCV) . Springer, Cham, 2025
work page 2025
-
[34]
Fit: Flexible vision transformer for diffusion model
Zeyu Lu et al. Fit: Flexible vision transformer for diffusion model. arXiv preprint arXiv:2402.12376 , 2024
Pith/arXiv arXiv 2024
-
[35]
Ilya O. Tolstikhin et al. Mlp-mixer: An all-mlp architecture for vision. In Advances in Neural Information Processing Systems (NeurIPS) , volume 34, pages 24261–24272, 2021
work page 2021
-
[36]
Attention-based deep multiple instance learning
Maximilian Ilse, Jakub Tomczak, and Max Welling. Attention-based deep multiple instance learning. In International Conference on Machine Learning (ICML). PMLR, 2018
work page 2018
-
[37]
Nystromformer: A nystrom-based algorithm for approximating self-attention
Yunyang Xiong et al. Nystromformer: A nystrom-based algorithm for approximating self-attention. In Proceedings of the AAAI Conference on Artificial Intelligence , volume 35, number 16, 2021
work page 2021
-
[38]
Rethinking Transformer for Long Contextual Histopathology Whole Slide Image Analysis
Honglin Li et al. Rethinking transformer for long contextual histopathol- ogy whole slide image analysis. arXiv preprint arXiv:2410.14195, 2024
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[39]
Longnet: Scaling transformers to 1,000,000,000 tokens
Jiayu Ding et al. Longnet: Scaling transformers to 1,000,000,000 tokens. arXiv preprint arXiv:2307.02486 , 2023
Pith/arXiv arXiv 2023
-
[40]
A length-extrapolatable transformer
Yutao Sun et al. A length-extrapolatable transformer. arXiv preprint arXiv:2212.10554, 2022
Pith/arXiv arXiv 2022
-
[42]
Hanxiao Liu et al. Pay attention to mlps. In Advances in Neural Information Processing Systems (NeurIPS) , volume 34, pages 9204– 9215, 2021
work page 2021
-
[43]
Deformable convolutional networks
Jifeng Dai et al. Deformable convolutional networks. In Proceedings of the IEEE International Conference on Computer Vision (ICCV) , 2017
work page 2017
-
[44]
Honglin Li et al. Task-specific fine-tuning via variational information bottleneck for weakly-supervised pathology whole slide image classifi- cation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , 2023
work page 2023
-
[45]
Wenhao Tang et al. Multiple instance learning framework with masked hard instance mining for whole slide image classification. InProceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) , 2023
work page 2023
-
[46]
Histopathology whole slide image analysis with heterogeneous graph representation learning
Tsai Hor Chan et al. Histopathology whole slide image analysis with heterogeneous graph representation learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2023. YU BAI et al.: SAC-MIL: SPATIAL-AWARE CORRELATED MULTIPLE INSTANCE LEARNING FOR HISTOPATHOLOGY WHOLE SLIDE IMAGE CLASSIFICATION 11
work page 2023
-
[47]
A graph-transformer for whole slide image classification
Yi Zheng et al. A graph-transformer for whole slide image classification. IEEE Transactions on Medical Imaging , 41(11):3003–3015, 2022
work page 2022
-
[48]
Richard J. Chen et al. Towards a general-purpose foundation model for computational pathology. Nature Medicine, 30(3):850–862, 2024
work page 2024
-
[49]
Babak Ehteshami Bejnordi et al. Diagnostic assessment of deep learning algorithms for detection of lymph node metastases in women with breast cancer. JAMA, 318(22):2199–2210, 2017
work page 2017
-
[50]
Ofir Press, Noah A. Smith, and Mike Lewis. Train short, test long: Attention with linear biases enables input length extrapolation. In ICLR, 2021
work page 2021
-
[51]
Flashattention: Fast and memory-efficient exact attention with io-awareness
Tri Dao et al. Flashattention: Fast and memory-efficient exact attention with io-awareness. In Advances in Neural Information Processing Systems (NeurIPS), volume 35, pages 16344–16359, 2022
work page 2022
-
[52]
Resmlp: Feedforward networks for image classifica- tion with data-efficient training
Hugo Touvron et al. Resmlp: Feedforward networks for image classifica- tion with data-efficient training. IEEE Transactions on Pattern Analysis and Machine Intelligence , 45(4):5314–5321, 2022
work page 2022
-
[53]
Hanxiao Liu, Zihang Dai, David So, and Quoc V . Le. Pay attention to mlps. Advances in Neural Information Processing Systems , 34:9204– 9215, 2021
work page 2021
-
[54]
Vision permutator: A permutable mlp-like architecture for visual recognition
Qibin Hou et al. Vision permutator: A permutable mlp-like architecture for visual recognition. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(1):1328–1334, 2022
work page 2022
-
[55]
An image patch is a wave: Phase-aware vision mlp
Yehui Tang et al. An image patch is a wave: Phase-aware vision mlp. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10935–10944, 2022
work page 2022
-
[56]
Global filter networks for image classification
Yongming Rao et al. Global filter networks for image classification. Advances in Neural Information Processing Systems, 34:980–993, 2021
work page 2021
-
[57]
Extending context window of large language models via positional interpolation
Shouyuan Chen, Sherman Wong, Liangjian Chen, and Yuandong Tian. Extending context window of large language models via positional interpolation. arXiv preprint arXiv:2306.15595 , 2023
Pith/arXiv arXiv 2023
-
[58]
Delving deep into rectifiers: Surpassing human-level performance on imagenet classification
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Delving deep into rectifiers: Surpassing human-level performance on imagenet classification. In Proceedings of the IEEE International Conference on Computer Vision, pages 1026–1034, 2015
work page 2015
-
[59]
N ´andor Hajdu. COVID-19 pandemic and managing supply chain risks: NVIDIA’s graphics card shortage case analysis, 2021
work page 2021
-
[60]
NVIDIA’s bet on artificial intelligence: The impact on healthcare
Daniela da Silva Ferreira Fernandes. NVIDIA’s bet on artificial intelligence: The impact on healthcare. Master’s thesis, Universidade NOV A de Lisboa (Portugal), 2024
work page 2024
This paper was first reviewed by deepseek-v4-flash on August 5, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.