ConceptioArchivearXiv CS
arXiv CSopen access

MixTTA: Low-Rank Cross-Channel Mixing for Reliable Test-Time Adaptation

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
machine learning, deep learning, neural networks

MixTTA: Low-Rank Cross-Channel Mixing for Reliable Test-Time Adaptation Mansoo Jung1 , Youngwook Kim2⋆ , and Jungwoo Lee1,3⋆

arXiv:2606.28142v1 [cs.LG] 26 Jun 2026

1

Seoul National University, Seoul, Republic of Korea {tlwh1179, junglee}@snu.ac.kr 2 Kookmin University, Seoul, Republic of Korea [email protected] 3 HodooAI Labs, Seoul, Republic of Korea

Abstract. Test-Time Adaptation (TTA) methods commonly update the affine parameters of normalization layers to adapt deployed models under distribution shifts. However, per-channel affine parameters perform axis-aligned scaling and shifting, making them geometrically incapable of correcting cross-channel structural changes induced by distribution shift. To address this limitation, we propose MixTTA, a lightweight plug-in module that equips normalization layers with a low-rank crosschannel transformation, enabling inter-channel mixing at each layer. To ensure that the low-rank branch captures only cross-channel interactions, we also propose Decoupling Projection that enforces strict separation from the diagonal affine path, along with Spectral Projection that prevents rank-1 collapse under non-stationary test streams. MixTTA can be seamlessly integrated into any existing normalization-based TTA method. Experiments in both standard and wild TTA settings show consistent improvements over strong baselines while mitigating adaptation failure under challenging conditions. The source code is publicly available at https://github.com/delta6189/MixTTA. Keywords: Test-time Adaptation · Correlation-aware Adaptation · Lowrank Adaptation

1

Introduction

Deep neural networks have achieved remarkable progress over the past decade, demonstrating exceptional performance across a wide range of tasks in computer vision [4, 8, 17, 18, 20, 22, 36, 37, 39]. However, most models are trained under the unrealistic assumption that the training and test distributions are identical. In real-world scenarios, distribution shifts, arising from environmental changes, sensor noise, or data corruption, can lead to severe performance degradation [9]. Consequently, addressing domain shifts has become a central challenge in modern machine learning, motivating extensive research on adaptation frameworks [2, 6, 25, 34, 35, 38, 40, 45]. Among these, test-time adaptation (TTA) [5, 14, 16, 21, 31, ⋆

Corresponding authors.

2

M. Jung et al.

(a) Correlation Distance

(b) Tent

(c) MixTTA (Ours)

Fig. 1: (a) Correlation distance comparison across three layers of a pre-trained ViT on ImageNet-C Gaussian noise under varying severity levels. (b) and (c) provide overviews of Tent [40] and our proposed MixTTA, respectively, where each colored circle represents a feature dimension. Tent applies only channel-wise affine modulation without mixing across dimensions (colors remain unchanged while intensities vary), whereas MixTTA introduces an additional low-rank cross-channel transform that mixes feature dimensions, leading to changes in both color and intensity.

40, 42, 48] has emerged as a promising direction since it allows a deployed model to adjust itself online without access to source data or labels. One of the foundational methods of TTA is Tent [40], which sharpens predictions by minimizing prediction entropy while updating only the affine parameters of normalization layers. Its popularity stems from the fact that constraining updates to per-channel scale and bias maintains a compact update space, stabilizing adaptation and reducing the risk of overfitting. Subsequent works have typically retained the same set of learnable parameters, incorporating additional strategies such as regularization [29], sample selection [23,30], or region-level confidence estimation [11]. Despite these advances, the structural form of the affine transformation itself has remained largely unexamined. In this paper, we revisit this design choice by examining how distribution shift affects intermediate feature PN representations. Specifically, we measure the correlation distance D = N1 n=1 ∥Σns − Σnt ∥F , where Σns and Σnt are the per-sample covariance matrices of the source and target features after each normalization layer, N is the number of test samples, and ∥ · ∥F denotes the Frobenius norm. As illustrated in Fig. 1a, the correlation distance increases progressively with corruption severity across all layers, revealing that distribution shift does not merely alter per-channel variances but fundamentally changes the inter-channel correlation structure. Since the learnable affine parameters of normalization layers perform axis-aligned per-channel scaling and shifting, they are geometrically incapable of correcting such cross-channel structural changes. Moreover, earlier layers exhibit substantially larger correlation distances than deeper layers, indicating that earlier layers are most affected by correlation disruption. While TCA [46] proposes aligning feature correlations at test time, it operates only on

MixTTA: Low-Rank Cross-Channel Mixing for Reliable TTA

3

the final representation, leaving the pronounced early-layer misalignment unaddressed. Motivated by these observations, we propose MixTTA, a lightweight module that extends normalization layer adaptation to capture cross-channel feature interactions. As illustrated in Figs. 1b and 1c, MixTTA equips the existing perchannel affine transform with a residual cross-channel term parameterized by low-rank matrices, enabling cross-channel mixing at each normalization layer throughout the network. The low-rank design offers a parameter-efficient alternative to full cross-channel mixing, avoiding the instability of unconstrained adaptation while retaining sufficient capacity to capture the dominant correlation shifts. To maintain a clear functional separation between the diagonal affine path and the low-rank branch, we propose Decoupling Projection that constrains the low-rank component to purely off-diagonal corrections. Additionally, we further propose Spectral Projection that suppresses rank-1 collapse induced by the dominant principal component, stabilizing adaptation under biased or non-stationary test streams. The proposed module operates as a plug-in that can be integrated into any existing normalization-based TTA method that updates axis-aligned perchannel parameters. Extensive experiments across standard and wild TTA scenarios demonstrate that MixTTA achieves state-of-the-art adaptation performance. Notably, under wild scenarios involving class imbalance, single-sample adaptation, and mixed domains, MixTTA substantially mitigates the prediction collapse that commonly afflicts existing methods. The contributions of our work are summarized as follows: – We show that distribution shift induces substantial changes in inter-channel feature correlations, and that this disruption is most pronounced in earlier layers. This reveals a key limitation of the per-channel affine paradigm in TTA, as per-channel modulation cannot correct cross-channel structural changes. – We introduce MixTTA, a residual low-rank cross-channel transform that extends normalization layer adaptation to model inter-channel dependencies. We additionally propose Decoupling Projection to enforce strict diagonal/offdiagonal separation and Spectral Projection to prevent rank-1 collapse under non-stationary test streams. – When integrated into diverse TTA baselines, MixTTA yields consistent accuracy gains across standard and wild scenarios with improved robustness and minimal overhead.

2

Related Work

2.1

Test-Time Adaptation via Normalization Layers

Test-time adaptation (TTA) has recently emerged as a promising paradigm for improving model robustness under distribution shifts without requiring access to source data or target labels. Tent [40] is a foundational method that minimizes

4

M. Jung et al.

prediction entropy while updating only the affine parameters of normalization layers. Subsequent works have extended Tent along complementary directions. MEMO [48] augments each test instance and adapts by minimizing the marginal entropy across augmentations. EATA [29] introduces a Fisher regularizer to preserve critical parameters and selects reliable test samples to mitigate catastrophic forgetting. SAR [30] achieves robust online adaptation through batchagnostic normalization and sharpness-aware optimization. DeYO [23] proposes the Pseudo-Label Probability Difference (PLPD) metric, weighting samples by shape consistency when entropy-based confidence is unreliable. COME [49] addresses the overconfidence failure mode of entropy minimization by modeling a Dirichlet prior over predictions. ReCAP [11] further improves robustness in wild scenarios by leveraging region-level confidence as an adaptation proxy. Despite their advances, these approaches all operate within Tent’s per-channel affine update regime. Our method, MixTTA, extends this regime by introducing crosschannel mixing through a lightweight low-rank module while maintaining parameter efficiency. 2.2

Correlation Alignment under Distribution Shift

Correlation alignment aims to match feature distributions between source and target domains by aligning their covariance structures. CORAL [38] pioneered this direction by minimizing the distance between second-order statistics, and subsequent works extended it to higher-order moments (HoMM [3], CMD [47]) and entropy-aware formulations [28]. Recently, TCA [46] adapted correlation alignment to the TTA scenario by transforming test features to match pseudosource correlations estimated from high-confidence samples. However, TCA operates only on the final feature representation, leaving early-layer correlation misalignment unaddressed. In contrast, our approach places cross-channel correction at each normalization layer, enabling hierarchical alignment throughout the network. 2.3

Low-Rank Adaptation

Low-rank adaptation (LoRA) [10] factorizes weight updates into low-rank matrices, enabling efficient fine-tuning with minimal additional parameters. This paradigm has inspired a range of parameter-efficient adaptation methods such as AdapterFusion [32], Prompt Tuning [24], and Visual Prompt Tuning [15]. Recent efforts have incorporated low-rank modules into test-time adaptation scenarios as well. Imam et al . [12] inserted low-rank adapters into transformer attention and optimized them via confidence maximization on unlabeled test data, while Kojima et al . [19] performed low-rank test-time training of visual encoders in vision–language models with an auxiliary self-supervised objective. Additionally, ViDA [26] targets Continual TTA and injects high-rank and lowrank adapters into linear or convolutional layers, with a Homeostatic Knowledge Allotment strategy to mitigate catastrophic forgetting. These methods apply

MixTTA: Low-Rank Cross-Channel Mixing for Reliable TTA

5

low-rank factorization to network weights, whereas MixTTA applies it to interchannel dependencies within normalization layers, targeting correlation structure rather than weight adaptation.

3

Methodology

3.1

Preliminary

Given a source model with parameters \theta and target data x, Tent [40] performs test-time adaptation by minimizing the prediction entropy: \label {eqn:preliminary} \mathcal {L}_{\mathrm {Ent}}(x) \;=\; \mathrm {Ent}_{\theta }(x),

(1)

where \protect \mathrm {Ent}_{\theta }(x) denotes the prediction entropy of the model. To optimize this objective, Tent updates only the affine parameters of normalization layers (e.g., BatchNorm [13], GroupNorm [44], or LayerNorm [1]), while keeping all other weights frozen to avoid overfitting and catastrophic collapse. Formally, Tent modulates the normalized feature x \in \mathbb {R}^{C\times T} as \label {eqn:tent_modulation} y \;=\; \gamma \odot x \;+\; \beta ,

(2)

where ⊙ denotes the Hadamard product, y \in \mathbb {R}^{C\times T} denotes the modulated activation, \gamma ,\beta \in \mathbb {R}^{C} are learnable per-channel scale and bias parameters, C is the number of channels, and T is the number of tokens (e.g., T=HW for CNNs or sequence length for Vision Transformers). 3.2

Low-Rank Cross-Channel Mixing

Per-channel modulation in Tent and its follow-ups [23, 29, 30] is parameterefficient and effective, but it cannot explicitly capture cross-channel dependencies since it only rescales each channel independently. This limitation is directly reflected in Eq. (2), which can be rewritten in the following matrix form: \label {eqn:tent_matrix} y \;=\; \Gamma x + \beta \mathbf ,

(3)

where Γ ∈ RC×C is the diagonal matrix with diagonal entries γ. This highlights that Tent restricts the channel transform to be diagonal and cannot model offdiagonal cross-channel mixing. When distribution shifts alter inter-channel correlations, such limited representational capacity can lead to under-adaptation. A naïve remedy for this limitation is to replace Γ with a full channel-mixing transform W \in \mathbb {R}^{C \times C} applied after normalization. Although this modification allows the model to capture inter-channel correlations, it introduces C^2 parameters per layer, which substantially increases adaptation cost and makes the model vulnerable to overfitting or collapse during adaptation. Moreover, learning a dense W may dilute the influence of the pretrained affine parameters (γ, β) that normalization layers already provide, removing the strong inductive bias of

6

M. Jung et al.

Fig. 2: Overall structure of MixTTA module, which operates within normalization layers of the backbone network. Standardized features are modulated through both the affine and residual low-rank branches. Decoupling Projection ensures strict separation between diagonal and off-diagonal updates, while Spectral Projection filters collapseprone directions during adaptation.

a diagonal initialization. To address this, we introduce a low-rank channel mixing that extends Tent’s diagonal scaling by a compact rank-r perturbation: \label {eqn:MixTTA_modulation} y \;=\; \gamma \odot x \;+\; (AB)^{\top }x \;+\; \beta ,

(4)

where A \in \mathbb {R}^{C \times r} and B \in \mathbb {R}^{r \times C} are learnable low-rank matrices, and r \in \mathbb {N} denotes the subspace dimension with r \ll C. This parameterization decomposes W as W = \Gamma + \Delta , where ∆ = (AB)⊤ . The diagonal term \Gamma retains Tent’s affine updates, while the low-rank perturbation \Delta captures cross-channel dependencies by projecting features onto a compact subspace and reconstructing them to the full channel space. This formulation yields a unified modulation framework that jointly captures per-channel and cross-channel transformations with only a modest overhead in parameters. In practice, we initialize B as a zero matrix so that W = Γ at the start of adaptation, recovering Tent and ensuring stable warm-start behavior. Fig. 2 illustrates the overall structure of the proposed MixTTA module. 3.3

Decoupling Projection

Although ∆ is intended to capture cross-channel mixing, its non-zero diagonal elements can still induce per-channel modulation and thus duplicate the functionality of Γ . To enforce a clear functional decoupling of Γ and ∆, we impose the constraint \label {eq:diagzero_constraint} \mathrm {diag}(\Delta )=\mathbf {0}, (5)

MixTTA: Low-Rank Cross-Channel Mixing for Reliable TTA

7

where diag(·) denotes the diagonal vector of a matrix. Noting that ∆ii = (AB)ii = r r a⊤ i bi , where ai ∈ R is the i-th row of A and bi ∈ R is the i-th column of B, ⊤ Eq. (5) is satisfied if ai bi = 0 for all i. Accordingly, before the forward pass, we project each bi onto the orthogonal complement of ai : \label {eq:bproj} b'_i \leftarrow b_i - \operatorname {sg}\!\left (\frac {a_i^\top b_i}{\|a_i\|_2^2+\epsilon }\, a_i\right ), \qquad \forall i\in \{1,\dots ,C\},

(6)

where sg(·) denotes the stop-gradient operator, ∥ · ∥2 denotes the L2-norm, and ϵ > 0 is a small constant for numerical stability. This projection enforces the diagonal components of ∆ to be zero while preserving the off-diagonal mixing capacity of the low-rank branch. 3.4

Spectral Projection

While MixTTA enables the model to exploit cross-channel interactions during test-time adaptation, its entropy-driven updates remain susceptible to collapsing into degenerate modes. In practice, when the target data stream is biased or non-stationary, the adapted model tends to concentrate its optimization along dominant rank-1 directions. We now analyze why unconstrained MixTTA can collapse into a rank-1 mode. Let the upstream gradient g := ∂LEnt /∂y ∈ RC×T . By standard backpropagation through B ⊤ A⊤ x, the gradients of the low-rank factors take the coupled form \label {eq:coupled_grads} \nabla _A \mathcal {L}_{\mathrm {Ent}} =x \big (Bg\big )^\top , \qquad \nabla _B \mathcal {L}_{\mathrm {Ent}} = (A^\top x)\, g^\top . (7) Therefore, given step size δ, SGD updates of (A, B) follow an alternating dynamics: \label {eq:power_like_update_noF} A \leftarrow A - \delta \, x (Bg)^{\!\top }, \qquad B \leftarrow B - \delta \, (A^{\!\top }x)\, g^{\!\top }. (8) Crucially, the update of A depends on B (through Bg), and the update of B depends on A (through A⊤ x), which creates a positive feedback loop that repeatedly reinforces whichever direction dominates the subspace features. When the subspace statistics become highly anisotropic (i.e., λ1 ≫ λ2 ), this alternation tends to align the columns of A and B to the same dominant axis, suppressing cross-channel diversity and effectively degenerating the low-rank update to rank-1. Empirically, we observe that the top-1 principal component tends to dominate the feature energy and diverge when left unregularized. To mitigate this excessive rank-1 concentration, we introduce the Spectral Projection. Given the subspace feature z := A⊤ x, we compute the dominant eigenvector u1 ∈ Rr of the feature covariance as follows: u_1 := \mathrm {eigvec}_{\max }\!\left (\mathrm {Cov}(z)\right ),

(9)

where Cov(z) denotes the covariance matrix of z and eigvecmax (·) denotes the eigenvector corresponding to the largest eigenvalue, which can be efficiently obtained via the power iteration method [27]. We then construct a projection operator P as follows: \begin {aligned} P &:= I - \eta \frac {u_1 u_1^\top }{\|u_1\|_2^2 + \epsilon } \in \mathbb {R}^{r\times r}, \end {aligned}

(10)

8

M. Jung et al.

where I ∈ Rr×r denotes the identity matrix, η ∈ [0, 1] controls the projection strength. During adaptation, the low-rank gradients are projected as \nabla _A \leftarrow \nabla _A P, \qquad \nabla _B \leftarrow P\nabla _B,

(11)

thereby suppressing the dominant rank-1 direction and stabilizing adaptation. For batched inputs, we compute a per-sample projection matrix and use their average P̄ as the batch-level projection operator. Although P̄ is not an exact projector (i.e., P̄ 2 ̸= P̄ ), we find that it sufficiently suppresses the dominant component and stabilizes adaptation.

4

Experiments

4.1

Benchmarks, Baselines, and Test Scenarios

We evaluated our method on ImageNet-C [9] and ImageNet-Sketch [41], two standard benchmarks for TTA. ImageNet-C is derived from the original ImageNet dataset [33] and designed to assess model robustness under a wide range of common corruptions. It includes 15 corruption types each applied at five severity levels. ImageNet-Sketch, on the other hand, contains sketch-based depictions of the 1000 ImageNet categories, providing substantial appearance-level deviations from natural images. This benchmark focuses on cross-domain generalization rather than simple corruption. For adaptation strategies, we evaluated MixTTA by integrating it into representative TTA baselines, including Tent [40], EATA [29], SAR [30], DeYO [23], and ReCAP [11]. We additionally included LinearTCA and LinearTCA+ [46] as a baseline that addresses cross-channel correlation at test time. Following the convention in [46], where LinearTCA+ denotes LinearTCA applied to the best-performing baseline, we instantiated LinearTCA+ using ReCAP (i.e., ReCAP+LinearTCA) to enable a fair and consistent comparison with a state-of-the-art base method. Finally, we evaluated under the mild and three wild test scenarios proposed by Niu et al. [30]. Wild scenarios include (i) online imbalanced label shift, which models fluctuations in the ground-truth label distribution, (ii) single-sample setting (i.e., batch size 1), which evaluates a model’s ability to adapt without relying on batch statistics, and (iii) mixed shift, which combines multiple types of distribution shifts simultaneously. 4.2

Implementation Details

Unless otherwise noted, we followed the experimental protocol of [23]. All experiments were repeated with three random seeds and we report their mean. We employed ViT [4] with Layer Normalization [1] as backbone models and pretrained weights were obtained from the timm library [43]. The learning rate was set to 0.001 and it was doubled under the batch size 1 scenario to compensate for the reduced reliability of batch-level statistics. We initialized the matrix A using the Xavier scheme [7] and set B to the zero matrix. MixTTA module was

MixTTA: Low-Rank Cross-Channel Mixing for Reliable TTA Mild No Adapt. • LinearTCA • LinearTCA+ • Tent +MixTTA • EATA +MixTTA • SAR +MixTTA • DeYO +MixTTA • ReCAP +MixTTA

9

Noise Blur Weather Digital Avg. Gauss. Shot Impulse Defocus Glass Motion Zoom Snow Frost Fog Brit. Contr. Elastic Pixel JPEG 16.8 12.0 16.5 29.2 23.6 34.0 27.3 15.8 26.6 47.5 55.4 44.3 31.0 45.1 49.1 31.6 17.9 13.0 17.4 29.8 24.2 35.7 28.8 17.0 27.8 49.8 56.0 45.8 33.0 46.0 49.8 32.8 ± 0.0 54.3 54.6 55.4 58.3 58.4 63.2 60.1 66.8 65.7 73.4 78.1 68.3 67.4 73.1 70.2 64.5 ± 0.3 44.6 42.8 45.2 52.1 47.8 55.3 50.3 18.1 21.2 66.4 75.0 64.8 52.7 66.9 64.4 51.2 ± 0.0 47.9 38.7 41.3 51.3 48.3 56.2 51.0 57.2 41.6 68.0 75.3 64.9 53.6 68.2 65.1 55.2 ± 1.4 51.7 51.6 52.4 55.5 55.8 60.2 57.7 63.1 61.0 71.2 75.4 67.1 64.2 70.5 67.9 61.7 ± 0.3 53.9 53.5 55.0 56.3 57.4 62.1 59.7 66.5 64.6 72.4 77.5 67.6 65.1 72.7 68.8 63.5 ± 0.1 46.3 45.0 46.9 52.9 50.0 55.9 51.5 57.0 53.5 66.5 74.8 64.4 55.2 66.8 64.5 56.7 ± 0.2 47.8 46.9 49.1 51.7 49.0 55.7 50.4 58.9 57.4 67.0 74.8 64.1 53.9 67.4 64.2 57.2 ± 0.3 54.7 55.1 55.7 58.4 58.9 63.4 45.8 67.2 65.8 73.3 78.3 68.0 68.0 73.4 70.4 63.8 ± 0.6 56.0 56.6 57.0 58.2 59.3 64.6 62.2 68.6 67.1 74.0 78.5 68.6 68.4 74.2 71.0 65.6 ± 0.1 53.9 54.2 55.0 57.9 58.1 62.6 58.9 66.4 65.1 72.9 78.0 67.9 67.0 72.7 69.9 64.0 ± 0.1 55.4 55.7 56.4 57.6 58.6 63.6 60.9 67.9 66.4 73.4 78.2 68.4 67.1 73.5 70.4 64.9 ± 0.1

Table 1: Comparisons with baselines on ImageNet-C at severity level 5 under the mild scenario regarding accuracy (%). Bold values denote the top-performing results.

Label Shifts No Adapt. • LinearTCA • LinearTCA+ • Tent +MixTTA • EATA +MixTTA • SAR +MixTTA • DeYO +MixTTA • ReCAP +MixTTA

Noise Blur Weather Digital Avg. Gauss. Shot Impulse Defocus Glass Motion Zoom Snow Frost Fog Brit. Contr. Elastic Pixel JPEG 16.7 11.9 16.3 29.3 23.6 33.9 27.3 15.9 26.5 47.2 54.9 44.1 30.9 45.0 48.9 31.5 18.0 13.0 17.4 30.1 24.4 36.0 29.0 17.2 28.0 50.0 55.6 45.9 33.1 46.2 49.8 32.9 ± 0.0 55.1 55.1 56.0 58.3 58.9 63.8 61.9 67.9 66.3 73.3 78.0 67.1 69.0 73.5 70.4 65.0 ± 0.1 46.4 46.8 46.1 54.6 52.2 58.2 53.0 10.2 10.5 69.6 76.2 66.1 58.1 69.4 66.7 52.3 ± 0.3 37.8 34.0 29.4 54.2 53.6 59.6 55.1 45.5 21.0 70.9 76.5 66.7 60.1 71.0 68.1 53.6 ± 2.5 39.3 37.6 38.9 44.1 45.2 44.4 46.8 54.7 54.1 60.0 72.5 25.9 58.0 66.3 64.0 50.1 ± 0.7 47.9 46.2 48.9 50.3 52.6 31.6 54.2 62.9 60.6 58.7 76.0 19.1 62.6 71.0 66.1 53.9 ± 3.3 50.0 49.1 50.6 55.4 54.1 59.1 54.6 56.9 48.6 69.7 76.3 66.2 60.8 69.7 66.9 59.2 ± 0.6 52.0 51.2 52.7 54.6 54.6 59.5 54.8 63.1 58.4 70.4 76.3 66.3 60.1 70.5 67.5 60.8 ± 0.2 54.5 55.1 55.8 58.0 58.9 63.8 61.4 67.9 66.2 73.1 78.0 66.7 69.1 73.6 70.5 64.8 ± 0.1 56.0 56.3 56.9 57.9 59.3 64.7 62.8 68.9 67.2 73.9 78.4 67.4 69.2 74.2 71.1 65.6 ± 0.1 54.4 54.9 55.6 58.1 58.9 63.6 46.9 67.8 66.1 73.1 77.9 66.8 68.7 73.4 70.4 63.8 ± 1.7 55.8 56.1 56.8 57.8 59.3 64.9 63.5 69.0 67.2 73.8 78.4 67.9 69.3 74.3 71.0 65.7 ± 0.1

Table 2: Comparisons with baselines on ImageNet-C at severity level 5 under online imbalanced label shifts with imbalance ratio ∞ regarding accuracy (%).

applied to the second normalization layer in each of the first five transformer encoder blocks. The subspace dimension r and spectral projection strength η were fixed to 4 and 0.9 across all experiments, respectively. Due to the page limit, full ResNet results are provided in the supplementary material; MixTTA consistently improves most baselines on ImageNet-C and ImageNet-Sketch across all four adaptation scenarios.

4.3

Main Results

Comparison on Mild Scenario Table 1 presents the results on the ImageNetC dataset at severity level 5 under the mild scenario. Integrating MixTTA improves the average accuracy across all five baselines, confirming its generality as a plug-in module. In particular, for ReCAP, MixTTA delivers a larger improvement (+0.9%p) in average accuracy than applying LinearTCA (+0.5%p). Furthermore, the gains are especially pronounced on challenging Noise and Weather corruptions. For example, MixTTA improves Tent from 18.1% to 57.2% on Snow and from 21.2% to 41.6% on Frost. These results suggest that MixTTA is particularly beneficial under corruptions where baseline adaptation is most fragile.

10

M. Jung et al.

Batch Size 1 No Adapt. • LinearTCA • LinearTCA+ • Tent +MixTTA • EATA +MixTTA • SAR +MixTTA • DeYO +MixTTA • ReCAP +MixTTA

Noise Blur Weather Digital Avg. Gauss. Shot Impulse Defocus Glass Motion Zoom Snow Frost Fog Brit. Contr. Elastic Pixel JPEG 16.8 12.0 16.5 29.2 23.6 34.0 27.3 15.8 26.6 47.5 55.4 44.3 31.0 45.1 49.1 31.6 17.9 13.0 17.4 29.8 24.2 35.7 28.8 17.0 27.8 49.8 56.0 45.8 33.0 46.0 49.8 32.8 ± 0.0 56.1 56.9 57.5 59.1 60.4 65.6 61.1 69.3 67.5 74.0 78.6 68.0 70.3 74.6 71.5 66.0 ± 0.0 44.7 42.9 45.4 52.5 48.1 55.5 50.6 15.6 18.6 66.6 75.1 64.9 52.9 67.1 64.6 51.0 ± 0.1 41.7 36.7 41.0 51.8 48.8 56.4 51.3 57.9 38.8 68.3 75.4 65.2 54.1 68.4 65.4 54.8 ± 2.5 36.4 30.7 35.4 44.7 40.0 46.4 41.8 38.5 39.1 61.8 65.9 61.6 47.1 59.7 59.7 47.2 ± 0.5 49.7 47.6 51.0 55.2 54.4 60.5 56.3 63.8 62.3 71.5 77.1 66.7 61.8 72.0 68.4 61.2 ± 0.3 45.6 43.2 46.3 53.6 50.5 57.6 53.0 58.7 54.9 68.9 75.4 65.7 58.1 69.0 66.4 57.8 ± 0.3 47.1 44.9 48.4 52.0 49.5 57.0 51.6 59.5 58.7 69.0 76.0 65.4 56.0 67.4 66.1 57.9 ± 0.2 55.2 55.6 56.3 58.9 59.4 64.3 44.2 68.1 66.5 73.8 78.4 68.3 69.0 73.9 70.9 64.2 ± 0.6 56.2 56.8 57.2 58.6 59.9 65.6 63.9 69.3 67.6 74.5 78.8 69.0 69.4 74.7 71.5 66.2 ± 0.1 56.1 56.8 57.2 59.2 60.0 65.5 57.0 69.2 67.3 74.0 78.5 67.8 70.1 74.4 71.3 65.6 ± 0.8 56.6 57.5 57.9 58.6 60.6 66.3 66.5 70.1 68.3 74.5 78.8 67.9 70.8 75.0 71.8 66.8 ± 0.1

Table 3: Comparisons with baselines on ImageNet-C at severity level 5 under batch size 1 regarding accuracy (%).

Comparison on Wild Scenario Table 2 reports results under the online imbalanced label shift setting (imbalance ratio ∞) on ImageNet-C at severity level 5. Across a wide range of corruptions, MixTTA consistently improves existing TTA methods, with ReCAP increasing from 63.8% to 65.7% and DeYO from 64.8% to 65.6% on average. Beyond the average gains, MixTTA is particularly beneficial in difficult regimes where vanilla adaptation becomes fragile. For example, Tent on Snow drops accuracy from 15.9% (No Adapt.) to 10.2%, but combining it with MixTTA recovers and boosts the accuracy to 45.5%. These results indicate that our proposed MixTTA can effectively counteract drift and instability induced by heavily skewed target streams. Table 3 summarizes the ImageNet-C results at severity level 5 in the batch size 1 setting, where adaptation must rely solely on instance-level statistics. MixTTA consistently improves strong baselines, boosting the average accuracy of DeYO to 66.2% and ReCAP to 66.8%. Notably, the gains are particularly evident for methods that degrade under single-sample updates (e.g., EATA improves from 47.2% to 61.2% on average), and MixTTA yields broad improvements across most corruption categories, including several Weather and Digital corruptions. Overall, these results indicate that MixTTA remains effective even under highly constrained adaptation, improving robustness while maintaining stable adaptation dynamics. The results under the mixed-shift setting are summarized in Table 4. MixTTA consistently strengthens adaptation performance across all baselines. Notably, while LinearTCA+ yields only a marginal improvement (+0.2%p) in this setting, MixTTA provides substantially larger gains (+2.8%p for DeYO and +2.3%p for ReCAP), highlighting the benefit of its cross-channel correction under mixed shifts. Taken together, these observations suggest that MixTTA is particularly effective when multiple types of distribution shift co-occur and per-channel adaptation alone is most insufficient. Results on ImageNet-Sketch Table 5 reports accuracy on ImageNet-Sketch under mild and wild settings. MixTTA consistently improves existing TTA baselines, with gains becoming markedly larger in wild regimes. The most pro-

MixTTA: Low-Rank Cross-Channel Mixing for Reliable TTA Mixed Shifts Accuracy (%) No adapt. 31.6 • LinearTCA 32.8 ± 0.1 • LinearTCA+ 60.3 ± 0.2 • Tent 16.2 ± 2.5 + MixTTA 26.9 ± 2.7 • EATA 56.3 ± 0.4 + MixTTA 61.1 ± 0.1 • SAR 57.7 ± 0.0 + MixTTA 58.9 ± 0.1 • DeYO 59.7 ± 0.1 + MixTTA 62.5 ± 0.1 • ReCAP 60.1 ± 0.0 + MixTTA 62.4 ± 0.1

ImageNet -Sketch No Adapt. • LinearTCA • LinearTCA+ • Tent + MixTTA • EATA + MixTTA • SAR + MixTTA • DeYO + MixTTA • ReCAP + MixTTA

Mild 18.2 19.3 ± 0.0 42.2 ± 0.2 8.8 ± 0.4 34.3 ± 0.2 36.9 ± 0.1 41.3 ± 0.3 26.3 ± 2.9 35.6 ± 0.1 43.6 ± 0.3 43.7 ± 0.1 42.1 ± 0.1 42.9 ± 0.0

11

Label Shifts Batch Size 1 18.3 19.6 ± 0.0 44.6 ± 0.4 5.3 ± 1.4 29.3 ± 11.6 33.5 ± 0.0 37.2 ± 0.2 13.6 ± 8.8 39.3 ± 0.1 43.2 ± 1.0 44.5 ± 0.3 44.4 ± 0.4 45.1 ± 0.1

18.2 19.3 ± 0.0 43.8 ± 0.1 6.1 ± 0.8 34.1 ± 0.3 21.5 ± 0.1 36.2 ± 0.5 18.3 ± 6.3 35.5 ± 0.0 43.4 ± 0.8 44.0 ± 0.0 42.9 ± 0.1 45.9 ± 0.1

Table 4: Comparisons with baselines on Table 5: Comparisons with baselines on ImageNet-C at severity level 5 under a ImageNet-Sketch under mild and wild scemixture of 15 types of corruption regard- narios regarding accuracy (%). ing accuracy (%).

Method Tent+MixTTA EATA+MixTTA SAR+MixTTA DeYO+MixTTA ReCAP+MixTTA

1 53.7 62.4 55.0 64.0 63.6

2 54.7 62.5 55.9 65.1 64.2

r 4 55.2 63.5 57.2 65.6 64.9

8 55.0 62.7 56.6 65.4 64.1

16 54.6 62.5 55.9 64.9 63.6

Full rank 0.1 0.1 0.1 0.1 0.1

Table 6: Comparison of average accuracy of MixTTA performance with varying r values and baselines on ImageNet-C severity level 5. Full rank denotes replacing Γ with a full channel mixing transform W ∈ RC×C .

nounced effect is on Tent, where MixTTA recovers severely degraded performance by at least 24 percentage points across all three settings, indicating that it effectively stabilizes fragile entropy-minimization updates. Moreover, ReCAP with MixTTA outperforms LinearTCA+ across all settings, demonstrating that MixTTA provides complementary benefits beyond explicit correlation alignment. These results suggest that the cross-channel correction provided by MixTTA is not limited to corruption-based shifts but extends to style-level domain gaps. 4.4

Analysis

Sensitivity of Subspace Dimension r. Table 6 studies the sensitivity of baselines with MixTTA to the low-rank parameterization rank r on ImageNet-C at severity level 5. We observe that performance improves as r increases from 1 to 4, reaching the best average accuracy at r = 4, indicating that a modest rank is sufficient to capture the dominant cross-channel shift required at test time. However, further increasing the rank to 8 or 16 degrades accuracy, suggesting that overly expressive channel mixing introduces unnecessary degrees of freedom

12

M. Jung et al.

Method DeYO DeYO (Full block) DeYO+MixTTA ReCAP ReCAP (Full block) ReCAP+MixTTA

# Params 27,648 36,864 46,080 27,648 36,864 46,080

GPU Time (50,000) 477 seconds 481 seconds 496 seconds 451 seconds 455 seconds 470 seconds

Acc. (%) 63.8 62.1 65.6 64.0 62.4 64.9

Table 7: Comparison of learnable parameter counts, runtime, and accuracy for DeYO, DeYO+MixTTA, ReCAP, and ReCAP+MixTTA, respectively. We also report baselines extended to update all transformer encoder blocks. The practical runtime is evaluated using a single A5000 GPU.

and leads to less stable adaptation. At the limit, the results demonstrate that replacing the diagonal affine scale matrix Γ in Eq. (3) with a full channel-mixing transform W ∈ RC×C (“Full rank”) causes catastrophic collapse. We attribute this to the substantially larger parameterization, which weakens the inductive bias of affine-style modulation and leads to unstable online optimization and severe overfitting. These results collectively suggest that the low-rank parameterization effectively regularizes the update dynamics, maintaining robustness under severe corruption. Notably, r = 4 yields the best accuracy across all five baselines simultaneously, eliminating the need for per-method hyperparameter tuning. Overhead and Parameter-controlled Analysis. Table 7 reports the learnable parameter count, GPU running time (50,000 samples), and average accuracy on the ImageNet-C dataset at severity level 5 of DeYO and ReCAP with and without MixTTA. MixTTA adds approximately 4% runtime overhead for both DeYO and ReCAP, confirming that the additional computation is negligible in practice. We further disentangle the effect of MixTTA from simply increasing the number of learnable parameters by comparing against the full-block update variants of DeYO and ReCAP. Naively extending adaptation to all transformer encoder blocks increases the parameter count but degrades performance for both methods, suggesting that deeper online updates can be unstable or prone to overfitting. In contrast, integrating MixTTA consistently improves these baselines, indicating that the gains stem from the structured low-rank cross-channel transformation of MixTTA rather than from simply increasing model capacity. Ablation Study of Projection Strategies. To examine the individual efficacy of Decoupling Projection (DP) and Spectral Projection (SP), we track accuracy, feature covariance condition number κ = λmax /λmin , and the norm of the diagonal component ∥ diag(∆)∥2 over adaptation steps on ImageNet-C snow corruption at severity level 5 under imbalanced label shift, across all DP/SP configurations.

MixTTA: Low-Rank Cross-Channel Mixing for Reliable TTA

(a) Accuracy

(b) κ

13

(c) ||diag(∆)||2

Fig. 3: Comparison of (a) top-1 accuracy, (b) the condition number κ of the feature covariance at an intermediate layer, and (c) || diag(∆)||2 for adapted models on ImageNet-C snow (severity 5) under imbalanced label shift, across different projection configurations.

Fig. 3a shows that enabling both DP and SP yields the most stable accuracy trajectory, preventing the performance collapse observed in other configurations. Particularly, when SP is disabled, accuracy begins to drop sharply, and this transition aligns with the rapid growth of the condition number in Fig. 3b, indicating that the failure coincides with a rank-1-dominant covariance regime where the leading eigenvalue overwhelms the spectrum. In contrast, enabling SP keeps κ bounded and thereby stabilizes the adaptation dynamics, explaining its critical role in preventing collapse. Consistent with the design goal of DP, enabling DP effectively suppresses diagonal leakage in the low-rank branch, yielding a markedly smaller ∥ diag(∆)∥2 than DP-off configurations (Fig. 3c). When DP is disabled, ∥ diag(∆)∥2 grows progressively over adaptation steps, indicating increasing diagonal leakage. In the DP-off/SP-on setting, accuracy degradation coincides with a drastic rise in ∥ diag(∆)∥2 . This suggests that diagonal leakage may partially undermine the intended cross-channel mixing effect of the low-rank branch by reintroducing per-channel modulation.

Analysis of Correlation Shifts. To examine how MixTTA modifies crosschannel correlations during adaptation, we compute the correlation changes on ImageNet-C Gaussian noise at severity level 5. In Fig. 4a, we visualize two layer-wise quantities: the MixTTA-induced shift, computed as the correlation distance between Tent and Tent+MixTTA on the same corrupted input, and the domain-induced shift, computed as the correlation distance between source and corrupted features under the source model. Although these two correlation shifts have different origins, both quantities peak at the earliest block and decrease in deeper blocks, indicating that MixTTA applies larger corrections at layers where correlation disruption is most severe. Notably, this layer-wise allocation arises purely from entropy-driven optimization, without any explicit layer-dependent weighting, suggesting that the low-rank branch adaptively responds to crosschannel misalignment across layers.

14

M. Jung et al.

(a) Correlation Distance

(b) Cumulative Energy

Fig. 4: Layer-wise and spectral analysis of feature correlation changes on ImageNet-C Gaussian noise at severity level 5. (a) Layer-wise correlation distances. (b) Cumulative energy of the singular-value spectrum at blocks.0.norm2.

Fig. 4b further examines the spectral structure of the MixTTA-induced correlation shift. Specifically, we plot how rapidly the cumulative spectral energy of the MixTTA-induced correction concentrates as a function of singular-value index. As a control, we estimate batch-induced variation by randomly splitting a target mini-batch into two halves and measuring the correlation difference between the two half-batch means; we report its mean curve together with the q=0.1–0.9 quantile band across random splits. Compared to this batch-noise baseline, the MixTTA-induced correction concentrates energy in markedly fewer singular directions, forming a structured, low-rank adjustment rather than a diffuse perturbation. This is consistent with the intended design of the low-rank module.

5

Conclusion

We identified that distribution shift disrupts inter-channel feature correlations in a way that conventional per-channel affine updates cannot correct, and that this disruption is most severe in earlier network layers. Based on this finding, we proposed MixTTA, a plug-in module that extends normalization layers with a lowrank cross-channel transformation, enabling inter-channel mixing across multiple layers. Together with Decoupling Projection to enforce strict diagonal/offdiagonal separation and Spectral Projection to prevent rank-1 collapse, MixTTA consistently improves existing normalization-based TTA methods across standard and wild scenarios on ImageNet-C and ImageNet-Sketch, while incurring only minimal overhead. One future direction is to develop an adaptive rank selection strategy that adjusts the subspace dimension to the severity and structure of the encountered domain shift. We hope that the perspective of cross-channel correlation modeling opens new directions for more expressive and reliable testtime adaptation in the community.

MixTTA: Low-Rank Cross-Channel Mixing for Reliable TTA

15

Acknowledgements. This work was supported by the Institute of Information &Communications Technology Planning & Evaluation (IITP) under the AI Star Fellowship (Kookmin University) (RS-2025-02219317 (10%)) and the Leading Generative AI Human Resources Development (IITP-2026-RS-202625546026 (10%)) grant funded by the Korea government (MSIT), and the “Advanced GPU Utilization Support Program” funded by the Government of the Republic of Korea (Ministry of Science and ICT), the National Research Foundation of Korea (NRF, RS-2024-00451435 (10%), RS-2024-00413957 (10%)), the Institute of Information & Communications Technology Planning & Evaluation (IITP, RS-2025-02305453 (15%), RS-2025-02273157 (15%), RS-2025-25442149 (15%), RS-2021-II211343 (15%)) grant funded by the Ministry of Science and ICT (MSIT), the Institute of New Media and Communications (INMAC), and the BK21 FOUR program of the Education, the Artificial Intelligence Graduate School Program (Seoul National University), and the Research Program for Future ICT Pioneers, Seoul National University in 2026.

References 1. Ba, J.L., Kiros, J.R., Hinton, G.E.: Layer normalization. arXiv preprint arXiv:1607.06450 (2016) 2. Cha, J., Chun, S., Lee, K., Cho, H.C., Park, S., Lee, Y., Park, S.: Swad: Domain generalization by seeking flat minima. Advances in Neural Information Processing Systems 34, 22405–22418 (2021) 3. Chen, C., Fu, Z., Chen, Z., Jin, S., Cheng, Z., Jin, X., Hua, X.: Homm: Higher-order moment matching for unsupervised domain adaptation. In: The Thirty-Fourth AAAI Conference on Artificial Intelligence, AAAI 2020, The Thirty-Second Innovative Applications of Artificial Intelligence Conference, IAAI 2020, The Tenth AAAI Symposium on Educational Advances in Artificial Intelligence, EAAI 2020, New York, NY, USA, February 7-12, 2020. pp. 3422–3429. AAAI Press (2020). https://doi.org/10.1609/AAAI.V34I04.5745, https://doi.org/10.1609/ aaai.v34i04.5745 4. Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., Uszkoreit, J., Houlsby, N.: An image is worth 16x16 words: Transformers for image recognition at scale. In: 9th International Conference on Learning Representations, ICLR 2021, Virtual Event, Austria, May 3-7, 2021. OpenReview.net (2021), https://openreview. net/forum?id=YicbFdNTTy 5. Fan, X., Jiang, J., Chen, Z., Huang, F., Chen, X., Jiang, Q., Zhang, B., Tang, X., Wang, Z.: Moetta: Test-time adaptation under mixed distribution shifts with moe-layernorm. In: Koenig, S., Jenkins, C., Taylor, M.E. (eds.) Fortieth AAAI Conference on Artificial Intelligence, Thirty-Eighth Conference on Innovative Applications of Artificial Intelligence, Sixteenth Symposium on Educational Advances in Artificial Intelligence, AAAI 2026, Singapore, January 20-27, 2026. pp. 21011– 21019. AAAI Press (2026). https://doi.org/10.1609/AAAI.V40I25.39243, https://doi.org/10.1609/aaai.v40i25.39243 6. Ganin, Y., Lempitsky, V.: Unsupervised domain adaptation by backpropagation. In: International conference on machine learning. pp. 1180–1189. PMLR (2015)

16

M. Jung et al.

7. Glorot, X., Bengio, Y.: Understanding the difficulty of training deep feedforward neural networks. In: Proceedings of the thirteenth international conference on artificial intelligence and statistics. pp. 249–256. JMLR Workshop and Conference Proceedings (2010) 8. He, K., Gkioxari, G., Dollár, P., Girshick, R.: Mask r-cnn. In: Proceedings of the IEEE international conference on computer vision. pp. 2961–2969 (2017) 9. Hendrycks, D., Dietterich, T.: Benchmarking neural network robustness to common corruptions and perturbations. In: International Conference on Learning Representations (2019) 10. Hu, E.J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W.: Lora: Low-rank adaptation of large language models. In: International Conference on Learning Representations (2022) 11. Hu, Z., Hu, Y., Li, X., Tang, S., Duan, L.: Beyond entropy: Region confidence proxy for wild test-time adaptation. In: International Conference on Machine Learning. pp. 24371–24390. PMLR (2025) 12. Imam, R., Gani, H., Huzaifa, M., Nandakumar, K.: Test-time low rank adaptation via confidence maximization for zero-shot generalization of vision-language models. In: 2025 IEEE/CVF Winter Conference on Applications of Computer Vision (WACV). pp. 5449–5459. IEEE (2025) 13. Ioffe, S., Szegedy, C.: Batch normalization: Accelerating deep network training by reducing internal covariate shift. In: International conference on machine learning. pp. 448–456. pmlr (2015) 14. Iwasawa, Y., Matsuo, Y.: Test-time classifier adjustment module for model-agnostic domain generalization. Advances in Neural Information Processing Systems 34, 2427–2440 (2021) 15. Jia, M., Tang, L., Chen, B.C., Cardie, C., Belongie, S., Hariharan, B., Lim, S.N.: Visual prompt tuning. In: European Conference on Computer Vision (ECCV). pp. 709–727 (2022) 16. Jung, M., Jeong, S., Kim, Y., Lee, J.: Edas: Effective data augmentation strategies for test-time adaptation. ICT Express (2025) 17. Kim, Y.: Leveraging single positive class label supervision for weakly supervised semantic segmentation. IEEE Access (2025) 18. Kim, Y., Kim, S., Ro, Y., Lee, J.: Instance-dependent multilabel noise generation for multilabel remote sensing image classification. IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing 17, 17087–17098 (2024) 19. Kojima, Y., Xu, J., Zou, X., Wang, X.: Lora-ttt: Low-rank test-time training for vision-language models. arXiv preprint arXiv:2502.02069 (2025) 20. Kwon, E., Zhou, M., Xu, W., Rosing, T., Kang, S.: Rl-ptq: Rl-based mixed precision quantization for hybrid vision transformers. In: Proceedings of the 61st ACM/IEEE Design Automation Conference. pp. 1–6 (2024) 21. Lee, D., Yoon, J., Hwang, S.J.: Becotta: Input-dependent online blending of experts for continual test-time adaptation. In: Salakhutdinov, R., Kolter, Z., Heller, K.A., Weller, A., Oliver, N., Scarlett, J., Berkenkamp, F. (eds.) Forty-first International Conference on Machine Learning, ICML 2024, Vienna, Austria, July 21-27, 2024. Proceedings of Machine Learning Research, vol. 235, pp. 27072–27093. PMLR / OpenReview.net (2024), https://proceedings.mlr.press/v235/lee24ab.html 22. Lee, H., Jang, C., Lee, D.B., Lee, J.: Dimension agnostic neural processes. In: International Conference on Learning Representations. vol. 2025, pp. 12094–12127 (2025)

MixTTA: Low-Rank Cross-Channel Mixing for Reliable TTA

17

23. Lee, J., Jung, D., Lee, S., Park, J., Shin, J., Hwang, U., Yoon, S.: Entropy is not enough for test-time adaptation: From the perspective of disentangled factors. In: The Twelfth International Conference on Learning Representations (2024), https: //openreview.net/forum?id=9w3iw8wDuE 24. Lester, B., Al-Rfou, R., Constant, N.: The power of scale for parameter-efficient prompt tuning. In: Proceedings of the 2021 conference on empirical methods in natural language processing. pp. 3045–3059 (2021) 25. Liang, J., Hu, D., Feng, J.: Do we really need to access the source data? source hypothesis transfer for unsupervised domain adaptation. In: International conference on machine learning. pp. 6028–6039. PMLR (2020) 26. Liu, J., Yang, S., Jia, P., Zhang, R., Lu, M., Guo, Y., Xue, W., Zhang, S.: Vida: Homeostatic visual domain adapter for continual test time adaptation. In: The Twelfth International Conference on Learning Representations, ICLR 2024, Vienna, Austria, May 7-11, 2024. OpenReview.net (2024), https://openreview. net/forum?id=sJ88Wg5Bp5 27. Miyato, T., Kataoka, T., Koyama, M., Yoshida, Y.: Spectral normalization for generative adversarial networks. In: International Conference on Learning Representations (2018) 28. Morerio, P., Cavazza, J., Murino, V.: Minimal-entropy correlation alignment for unsupervised deep domain adaptation. In: International Conference on Learning Representations (2018) 29. Niu, S., Wu, J., Zhang, Y., Chen, Y., Zheng, S., Zhao, P., Tan, M.: Efficient testtime model adaptation without forgetting. In: International conference on machine learning. pp. 16888–16905. PMLR (2022) 30. Niu, S., Wu, J., Zhang, Y., Wen, Z., Chen, Y., Zhao, P., Tan, M.: Towards stable test-time adaptation in dynamic wild world. In: International Conference on Learning Representations (2023), https://openreview.net/forum?id=g2YraF75Tj 31. Park, M., Won, H., Ro, W.W., Kim, S.: Rethinking entropy in test-time adaptation: The missing piece from energy duality. Advances in Neural Information Processing Systems 38, 47123–47140 (2026) 32. Pfeiffer, J., Kamath, A., Rücklé, A., Cho, K., Gurevych, I.: Adapterfusion: Nondestructive task composition for transfer learning. In: Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics (EACL). pp. 487–503 (2021) 33. 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(3), 211–252 (2015) 34. Saito, K., Watanabe, K., Ushiku, Y., Harada, T.: Maximum classifier discrepancy for unsupervised domain adaptation. In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR). pp. 3723–3732 (2018) 35. Shi, Y., Seely, J., Torr, P.H.S., Narayanaswamy, S., Hannun, A.Y., Usunier, N., Synnaeve, G.: Gradient matching for domain generalization. In: The Tenth International Conference on Learning Representations, ICLR 2022, Virtual Event, April 25-29, 2022. OpenReview.net (2022), https://openreview.net/forum?id= vDwBW49HmO 36. Shin, J., Kim, Y., Hong, S., Lee, J.: Learning dual hierarchical representation for 3d surface reconstruction. In: Proceedings of the Asian Conference on Computer Vision. pp. 4422–4438 (2024) 37. Shin, J., Kim, Y., Lee, J.: A plug-in curriculum scheduler for improved deformable medical image registration. IEEE Access (2025)

18

M. Jung et al.

38. Sun, B., Saenko, K.: Deep coral: Correlation alignment for deep domain adaptation. In: European conference on computer vision. pp. 443–450. Springer (2016) 39. Um, S., Kim, B., Ye, J.C.: Boost-and-skip: A simple guidance-free diffusion for minority generation. In: International Conference on Machine Learning. pp. 60561– 60589. PMLR (2025) 40. Wang, D., Shelhamer, E., Liu, S., Olshausen, B., Darrell, T.: Tent: Fully testtime adaptation by entropy minimization. In: International Conference on Learning Representations (2021), https://openreview.net/forum?id=uXl3bZLkr3c 41. Wang, H., Ge, S., Lipton, Z., Xing, E.P.: Learning robust global representations by penalizing local predictive power. Advances in neural information processing systems 32 (2019) 42. Wang, Q., Fink, O., Van Gool, L., Dai, D.: Continual test-time domain adaptation. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 7201–7211 (2022) 43. Wightman, R.: Pytorch image models. https://github.com/rwightman/pytorchimage-models, accessed 2026-06-23 (2019). https://doi.org/10.5281/zenodo. 4414861 44. Wu, Y., He, K.: Group normalization. In: Proceedings of the European conference on computer vision (ECCV). pp. 3–19 (2018) 45. Yang, S., Van de Weijer, J., Herranz, L., Jui, S., et al.: Exploiting the intrinsic neighborhood structure for source-free domain adaptation. Advances in neural information processing systems 34, 29393–29405 (2021) 46. You, L., Lu, J., Huang, X.: Test-time correlation alignment. In: International Conference on Machine Learning. pp. 72700–72729. PMLR (2025) 47. Zellinger, W., Grubinger, T., Lughofer, E., Natschläger, T., Saminger-Platz, S.: Central moment discrepancy (cmd) for domain-invariant representation learning. In: International Conference on Learning Representations (ICLR) (2017) 48. Zhang, M., Levine, S., Finn, C.: Memo: Test time robustness via adaptation and augmentation. Advances in neural information processing systems 35, 38629–38642 (2022) 49. Zhang, Q., Bian, Y., Kong, X., Zhao, P., Zhang, C.: COME: test-time adaption by conservatively minimizing entropy. In: The Thirteenth International Conference on Learning Representations, ICLR 2025, Singapore, April 24-28, 2025. OpenReview.net (2025), https://openreview.net/forum?id=506BjJ1ziZ

Supplementary Material for MixTTA: Low-Rank Cross-Channel Mixing for Reliable Test-Time Adaptation Mansoo Jung1 , Youngwook Kim2⋆ , and Jungwoo Lee1,3⋆ 1

Seoul National University, Seoul, Republic of Korea {tlwh1179, junglee}@snu.ac.kr 2 Kookmin University, Seoul, Republic of Korea [email protected] 3 HodooAI Labs, Seoul, Republic of Korea

1

Experiments on ResNet Backbone

1.1

Implementation Details for ResNet Experiments

In addition to the main ViT results, we also evaluated MixTTA using a ResNet backbone. We adopted ResNet models with Group Normalization [2], using pretrained weights from the timm library [1]. The learning rate was set to 0.00025; it was doubled in the batch size 1 setting to compensate for the lack of reliable batch statistics, and halved for the affine parameters (γ, β) in the mixed-shift setting. MixTTA modules were inserted into the normalization layers in the stem and the first two residual stages, excluding shortcut connections. Unless otherwise specified, we followed the experimental protocol used in the main paper. 1.2

Results on ImageNet-C

Comparison on Mild Scenario Table 1 summarizes the results on ImageNetC at severity level 5 under the mild scenario. Overall, MixTTA serves as an effective plug-in module for most baseline TTA methods. In particular, it improves the average accuracy of most baselines, yielding gains of +3.6%p for Tent, +0.7%p for EATA, +0.3%p for SAR, and +1.1%p for ReCAP. Although the average accuracy of DeYO decreases, MixTTA still improves DeYO on 13 out of 15 corruption types, with only Fog and JPEG showing performance drops. The gains are most consistent on Noise corruptions, where MixTTA substantially strengthens all baselines. For example, for Tent, MixTTA improves the accuracy from 23.1% to 30.8% on Gaussian, from 28.2% to 34.3% on Shot, and from 24.8% to 31.8% on Impulse. A similar trend is observed for ReCAP, where MixTTA improves all three noise types and further boosts several Weather and Digital corruptions, such as Pixel (57.1% → 58.4%). Notably, MixTTA improves the average accuracy from 46.8% to 47.9%, exceeding the gain obtained by applying LinearTCA to the same base method (i.e., LinearTCA+ , 47.7%). These results ⋆

Corresponding authors.

2

M. Jung et al.

Mild No Adapt. • LinearTCA • LinearTCA+ • Tent +MixTTA • EATA +MixTTA • SAR +MixTTA • DeYO +MixTTA • ReCAP +MixTTA

Noise Blur Weather Digital Avg. Gauss. Shot Impulse Defocus Glass Motion Zoom Snow Frost Fog Brit. Contr. Elastic Pixel JPEG 22.1 23.0 22.0 19.8 11.4 21.5 25.0 40.3 47.0 34.0 68.8 36.2 18.5 29.2 52.6 31.4 23.6 24.5 23.5 20.8 12.6 23.6 26.6 43.1 48.0 38.7 69.5 39.0 21.4 30.2 53.7 33.3±0.0 42.7 44.5 43.8 25.6 26.1 41.3 42.5 52.1 50.5 58.8 73.3 51.4 45.3 58.4 59.4 47.7±0.1 23.1 28.2 24.8 14.9 6.8 21.8 22.6 26.8 33.1 3.5 69.9 42.2 11.5 48.4 54.5 28.8±0.2 30.8 34.3 31.8 16.7 14.4 26.8 30.3 26.4 36.4 4.0 70.9 44.3 11.8 51.3 55.8 32.4±0.5 38.9 40.9 40.0 28.2 26.7 36.7 39.0 50.8 49.0 55.1 71.8 50.0 41.7 55.9 58.2 45.5±0.1 40.4 42.8 41.7 27.4 27.5 39.2 41.4 51.1 47.9 55.5 72.3 49.0 44.8 55.4 57.1 46.2±0.3 32.1 34.1 33.3 18.5 18.6 30.4 30.5 42.5 43.4 40.9 70.3 44.0 15.5 49.0 55.3 37.2±0.7 33.7 36.0 34.9 18.8 20.3 31.5 31.9 41.8 43.6 34.6 70.5 44.4 13.9 50.5 55.5 37.5±1.6 41.0 43.1 42.2 22.8 24.5 38.9 27.8 51.5 49.9 56.3 73.0 50.5 43.1 56.5 58.1 45.3±0.5 42.9 44.9 44.1 23.7 25.2 40.4 36.3 52.4 50.5 20.2 73.2 51.1 46.0 57.8 58.0 44.4±2.2 41.8 43.6 43.0 24.3 25.4 40.3 40.7 51.9 50.2 57.1 73.1 51.0 43.5 57.1 58.4 46.8±0.1 43.4 45.3 44.4 25.2 26.6 41.7 40.4 52.9 51.2 59.8 73.4 51.5 46.8 58.4 58.4 47.9±0.1

Table 1: Comparisons with baselines on ImageNet-C at severity level 5 under the mild scenario regarding accuracy (%). Bold values denote the top-performing results.

Label Shifts No Adapt. • LinearTCA • LinearTCA+ • Tent +MixTTA • EATA +MixTTA • SAR +MixTTA • DeYO +MixTTA • ReCAP +MixTTA

Noise Blur Weather Digital Avg. Gauss. Shot Impulse Defocus Glass Motion Zoom Snow Frost Fog Brit. Contr. Elastic Pixel JPEG 22.1 23.0 22.0 19.8 11.4 21.5 25.0 40.3 47.0 34.0 68.8 36.2 18.5 29.2 52.6 31.4 23.9 24.9 23.8 21.0 12.7 23.7 26.9 43.5 48.5 38.1 69.4 39.4 21.9 30.4 54.0 33.5±0.0 44.1 46.0 44.9 27.1 10.5 43.7 37.9 54.1 52.9 25.8 73.5 54.1 42.8 61.4 60.7 45.3±3.8 13.8 19.7 15.6 13.3 7.6 17.3 18.6 17.3 21.3 2.1 69.9 42.0 6.2 49.3 53.9 24.5±0.6 22.1 38.2 31.0 16.7 14.1 27.2 31.2 13.7 19.4 2.7 72.1 46.6 5.7 53.6 56.6 30.0±1.1 29.2 31.6 30.4 18.0 17.3 28.5 29.2 44.4 44.2 41.6 70.6 44.1 26.8 46.8 55.7 33.1±0.6 35.3 39.2 37.0 20.0 21.6 33.2 35.4 44.4 42.1 52.1 70.8 43.7 37.6 52.0 54.4 41.3±0.2 36.1 38.5 37.7 18.5 15.0 33.6 27.9 25.1 45.0 31.5 71.4 47.0 6.3 52.4 56.5 36.2±1.7 37.9 40.1 38.7 18.5 20.8 34.5 35.4 21.5 45.3 35.3 71.7 47.4 5.8 53.5 56.5 37.5±2.0 42.7 45.0 43.7 21.8 16.3 41.1 14.3 52.6 50.8 20.3 73.2 52.4 42.3 59.6 59.2 42.3±0.1 43.6 45.9 44.8 18.5 8.7 42.9 7.7 53.3 51.0 20.4 73.3 52.9 49.2 60.5 59.1 42.1±3.3 42.9 45.0 43.9 23.9 8.9 42.8 24.0 53.4 52.1 20.3 73.4 53.2 29.8 60.6 59.9 42.3±1.9 43.7 46.2 44.5 24.4 16.8 43.7 18.8 54.2 51.9 20.7 73.4 53.6 39.9 61.7 59.9 43.6±2.8

Table 2: Comparisons with baselines on ImageNet-C at severity level 5 under online imbalanced label shifts with imbalance ratio ∞ regarding accuracy (%).

suggest that MixTTA is particularly effective when the baseline remains vulnerable to corruption-induced cross-channel perturbations. Comparison on Wild Scenario Table 2 shows that MixTTA remains effective under severe online imbalanced label shifts. It improves four of the five baselines in terms of average accuracy, with especially large gains for Tent (+5.5%p) and EATA (+8.2%p). ReCAP+MixTTA achieves the best average accuracy of 43.6%. Although several corruption types still exhibit performance drops, such cases are limited and mostly occur in regimes where the original baseline adaptation is already unstable. This suggests that the observed degradations are more likely attributable to baseline fragility under skewed target streams than to MixTTA itself. Table 3 reports the results on ImageNet-C at severity level 5 under batch size 1, where adaptation must rely solely on instance-level statistics. Even in this highly constrained setting, MixTTA improves the average accuracy of all baselines except DeYO. The gains are particularly notable for Tent and EATA, whose average accuracies increase from 23.9% to 30.2% and from 37.2% to 41.5%, respectively. Moreover, ReCAP+MixTTA achieves the best overall average accuracy of 47.3%, slightly outperforming LinearTCA+ (47.1%). The improvements

Supplementary Material for MixTTA Batch Size 1 No Adapt. • LinearTCA • LinearTCA+ • Tent +MixTTA • EATA +MixTTA • SAR +MixTTA • DeYO +MixTTA • ReCAP +MixTTA

3

Noise Blur Weather Digital Avg. Gauss. Shot Impulse Defocus Glass Motion Zoom Snow Frost Fog Brit. Contr. Elastic Pixel JPEG 22.1 23.0 22.0 19.8 11.4 21.5 25.0 40.3 47.0 34.0 68.8 36.2 18.5 29.2 52.6 31.4 23.6 24.5 23.5 20.8 12.6 23.6 26.6 43.1 48.1 38.7 69.5 39.0 21.5 30.2 53.8 33.3±0.0 44.0 46.2 45.1 28.5 27.8 44.2 42.9 56.6 53.6 22.3 73.6 55.2 43.0 62.4 61.3 47.1±0.4 11.3 20.7 14.6 13.1 3.5 18.6 18.5 15.6 20.1 1.5 69.8 42.1 6.5 49.4 53.8 23.9±0.3 25.4 39.0 35.6 16.0 10.6 28.9 28.7 13.3 19.9 1.4 72.2 46.5 5.9 53.7 56.5 30.2±0.7 29.2 31.6 30.4 18.0 17.3 28.5 29.2 44.4 44.2 41.6 70.6 44.1 26.8 46.8 55.7 37.2±0.1 34.6 37.9 35.9 19.3 20.5 33.7 35.1 48.8 45.4 46.7 72.2 46.6 37.0 52.7 56.4 41.5±0.3 28.7 30.9 29.2 18.4 15.1 28.7 30.5 44.9 44.4 33.7 72.0 44.7 14.6 47.6 56.3 36.0±0.0 29.9 32.6 30.6 18.5 17.0 29.9 31.5 45.4 44.6 33.9 72.2 44.8 13.5 49.3 56.3 36.7±0.3 42.9 45.2 43.9 22.8 24.0 41.8 25.5 53.9 52.1 58.1 73.4 53.4 47.7 60.1 59.8 47.0±0.9 44.4 46.5 45.8 22.9 24.9 43.4 32.1 55.1 52.5 21.0 73.4 54.0 51.2 61.6 59.9 45.4±2.2 43.3 45.7 44.5 26.4 26.8 43.5 40.5 56.0 53.1 21.3 73.5 54.7 40.5 61.7 60.7 46.1±1.5 44.5 46.6 45.4 26.4 28.5 45.9 32.9 57.0 53.7 21.7 73.6 55.3 53.9 63.1 60.9 47.3±2.7

Table 3: Comparisons with baselines on ImageNet-C at severity level 5 under batch size 1 regarding accuracy (%).

Mixed Shifts Accuracy (%) No adapt. 31.4 • LinearTCA 33.9±0.0 • LinearTCA+ 43.0±0.2 • Tent 14.1±0.5 + MixTTA 10.5±4.6 • EATA 38.3±0.2 + MixTTA 40.7±0.1 • SAR 37.5±0.1 + MixTTA 38.3±0.0 • DeYO 37.2±0.5 + MixTTA 40.1±1.6 • ReCAP 42.1±0.3 + MixTTA 43.2±0.2

ImageNet -Sketch No Adapt. • LinearTCA • LinearTCA+ • Tent + MixTTA • EATA + MixTTA • SAR + MixTTA • DeYO + MixTTA • ReCAP + MixTTA

Mild 29.2 30.9±0.0 37.9±0.2 30.8±0.1 31.1±0.2 34.7±0.1 35.6±0.1 30.2±0.1 31.6±0.3 35.5±0.4 36.0±0.7 36.3±0.3 36.8±0.6

Label Shifts Batch Size 1 29.6 31.7±0.0 38.1±0.5 32.3±0.4 32.7±0.8 32.7±0.6 33.3±0.2 31.7±0.4 33.4±0.1 36.9±0.6 37.2±0.4 38.0±0.5 38.3±0.2

29.2 30.9±0.0 38.3±0.3 28.5±5.6 32.0±0.2 29.5±0.0 33.3±0.1 31.1±0.4 33.8±0.5 37.3±0.8 37.7±0.4 38.0±0.3 38.6±0.1

Table 5: Comparisons with baselines on Table 4: Comparisons with baselines on ImageNet-Sketch under mild and wild sceImageNet-C at severity level 5 under a narios regarding accuracy (%). mixture of 15 types of corruption regarding accuracy (%).

are broadly distributed across corruption types, particularly across several Noise, Blur, and Digital corruptions, indicating that MixTTA remains effective even when reliable batch statistics are unavailable. Table 4 summarizes the results under the mixed-shift setting, where multiple corruption types are combined within a single batch. In this setting, MixTTA improves four out of five baselines, yielding gains of +2.4%p for EATA, +0.8%p for SAR, +2.9%p for DeYO, and +1.1%p for ReCAP, with Tent being the only exception. These results suggest that MixTTA remains effective even when the target batch contains heterogeneous corruption patterns, where adaptation must cope with more entangled feature shifts. Compared with LinearTCA+ , whose gain is marginal in this setting, MixTTA appears more robust under mixed shifts, likely because its feature correction is driven by the current test-time feature statistics rather than by a fixed correlation-alignment target.

4

M. Jung et al.

Method Tent+MixTTA EATA+MixTTA SAR+MixTTA DeYO+MixTTA ReCAP+MixTTA

η 0.7 54.1 63.7 56.5 65.1 64.5

0.8 54.3 63.9 57.0 65.5 64.8

0.9 55.2 64.2 57.4 65.6 64.9

1.0 55.3 64.1 57.1 65.6 64.8

Table 6: Comparison of average accuracy of MixTTA performance with varying η values and baselines on ImageNet-C severity level 5.

Results on ImageNet-Sketch Table 5 reports the accuracy on ImageNetSketch under the mild setting and two wild settings. Overall, MixTTA consistently improves all five baseline TTA methods across all three scenarios. While the gains are relatively modest in the mild setting, they become more pronounced under the wild regimes, particularly for methods that are more susceptible to challenging online adaptation. For example, under batch size 1, Tent improves from 28.5% to 32.0%, while EATA and SAR also show clear gains, increasing from 29.5% to 33.3% and from 31.1% to 33.8%, respectively. MixTTA also yields consistent improvements for stronger baselines such as DeYO and ReCAP. Moreover, ReCAP+MixTTA surpasses LinearTCA+ under both wild settings, suggesting that MixTTA provides complementary benefits beyond explicit correlation alignment. These results indicate that the cross-channel correction induced by MixTTA is not limited to corruption-based shifts, but also extends effectively to stylized domain gaps such as ImageNet-Sketch.

2

Sensitivity of η

Table 6 reports the sensitivity of MixTTA to the projection strength η in the spectral projection on ImageNet-C at severity level 5. Overall, the performance remains stable across η ∈ [0.7, 1.0] for all five baselines, indicating that MixTTA is not highly sensitive to the exact choice of this hyperparameter. The best results are generally obtained around η = 0.9, which yields the highest accuracy for EATA, SAR, and ReCAP, and ties for the best result for DeYO. Tent achieves its best performance at η = 1.0, although the gap from η = 0.9 is negligible (55.3% vs. 55.2%). These results suggest that MixTTA is robust over a broad range of η values, while η = 0.9 serves as a strong default choice across different baseline methods.

Acknowledgements. This work was supported by the Institute of Information &Communications Technology Planning & Evaluation (IITP) under the AI Star Fellowship (Kook-

Supplementary Material for MixTTA

5

min University) (RS-2025-02219317 (10%)) and the Leading Generative AI Human Resources Development (IITP-2026-RS-2026-25546026 (10%)) grant funded by the Korea government (MSIT), and the “Advanced GPU Utilization Support Program” funded by the Government of the Republic of Korea (Ministry of Science and ICT), the National Research Foundation of Korea (NRF, RS2024-00451435 (10%), RS-2024-00413957 (10%)), the Institute of Information & Communications Technology Planning & Evaluation (IITP, RS-2025-02305453 (15%), RS-2025-02273157 (15%), RS-2025-25442149 (15%), RS-2021-II211343 (15%)) grant funded by the Ministry of Science and ICT (MSIT), the Institute of New Media and Communications (INMAC), and the BK21 FOUR program of the Education, the Artificial Intelligence Graduate School Program (Seoul National University), and the Research Program for Future ICT Pioneers, Seoul National University in 2026.

References 1. Wightman, R.: Pytorch image models. https://github.com/rwightman/pytorchimage- models, accessed 2026-06-23 (2019). https://doi.org/10.5281/zenodo. 4414861 2. Wu, Y., He, K.: Group normalization. In: Proceedings of the European conference on computer vision (ECCV). pp. 3–19 (2018)

Record · ID 319676 · SHA-256 7709009e3d4e0887
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.