Papers
Topics
Authors
Recent
Search
2000 character limit reached

MixFormer: Mixed Information Architectures

Updated 4 July 2026
  • MixFormer is a multifaceted framework for machine learning that explicitly mixes previously separated features across visual, sequential, and recommendation domains.
  • Key mechanisms include iterative mixed attention, depth-wise convolutions, and hierarchical backbones that enhance feature integration and efficiency.
  • Practical insights reveal that tailored pretraining and architecture-specific adaptations significantly boost performance metrics in tracking, segmentation, gesture recognition, and CTR prediction.

MixFormer is a recurrent model name in modern machine learning rather than a single standardized architecture. It has been used for an end-to-end visual tracker based on iterative mixed attention, a hierarchical vision backbone that mixes features across windows and dimensions, several derivative or name-sharing vision models for segmentation, gesture recognition, and pose estimation, and at least two distinct recommender-system architectures centered on sequence–feature interaction (Cui et al., 2023, Chen et al., 2022, Huang et al., 15 Feb 2026, Wang et al., 25 May 2026). Across these usages, the shared motif is explicit “mixing” of information sources that had often been separated in earlier pipelines; however, the concrete mechanisms, objectives, and mathematical forms differ substantially by domain.

1. Scope, nomenclature, and disambiguation

The term “MixFormer” is overloaded. In computer vision, it may denote the tracking architecture introduced for end-to-end visual object tracking, the 2022 hierarchical backbone “Mixing Features across Windows and Dimensions,” or later derivatives such as U-MixFormer and ConvMixFormer. In recommender systems, it may denote either a latent-query sequential CTR backbone or a unified industrial recommender that co-scales dense and sequence modeling (Cui et al., 2022, Chen et al., 2022, Yeom et al., 2023, Huang et al., 15 Feb 2026).

Usage Core object Representative paper
Tracking MixFormer MAM-based end-to-end tracker (Cui et al., 2023)
Vision-backbone MixFormer Window attention + depth-wise convolution backbone (Chen et al., 2022)
CTR MixFormer Latent-query query×seq backbone (Wang et al., 25 May 2026)
Industrial recommender MixFormer Unified dense–sequence Transformer-style model (Huang et al., 15 Feb 2026)

A common misconception is that MixFormer refers uniquely to the tracker. The literature does not support that reading. Another common misconception is that all MixFormer models are standard self-attention Transformers. This is also incorrect: some variants replace or complement self-attention with depth-wise convolution, HeadMixing, score-level fusion, or convolutional token mixing (Chen et al., 2022, Garg et al., 2024, Huang et al., 15 Feb 2026).

2. MixFormer in end-to-end visual object tracking

In tracking, MixFormer was introduced to simplify the dominant three-stage pipeline of feature extraction, target information integration, and bounding-box estimation by collapsing the first two stages into a single transformer backbone built from the Mixed Attention Module (MAM) (Cui et al., 2022). The motivation was that generic backbones are target-agnostic and that late fusion limits deep target–search communication. MixFormer therefore performs simultaneous feature extraction and target information integration throughout the backbone rather than in a separate integration module.

The central operation is mixed attention. Let template tokens be denoted by tt and search tokens by ss. With projected queries, keys, and values, MixFormer forms

km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),

and computes

Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.

This combines self-attention and cross-attention in one mechanism, so target-aware features are formed progressively across layers rather than only near the output (Cui et al., 2023).

The tracking family has two principal instantiations in the extended presentation. MixCvT is hierarchical and uses W-MAM with depth-wise convolutional projections and progressive downsampling. MixViT is non-hierarchical and uses S-MAM with linear projections and ViT-style patch embedding. The 2023 presentation reports that MixViT-L achieves an AUC score of 73.3% on LaSOT, 86.1% on TrackingNet, EAO of 0.584 on VOT2020, and AO of 75.7% on GOT-10k (Cui et al., 2023). The earlier 2022 paper reports that MixFormer-L reaches AUC 70.1%, Normalized Precision 79.9%, and Precision 76.3% on LaSOT, AUC 83.9%, NP 88.9%, and Precision 83.1% on TrackingNet, and EAO 0.555 on VOT2020 (Cui et al., 2022).

A further tracking-specific contribution is asymmetric mixed attention for multiple templates. In that variant, template queries attend only to template keys and values, while search queries still attend to both template and search tokens:

Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.

This reduces complexity and stabilizes template representations during online tracking (Cui et al., 2023). The family also includes a score prediction module for online template selection. In the 2023 account, no online templates gives 68.1 AUC on LaSOT, naive online update gives 66.6, and online update with the score prediction module yields 69.2 (Cui et al., 2023).

Pretraining is unusually central in this literature. The extended tracking paper investigates supervised pre-training, MAE, ConvMAE, and TrackMAE, and reports that MixViT from scratch reaches 56.2 AUC on LaSOT, MAE on tracking data 65.1, TrackMAE 66.0, DeiT3 IN-1k 66.5, and MAE pretrain IN-1k 68.5 without the online scheme (Cui et al., 2023). This indicates that the tracking formulation is not merely architectural; it is tightly coupled to pretraining behavior.

3. Efficiency-oriented tracking evolution and adversarial vulnerability

MixFormerV2 reworks the tracking formulation around efficiency. It removes dense convolutional operations and the complex score prediction module, introduces four learnable prediction tokens, concatenates them with template and search tokens, and predicts tracking coordinates and confidence scores through simple MLP heads (Cui et al., 2023). Localization is distribution-based: for each coordinate X{T,L,B,R}X \in \{\mathcal{T}, \mathcal{L}, \mathcal{B}, \mathcal{R}\},

P^X(x)=MLP(tokenX),BX=EP^X[X].\hat{P}_X(x) = \mathrm{MLP}(\mathrm{token}_X), \qquad B_X = \mathbb{E}_{\hat{P}_X}[X].

The score is predicted from the mean of the four prediction tokens via a 2-layer MLP.

Efficiency is improved not only by token heads but also by a two-part distillation strategy. Dense-to-sparse distillation transfers localization knowledge from a dense MixViT teacher to the token-based student through KL divergence on 1D coordinate marginals. Deep-to-shallow distillation progressively prunes backbone layers using feature mimicry and a progressive model depth pruning schedule. Under this design, MixFormerV2-B has 58.8M parameters and reaches 165 FPS on GPU, while MixFormerV2-S has 16.2M parameters, 325 FPS on GPU, and 30 FPS on CPU (Cui et al., 2023). The paper reports 70.6 / 80.8 / 76.2 on LaSOT for MixFormerV2-B and 57.4 / 58.4 on TNL2K, while also noting that MixFormerV2-S outperforms FEAR-L by 2.7 AUC on LaSOT (Cui et al., 2023).

The tracking MixFormer has also been used as a target in robustness research. The ABBG attack paper characterizes MixFormer as a transformer-based tracker that predicts a single bounding box per frame by jointly extracting features from search and template regions via attention, with a Mixed Attention Module and a score prediction module (Nokabadi et al., 2024). ABBG is designed precisely for such one-box trackers. Starting from

bpred=[x,y,w,h],b_{\mathrm{pred}} = [x, y, w, h],

it samples K=1024K=1024 adversarial boxes per step using

xi=x+Txi,yi=y+Tyi,wi=wsi,hi=hsi,x'_i = x + \mathcal{T}_{x_i},\quad y'_i = y + \mathcal{T}_{y_i},\quad w'_i = ws_i,\quad h'_i = hs_i,

with ss0 and ss1, selects positives by adaptive IoU thresholding, and optimizes

ss2

where ss3 is a smoothed L1 norm (Nokabadi et al., 2024).

On GOT-10k, the paper reports that MixFormer under no attack has AO ss4, ss5, and ss6. Under ABBG, these become AO ss7, ss8, and ss9, corresponding to drops of 99.71%, 100%, and 100% (Nokabadi et al., 2024). By contrast, the black-box CSA and IoU baselines produce much smaller degradations. This establishes that the one-box prediction paradigm that simplifies tracking inference also provides a particularly direct white-box attack proxy.

4. MixFormer as a vision backbone and segmentation decoder

A distinct 2022 use of the name is the general-purpose vision backbone “MixFormer: Mixing Features across Windows and Dimensions” (Chen et al., 2022). This model addresses the limitations of local-window self-attention by pairing window-based multi-head self-attention with a full-feature-map depth-wise convolution in a parallel block, and then adding bi-directional interactions between the two branches. The attention branch uses local-window MSA with relative position bias, while the convolution branch applies a km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),0 depth-wise convolution over the full feature map. Channel interaction injects SE-style channel weights from the convolution branch into the attention value tensor, and spatial interaction injects a learned spatial attention map from the attention branch into the convolution branch (Chen et al., 2022).

The model is hierarchical, with a convolution stem and four stages at downsampling rates km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),1. For ImageNet-1K at km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),2, the paper reports 78.9% top-1 for MixFormer-B1, 80.0% for B2, 81.7% for B3, and 83.0% for B4, with B4 using 35M parameters and 3.6G FLOPs (Chen et al., 2022). It also reports that B4 beats Swin-T 81.3% at 20% less FLOPs and matches Swin-S 83.0% at 2.4× lower FLOPs. On COCO with Mask R-CNN, B4 reaches km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),3 45.1 and km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),4 41.2 under the 1× schedule, compared with Swin-T at 42.2 and 39.1; on ADE20K with UperNet, B4 reaches 46.8 mIoU single-scale and 48.0 multi-scale (Chen et al., 2022). This MixFormer is explicitly not the tracking architecture.

U-MixFormer is a later segmentation model that adopts a UNet-like transformer decoder and a different notion of “mix-attention” (Yeom et al., 2023). Its decoder uses lateral encoder–decoder connections as queries and forms keys and values by spatially aligning and concatenating hierarchical features from encoder and decoder stages:

km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),5

followed by standard scaled dot-product attention. On ADE20K, U-MixFormer-B0 with MiT-B0 reports 41.2% mIoU, 6.1M parameters, and 6.1 GFLOPs, surpassing SegFormer-B0 by 3.8% mIoU and using 27.3% less computation (Yeom et al., 2023). With MSCAN-T, it reaches 44.4% mIoU and outperforms SegNeXt by 3.3% on ADE20K (Yeom et al., 2023). Here again, the name denotes mixed hierarchical feature aggregation rather than tracking-specific target–search fusion.

5. Human motion, action, and gesture variants

The name has also propagated into structured human-motion models. In HDBN for skeleton-based action recognition, MixFormer is the Transformer branch of a dual-branch network whose other branch is MixGCN (Liu et al., 2024). The motivation is complementary inductive bias: GCNs exploit predefined skeleton topology, whereas Transformers capture global spatiotemporal dependencies without fixed adjacency. The paper states that the MixFormer branch integrates Skeleton MixFormer and is evaluated primarily on 2D skeleton modalities km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),6, km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),7, km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),8, km=Concat(kt,ks),vm=Concat(vt,vs),k_m = \mathrm{Concat}(k_t, k_s), \quad v_m = \mathrm{Concat}(v_t, v_s),9, Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.0, and Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.1 (Liu et al., 2024). Its simplified transformer update is

Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.2

Standalone MixFormer reaches 47.23% on UAV-Human CSv1 and 73.47% on CSv2, while the late-fused HDBN reaches 47.95% and 75.36% (Liu et al., 2024). This supports the claim, made explicitly in that paper, that global Transformer reasoning and topology-aware GCN modeling are complementary.

ConvMixFormer is a separate dynamic hand-gesture architecture that replaces self-attention with a convolutional token mixer and replaces the conventional FFN with a gated depthwise feed-forward network (Garg et al., 2024). Its block is summarized as

Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.3

with gating

Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.4

where Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.5 is GELU (Garg et al., 2024). The model reports 13.57M parameters and 59.98G MACs, versus 24.30M and 62.92G for a transformer baseline. On NVGesture it reaches 85.49% with four-modal fusion; on Briareo it reaches 98.64% with Color + IR + Normals (Garg et al., 2024). Here “MixFormer” no longer denotes attention mixing in the tracking sense; it denotes a transformer-like scaffold with a more efficient token mixer.

MixTGFormer introduces yet another “Mixformer” meaning in 3D human pose estimation (Duan et al., 20 Apr 2026). Its core unit combines GCN and Transformer attention in parallel within spatial and temporal blocks, then applies a Squeeze-and-Excitation layer after adaptive fusion. The model operates in two streams, one ordered Spatial→Temporal and the other Temporal→Spatial, with cross-branch fusion

Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.6

The paper reports P1 = 37.6 mm and P2 = 31.8 mm on Human3.6M, and on MPI-INF-3DHP it reports PCK = 98.5%, AUC = 85.4%, and MPJPE = 16.5 mm (Duan et al., 20 Apr 2026). It explicitly notes that this Mixformer should not be confused with the tracking architecture.

6. MixFormer in recommender systems and sequential CTR prediction

In recommender systems, one meaning of MixFormer is a latent-query sequential CTR backbone. The LENS paper classifies it alongside HyFormer and OneTrans as a query×seq architecture: instead of making the target item score each history item directly, it constructs one or more latent queries that cross-attend the history with cost Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.7 (Wang et al., 25 May 2026). In that formulation, with target embedding Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.8, full-side features Attentiont=softmax(qtkm/d)vm,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_m^\top / \sqrt{d}) v_m,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.9, and sequence embeddings Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.0, the raw query bank is

Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.1

Each layer performs cross-attention from queries to sequence and then per-query token mixing. The paper characterizes MixFormer’s “Target Entry Point” as a per-head dense projection that includes the target (Wang et al., 25 May 2026).

LENS augments this backbone with Query-Specific Position Bias, a Target-Conditioned Query Gate, and a Target-Conditioned Position Bias. For MixFormer, all four evaluated dataset cells show positive total-gain point estimates with QueryPos+LENS: KuaiRec 0.8341±0.0046 to 0.8399±0.0045, TaobaoAd 0.6363±0.0004 to 0.6377±0.0006, TAAC 0.7527±0.0018 to 0.7534±0.0023, and KuaiRand 0.6629±0.0052 to 0.6683±0.0039 (Wang et al., 25 May 2026). The paper also identifies a density-dependent rule: above roughly 50 samples per item, conditioning on the target embedding alone is preferred; below that threshold, conditioning on target plus masked mean sequence embedding is preferred (Wang et al., 25 May 2026).

A separate 2026 paper uses the same name for a large industrial recommender intended to co-scale dense feature interaction and sequence modeling under a unified parameterization (Huang et al., 15 Feb 2026). Here MixFormer is a decoder-only Transformer-style backbone with an input layer, Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.2 MixFormer blocks, and task heads. Non-sequential features are embedded, concatenated, split into Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.3 heads, and projected to Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.4. Each block contains a Query Mixer, Cross Attention, and Output Fusion. Query Mixer replaces self-attention for heterogeneous dense heads with parameter-free HeadMixing followed by per-head SwiGLU FFNs:

Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.5

Cross attention then aligns these dense heads to per-layer transformed sequence features, with per-head summaries

Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.6

This yields Attentiont=softmax(qtkt/d)vt,Attentions=softmax(qskm/d)vm.\mathrm{Attention}_t = \mathrm{softmax}(q_t k_t^\top / \sqrt{d}) v_t,\quad \mathrm{Attention}_s = \mathrm{softmax}(q_s k_m^\top / \sqrt{d}) v_m.7 cross-attention cost per block rather than quadratic sequence self-attention over a mixed token set (Huang et al., 15 Feb 2026).

The paper reports that MixFormer-medium has about 1.226B dense parameters and about 3,503 GFLOPs/batch, compared with STCA→RankMixer at about 1.255B dense parameters and about 6,736 GFLOPs/batch (Huang et al., 15 Feb 2026). Offline gains are reported as AUC gains up to +1.28% on Finish and +1.60% on Skip, with UAUC gains up to +1.60% and +2.46%. A user–item decoupled variant, UI-MixFormer-medium, reduces FLOPs from 3,503 to 2,242 and yields serving-latency speedups above 30% with request-level batching (Huang et al., 15 Feb 2026). The paper further reports online A/B improvements on Douyin and Douyin Lite in active days, duration, like, finish, and comment metrics (Huang et al., 15 Feb 2026).

7. Conceptual commonalities and enduring ambiguities

Despite the shared name, these systems do not form a single lineage with a common block definition. In tracking, “mixing” means iterative target–search interaction within MAM (Cui et al., 2023). In the 2022 vision backbone, it means parallel mixing across windows and across channel and spatial dimensions (Chen et al., 2022). In U-MixFormer, it means mixing multi-stage encoder and decoder features into a unified key/value memory (Yeom et al., 2023). In ConvMixFormer, it means retaining a transformer-like scaffold while replacing self-attention with a convolutional token mixer (Garg et al., 2024). In CTR and recommender settings, it means compressed query–sequence interaction or unified dense–sequence co-scaling (Wang et al., 25 May 2026, Huang et al., 15 Feb 2026).

This suggests that “MixFormer” has become a naming convention for architectures whose main novelty is the fusion of previously separated representational paths, rather than a stable architectural standard. A practical implication is that citations to “MixFormer” are incomplete unless the domain is specified. In particular, the tracking MixFormer, the window-and-dimension vision backbone, and the recommender variants are not interchangeable, and several papers explicitly warn against conflating them (Duan et al., 20 Apr 2026, Wang et al., 25 May 2026).

Within each domain, however, the name has remained technically meaningful. The tracking line emphasizes synchronous target-aware representation learning and, later, tokenized efficient prediction and vulnerability analysis (Cui et al., 2023, Nokabadi et al., 2024). The vision-backbone line emphasizes efficient local–global mixing without shifted windows (Chen et al., 2022). The structured-motion and gesture variants emphasize global–local or multimodal complementarity (Liu et al., 2024, Duan et al., 20 Apr 2026). The recommender variants emphasize latent-query compression, feature-conditioned retrieval, or unified dense–sequence scaling (Wang et al., 25 May 2026, Huang et al., 15 Feb 2026). The encyclopedic conclusion is therefore twofold: MixFormer is simultaneously a specific tracker family of major importance in visual tracking and a broader, polysemous label for architectures built around explicit mixing operations across streams, scales, modalities, or feature types.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to MixFormer.