Paper deep dive
Efficient Video Dataset Distillation via Cluster-Guided Prototype Blending
Chongle Ren, Guang Li, Wenbo Huang, Naoki Saito, Takahiro Ogawa, Miki Haseyama
Intelligence
Status: not_run | Model: - | Prompt: - | Confidence: 0%
Entities (0)
Relation Signals (0)
No relation signals yet.
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Video dataset distillation aims to compress a large video dataset into a compact surrogate set that preserves its training utility. Most existing approaches synthesize condensed videos through iterative optimization, whose cost is amplified by the temporal dimension. Rather than further reducing the number of optimized variables, we investigate whether effective distilled videos can be constructed without gradient-based optimization of the stored videos. Such a construction-based approach must address three challenges: selecting informative temporal segments, covering diverse intra-class variations under a limited videos-per-class budget, and increasing the information carried by each stored sample. To this end, we propose ProtoBlend, an efficient select-allocate-blend framework. First, teacher-guided temporal clip selection retains a high-confidence segment from each source video. Second, cluster-guided prototype allocation partitions the selected clips in the teacher feature space and assigns one distilled slot to each intra-class cluster. Third, each prototype is blended with an in-cluster anchor, while their teacher predictions are combined using the same coefficient to provide mixture-source supervision. Experiments on four trimmed action-recognition benchmarks demonstrate that ProtoBlend achieves a competitive accuracy-efficiency trade-off without iterative optimization of the distilled videos.
Tags
Links
- Source: https://arxiv.org/abs/2608.03269v1
- Canonical: https://arxiv.org/abs/2608.03269v1
Trouble viewing inline? Open PDF directly â
Full Text
53,200 characters extracted from source content.
Expand or collapse full text
Efficient Video Dataset Distillation via Cluster-Guided Prototype Blending Chongle Ren1, Guang Li1, Wenbo Huang2, Naoki Saito1, Takahiro Ogawa1, Miki Haseyama1 Correspondence to Guang Li <guang@lmd.ist.hokudai.ac.jp> Abstract Video dataset distillation aims to compress a large video dataset into a compact surrogate set that preserves its training utility. Most existing approaches synthesize condensed videos through iterative optimization, whose cost is amplified by the temporal dimension. Rather than further reducing the number of optimized variables, we investigate whether effective distilled videos can be constructed without gradient-based optimization of the stored videos. Such a construction-based approach must address three challenges: selecting informative temporal segments, covering diverse intra-class variations under a limited videos-per-class budget, and increasing the information carried by each stored sample. To this end, we propose ProtoBlend, an efficient selectâallocateâblend framework. First, teacher-guided temporal clip selection retains a high-confidence segment from each source video. Second, cluster-guided prototype allocation partitions the selected clips in the teacher feature space and assigns one distilled slot to each intra-class cluster. Third, each prototype is blended with an in-cluster anchor, while their teacher predictions are combined using the same coefficient to provide mixture-source supervision. Experiments on four trimmed action-recognition benchmarks demonstrate that ProtoBlend achieves a competitive accuracyâefficiency trade-off without iterative optimization of the distilled videos. Introduction The progress of video understanding has been driven by increasingly large training datasets (Tang et al. 2025; Kong et al. 2025; Sajedi et al. 2024; Ni et al. 2022). Modern action-recognition benchmarks contain hundreds of thousands of clips spanning hundreds of categories, with every sample comprising an entire sequence of frames rather than a single image (Zhu et al. 2020; Kong and Fu 2022). This scale introduces substantial costs throughout the model-development cycle. Datasets must be stored and transferred, while architecture search, hyperparameter tuning, and ablation studies require models to be repeatedly trained on the full collection (Sorscher et al. 2022; Wang et al. 2024a). Dataset distillation offers a potential solution by replacing the original dataset with a compact surrogate set that retains its training utility (Wang et al. 2018; Li et al. 2022b). In the image domain, dataset distillation has developed into a broad family of methods (Yu et al. 2023). Most influential approaches treat synthetic samples as learnable variables and update them through iterative optimization. Early methods match the gradients induced by real and synthetic batches (Zhao and Bilen 2021b, a), while later methods align feature distributions (Zhao and Bilen 2023; Wang et al. 2022; Sajedi et al. 2023; Li et al. 2025b) or training trajectories (Cazenavette et al. 2022; Li et al. 2023b, 2024a; Guo et al. 2024). A parallel line of work improves scalability by increasing the realism, diversity, and information content of the condensed set (Wang et al. 2025a; Ran et al. 2026; Sun et al. 2024; Li et al. 2026). Despite their different objectives, these methods generally require repeated forward and backward passes to optimize the synthetic samples. Extending this paradigm to videos is considerably more expensive (Yu et al. 2023; Liu and Du 2025). The temporal dimension multiplies the number of optimized variables by the clip length, and each update must process the entire spatiotemporal volume. Existing video dataset distillation methods therefore focus on reducing the synthetic optimization space. VDSD (Wang et al. 2024b) disentangles a condensed video into static visual content and auxiliary motion information, reducing the number of directly optimized variables. PRISM (Choi et al. 2026) instead models appearance and motion jointly and progressively inserts sparse learnable key frames where linear interpolation is insufficient to capture nonlinear dynamics. These approaches provide more efficient video parameterizations, but the condensed videos are still obtained through repeated gradient-based updates. Figure 1: Accuracy versus distilled-set construction time on MiniUCF. Marker size denotes peak GPU memory. ProtoBlend provides a favorable trade-off relative to the evaluated optimization-based baselines. This motivates the complementary exploration of directly constructing useful distilled videos, without iteratively optimizing the stored videos. Removing synthetic optimization does not by itself produce an effective condensed set. A direct construction strategy must address three challenges. First, raw videos contain redundant or weakly informative temporal segments, making arbitrary clip extraction unreliable. Second, selecting only the most teacher-confident clips may concentrate the limited videos-per-class (VPC) budget on a few easy intra-class regions and overlook other variations. Third, storing one selected clip per slot limits the information contributed by that slot to a single source video. Effective direct construction therefore requires jointly improving temporal clip quality, intra-class coverage, and per-slot information content. To address these challenges, we propose ProtoBlend, an efficient video dataset distillation framework following a selectâallocateâblend pipeline. First, Teacher-Guided Temporal Clip Selection (TGS) samples multiple temporal candidates from each source video and retains the clip with the lowest target-class cross-entropy under a frozen teacher. This stage filters out weakly recognizable temporal regions and produces a candidate pool containing one clip per source video. Second, Cluster-Guided Prototype Allocation (CGA) partitions the selected clips within each class using their teacher representations and assigns one distilled slot to each feature-space cluster. Clustering determines where the limited VPC budget is allocated, while teacher confidence determines which clips represent each cluster. Third, Blended Sample Construction combines each selected prototype with an in-cluster anchor through pixel-level interpolation. This allows one stored video to incorporate information from two compatible real clips. To align supervision with the construction process, the teacher predictions of the prototype and anchor are combined using the same blending coefficient. Once the teacher has been prepared, ProtoBlend constructs the distilled set using forward inference, class-wise clustering, and direct sample blending, without gradient-based updates to the stored videos. As illustrated in Fig. 1, this design provides a favorable trade-off between recognition accuracy and construction efficiency. Experiments on MiniUCF, HMDB51, Kinetics-400, and Something-Something V2 further demonstrate competitive performance across different dataset scales and VPC budgets. Our contributions are summarized as follows: âą We introduce ProtoBlend, a construction-based video dataset distillation framework that avoids iterative gradient-based optimization of the distilled videos. âą We develop a selectâallocateâblend pipeline that addresses temporal clip quality, intra-class budget allocation, and per-slot information content, together with mixture-source soft labels matched to the blended inputs. âą We evaluate ProtoBlend on four video benchmarks, demonstrating competitive performance across multiple VPC budgets, a favorable accuracyâefficiency trade-off, and transferability to recurrent evaluation architectures on MiniUCF. Figure 2: Overview of ProtoBlend. For each source video, a frozen fine-tuned VideoMAE teacher selects the temporal candidate clip with the lowest target-class cross-entropy loss. The selected clips of each class are then grouped by class-wise K-means in the teacher feature space, where the lowest- and second-lowest-loss clips within each cluster are chosen as the prototype and anchor, respectively. Finally, each pair is blended at the pixel level, and their teacher predictions are mixed using the same coefficient to construct the distilled video and its soft label. Related Work Image Dataset Distillation Dataset distillation aims to replace a large training dataset with a compact synthetic set that preserves its training utility. Most existing methods have been developed for image classification and formulate the synthetic samples as learnable variables. Early approaches optimize these samples by matching the gradients induced by real and synthetic batches (Zhao and Bilen 2021b; Wu et al. 2025). Subsequent methods improve effectiveness and scalability by aligning feature distributions (Wang et al. 2022; Liu et al. 2025; Cui et al. 2025b; Ma et al. 2025), matching training trajectories (Cazenavette et al. 2022; Guo et al. 2024; Zhong et al. 2025), or learning synthetic data through feature regression (Zhou et al. 2022; Cui et al. 2025a; Wang et al. 2025b; Peng et al. 2026). More recently, generative dataset distillation has leveraged pretrained generative models to produce diverse and realistic synthetic training samples (Li et al. 2024b; Ye et al. 2025; Su et al. 2024; Zou et al. 2025; Cai et al. 2026). These methods have been applied to various downstream tasks, including privacy-preserving learning (Li et al. 2020, 2022a, 2023a), fine-grained recognition (Ma et al. 2026), and multimodal learning (Li et al. 2025a). However, applying them directly to videos is considerably more expensive because each sample contains an additional temporal dimension. Video Dataset Distillation Video dataset distillation must preserve both spatial appearance and temporal dynamics while controlling the high cost of optimizing video tensors. VDSD (Wang et al. 2024b) addresses this challenge by disentangling each condensed video into static visual content and auxiliary motion information. This parameterization reduces the number of variables that must be directly optimized, making video distillation more tractable than optimizing all frames independently. However, the condensed representation is still learned through iterative gradient-based updates. PRISM (Choi et al. 2026) instead represents each video as a coupled spatiotemporal structure. It initializes a synthetic video with sparse temporal anchors and progressively inserts learnable key frames where linear interpolation is insufficient to capture nonlinear dynamics. This adaptive parameterization allocates optimization capacity to temporally informative regions and improves storage efficiency, but synthesizing the condensed videos still requires repeated forward and backward passes. ProtoBlend explores a complementary construction-based direction that avoids iterative optimization of distilled videos. A fine-tuned, frozen VideoMAE teacher selects high-confidence temporal clips and extracts their features. The videos-per-class budget is then allocated across intra-class clusters, where compatible clips are directly blended to form the distilled set. Unlike VDSD and PRISM, which improve iterative synthesis, ProtoBlend replaces it with teacher-guided selection, allocation, and construction. Proposed Method In this section, we present ProtoBlend, an efficient video dataset distillation method based on a selectâallocateâblend pipeline. Given a training video set =(xi,yi)i=1N,D=\(x_i,y_i)\_i=1^N, (1) with C classes and a target budget of K videos per class, ProtoBlend produces a distilled set ~=(x~c,k,y~c,k)c=1,k=1C,K, D=\( x_c,k, y_c,k)\_c=1,\,k=1^C,\,K, (2) containing exactly CĂKCĂ K stored videos. Each distilled video x~c,k x_c,k occupies one storage slot but is constructed from two real clips within the same class. Figure 2 provides an overview of the framework. 1. Teacher-Guided Temporal Clip Selection (TGS) selects the most class-discriminative temporal segment from each source video, improving the quality of the candidate pool. 2. Cluster-Guided Prototype Allocation (CGA) partitions the selected clips into K teacher-feature modes and assigns one distilled slot to each mode. Within every cluster, teacher confidence is used to select the prototype and anchor, balancing intra-class coverage with discriminative quality. 3. Blended Sample Construction combines each prototype with its in-mode anchor through pixel-level interpolation. The resulting distilled video therefore incorporates information from two discriminative real clips while occupying only one storage slot. A mixture-source soft label is constructed from the teacher predictions of the same two source clips. These three stages address complementary aspects of video dataset distillation: temporal selection improves clip quality, cluster-guided allocation improves mode coverage, and blending increases the information density of each stored sample. Teacher-Guided Temporal Clip Selection Raw training videos often contain temporal segments that are redundant or only weakly discriminative for the target class. For each source video xix_i, we sample R temporal candidate clips i=xi,rr=1RX_i=\x_i,r\_r=1^R and score every candidate by its target-class cross-entropy under the frozen teacher T, âi,r=CEâ(Tâ(xi,r),yi). _i,r=CE\! (T(x_i,r),\,y_i ). (3) We keep only the most teacher-recognizable clip per source video, xiâ=argâminxi,râiâĄâi,r,âi=minrâĄâi,r,x_i = *arg\,min_x_i,r _i _i,r, _i= _r _i,r, (4) and carry its teacher embedding zi=ÏTâ(xiâ)z_i= _T(x_i ) and score âi _i to the next stage. Retaining exactly one clip per source video suppresses temporal noise and prevents a single long video from injecting multiple near-identical segments into the pool. The surviving clips of class c form the candidate pool c=(xiâ,zi,âi):yi=c.C_c= \(x_i ,\,z_i,\, _i)\;:\;y_i=c \. (5) The resulting candidate pool suppresses temporally uninformative segments while preserving one discriminative clip from each source video for subsequent allocation. Cluster-Guided Prototype Allocation Taking the K lowest-loss clips of a class as the distilled set tends to concentrate the limited budget on a few easy intra-class modes, leaving other variations uncovered. We therefore decouple diversity coverage from sample quality: clustering determines where each distilled slot is allocated, while teacher confidence determines which clips represent each mode. For each class c, we apply K-means to the teacher embeddings zi:(xiâ,â ,â )âc\z_i:(x_i ,·,·) _c\ and obtain K clusters c,kk=1K\G_c,k\_k=1^K. Tying the number of clusters to the VPC budget assigns one stored slot to each feature-space mode, encouraging the distilled set to cover diverse intra-class variations. Within each cluster, we select clips according to teacher confidence. The prototype is the clip with the lowest target-class cross-entropy, pc,k=argâminiâc,kâĄâi,p_c,k= *arg\,min_i _c,k _i, (6) and the anchor is the second-lowest-loss clip from the same cluster, ac,k=argâminiâc,kâpc,kâĄâi.a_c,k= *arg\,min_i _c,k \p_c,k\ _i. (7) Thus, clustering promotes diversity across the distilled set, whereas loss-based selection preserves discriminative quality within each mode. Since the prototype and anchor originate from the same feature-space cluster, their subsequent interpolation remains local to a coherent intra-class region rather than bridging unrelated modes. If a cluster contains only one clip, we set ac,k=pc,ka_c,k=p_c,k, in which case the following blending step reduces to the original prototype. Blended Sample Construction Each distilled slot can store only one video. Simply storing the selected prototype, however, limits the information in that slot to a single real source. We therefore combine the prototype with an in-mode anchor so that one stored video incorporates information from two discriminative clips. With a fixed blend coefficient αâ[0.5,1]αâ[0.5,1], we construct x~c,k=αâxpc,kâ+(1âα)âxac,kâ, x_c,k=α x_p_c,k +(1-α)x_a_c,k , (8) a pixel-level, frame-aligned combination of the two clips, which share the same length and spatial resolution so that no resampling is required. We fix α across the distilled set to maintain a consistent construction rule. Setting αâ„0.5α℠0.5 preserves the prototype as the dominant (or, at α=0.5α=0.5, equally weighted) source while allowing the anchor to contribute complementary information. Supervision is matched to the same mixture. Let sâ(x)=softmaxâ(Tâ(x)/Ï)s(x)=softmax\! (T(x)/Ï ) denote the teacherâs temperature-scaled posterior. Rather than querying the teacher on the blended video, whose mixed appearance lies outside the distribution the teacher was trained on, we instead combine the posteriors of the two real sources at the same ratio, y~c,k=αâsâ(xpc,kâ)+(1âα)âsâ(xac,kâ). y_c,k=α\,s\! (x_p_c,k )+(1-α)\,s\! (x_a_c,k ). (9) The mixture-source label is constructed using the same coefficient α as the input blend, forming a consistently constructed inputâtarget pair (x~c,k,y~c,k)( x_c,k, y_c,k) that provides supervision aligned with the two source clips, without querying the teacher for a potentially unreliable prediction on the out-of-distribution blended video. Since sâ(xpc,kâ)s(x_p_c,k ) and sâ(xac,kâ)s(x_a_c,k ) are already computed during selection, constructing y~c,k y_c,k requires no additional teacher forward pass beyond those used for scoring. Collecting one pair per cluster across all classes yields the distilled set matching the VPC budget exactly. ~=(x~c,k,y~c,k)c=1,k=1C,K,|~|=CĂK, D= \( x_c,k, y_c,k) \_c=1,\,k=1^C,\,K, | D |=CĂ K, (10) Training Objective A student classifier fΞf_Ξ is trained from random initialization on the distilled set ~ D. Because every blend combines two clips of the same class, each distilled video carries an unambiguous hard label c alongside the mixture-source soft label y~c,k y_c,k, and we supervise the student with both. For a distilled pair (x~,y~)( x, y) of class c, the hard term is the standard cross-entropy on the student logits, âhard=CEâ(fΞâ(x~),c),L_hard=CE\! (f_Ξ( x),\,c ), (11) and the soft term is a temperature-scaled distillation loss matching the student to the stored mixture-source label, âsoft=Ï2âKLâ(y~â„softmaxâ(fΞâ(x~)/Ï)),L_soft=Ï^2\,KL\! ( y\; \|\;softmax(f_Ξ( x)/Ï) ), (12) using the same temperature Ï that produced y~ y; the Ï2Ï^2 factor keeps the gradient magnitude of the soft term comparable to that of the hard term â=(1âλ)ââhard+λââsoft,L=(1-λ)\,L_hard+λ\,L_soft, (13) where λâ[0,1]λâ[0,1] controls their relative contributions. The hard-label term preserves the shared class-level target of the source clips, while the soft-label term transfers finer teacher-derived information matched to the blended input. Once the distilled set and its labels have been constructed, student training requires access to neither the original dataset nor the teacher model, allowing the resulting distilled set to serve as a self-contained and reusable training surrogate. Method MiniUCF HMDB51 VPC=1 VPC=5 VPC=10 VPC=1 VPC=5 VPC=10 Random 10.3±1.110.3±1.1 20.7±0.520.7±0.5 26.0±0.626.0±0.6 3.8±0.43.8±0.4 6.5±0.56.5±0.5 9.0±0.59.0±0.5 Herding 11.4±0.311.4±0.3 22.3±0.122.3±0.1 28.7±0.928.7±0.9 4.1±0.34.1±0.3 8.5±0.58.5±0.5 10.6±0.210.6±0.2 K-center 10.0±1.510.0±1.5 19.2±0.019.2±0.0 26.0±0.826.0±0.8 3.7±0.73.7±0.7 6.9±0.16.9±0.1 7.4±0.17.4±0.1 DM 15.3±1.115.3±1.1 25.7±0.225.7±0.2 30.0±0.630.0±0.6 6.1±0.26.1±0.2 8.0±0.28.0±0.2 12.1±0.412.1±0.4 FRePo 20.3±0.520.3±0.5 30.2±1.730.2±1.7 â 7.2±0.87.2±0.8 9.6±0.79.6±0.7 â DM+VDSD 17.5±0.117.5±0.1 27.2±0.427.2±0.4 â 6.0±0.46.0±0.4 8.2±0.18.2±0.1 â FRePo+VDSD 22.0±1.022.0 1.0 31.2±0.7ÂŻ 31.2±0.7 â 8.6±0.5ÂŻ 8.6±0.5 10.3±0.610.3±0.6 â PRISM 17.9±0.317.9±0.3 28.0±0.128.0±0.1 31.0±0.1ÂŻ 31.0±0.1 7.5±0.37.5±0.3 10.5±0.4ÂŻ 10.5±0.4 12.8±0.2ÂŻ 12.8±0.2 ProtoBlend 20.9±0.1ÂŻ 20.9±0.1 34.8±0.934.8 0.9 41.0±0.341.0 0.3 9.0±0.19.0 0.1 12.1±0.612.1 0.6 14.2±0.414.2 0.4 Full Dataset 57.8± 1.1 25.4± 0.2 Table 1: Comparison on MiniUCF and HMDB51 across different VPC settings. Results are reported as the mean and standard deviation over three runs. Full Dataset denotes training on the complete real training set, and âââ indicates an unavailable result. The best and second-best results in each setting are shown in bold and underlined, respectively. Experiments Experimental Setup Datasets. We evaluate ProtoBlend on four action-recognition benchmarks spanning different dataset scales: MiniUCF, HMDB51 (Kuehne et al. 2011), Kinetics-400 (Carreira and Zisserman 2017), and Something-Something V2 (Goyal et al. 2017). Following prior work (Wang et al. 2024b), MiniUCF is constructed by selecting the 50 most frequent action classes from UCF101 (Soomro et al. 2012), which contains 13,320 videos from 101 classes. HMDB51 contains 6,849 video clips from 51 action classes. For large-scale evaluation, Kinetics-400 covers 400 human action classes, while Something-Something V2 contains 174 motion-centric action classes. Baselines. We compare ProtoBlend with three coreset selection baselines: Random, Herding (Welling 2009), and K-center (Sener and Savarese 2017). We also include representative dataset distillation methods, including the image-based DM (Zhao and Bilen 2023) and FRePo (Zhou et al. 2022), the VDSD-based variants DM+VDSD and FRePo+VDSD (Wang et al. 2024b), and the video-specific PRISM (Choi et al. 2026). The VDSD-based variants combine the corresponding image distillation method with VDSDâs staticâdynamic video representation. All methods are compared under the same VPC budgets and student-evaluation protocol. Implementation details. We use a VideoMAE teacher (Tong et al. 2022) fine-tuned separately on each source dataset for candidate scoring, feature extraction, and soft-label generation. Each temporal candidate contains 16 frames sampled with a temporal stride of 4. Unless otherwise specified, we set the blend coefficient to α=0.6α=0.6, the soft-label loss weight to λ=0.6λ=0.6, and the temperature to Ï=4Ï=4. Complete implementation and training hyperparameters are provided in the supplementary material. Evaluation protocol. Following prior video dataset distillation studies, we use a four-layer ConvNet3D as the default student architecture. Each student is trained from random initialization, and every experiment is repeated independently three times; we report the mean and standard deviation. Top-1 classification accuracy is used for MiniUCF and HMDB51, while top-5 accuracy is reported for Kinetics-400 and Something-Something V2. To evaluate cross-architecture transfer on MiniUCF at VPC=1, we additionally train CNN+GRU and CNN+LSTM students on the same distilled sets. Within each evaluation setting, all methods use the same student architecture, training schedule, and data augmentation to ensure comparability. Main Results Results on MiniUCF and HMDB51. ProtoBlendâs clearest advantage on MiniUCF emerges once more than one video per class is available (Table 1). At VPC=1, it ranks second, trailing FRePo+VDSD by 1.1 percentage points while remaining ahead of the other baselines. This setting leaves little room for cluster-guided allocation: a single prototypeâanchor pair must represent the entire class, regardless of its internal diversity. At VPC=5, ProtoBlend moves ahead of FRePo+VDSD by 3.6 points, and its advantage over PRISM reaches 10.0 points at VPC=10, where several optimization-based baselines do not provide results. With multiple slots, the allocation stage can distribute pairs across distinct feature regions rather than concentrating all capacity on one dominant mode. HMDB51 shows the same budget-dependent benefit more consistently. ProtoBlend ranks first at all three budgets, but its lead is only 0.4 points at VPC=1 and grows beyond one point at VPC=5 and VPC=10. The improvement at larger budgets is especially relevant because the temporal selection rule remains unchanged; the additional capacity is used primarily to broaden intra-class coverage. Across the two benchmarks, ProtoBlend is competitive rather than uniformly dominant under extreme compression, while its advantage becomes clearer when the budget allows the proposed cluster structure to take effect. Method SSv2 Kinetics-400 VPC=1 VPC=5 VPC=1 VPC=5 Random 3.1±0.13.1±0.1 3.6±0.13.6±0.1 3.0±0.23.0±0.2 5.5±0.25.5±0.2 Herding 2.8±0.12.8±0.1 3.6±0.13.6±0.1 3.3±0.13.3±0.1 6.3±0.26.3±0.2 K-center 2.6±0.22.6±0.2 4.5±0.14.5 0.1 3.1±0.13.1±0.1 6.2±0.26.2±0.2 DM 3.6±0.03.6±0.0 4.1±0.04.1±0.0 6.3±0.06.3±0.0 9.1±0.99.1 0.9 DM+VDSD 3.8±0.13.8±0.1 4.0±0.14.0±0.1 6.3±0.26.3±0.2 7.0±0.17.0±0.1 PRISM 3.9±0.2ÂŻ 3.9±0.2 4.1±0.14.1±0.1 7.1±0.1ÂŻ 7.1±0.1 8.1±0.1ÂŻ 8.1±0.1 ProtoBlend 4.2±0.24.2 0.2 4.3±0.0ÂŻ 4.3±0.0 7.2±0.17.2 0.1 8.0±0.38.0±0.3 Full Dataset 34.6± 0.5 29.0± 0.6 Table 2: Comparison on SSv2 and Kinetics-400 across different VPC settings. Results on SSv2 and Kinetics-400. The scaling behavior changes on the larger SSv2 and Kinetics-400 benchmarks (Table 2). On SSv2, ProtoBlend has a 0.3-point edge over PRISM at VPC=1, within the observed run-to-run variation, but increasing the budget adds only 0.1 points and leaves it slightly behind K-center at VPC=5. SSv2 classes are often distinguished by fine-grained motion rather than appearance alone. Clustering teacher features can diversify the selected content, but frame-wise blending does not align the motion phases of the prototype and anchor, limiting the value of additional pairs. Kinetics-400 presents a related limitation in a more heterogeneous setting. ProtoBlend is nearly tied with PRISM at VPC=1 but trails DM by 1.1 points at VPC=5, again showing limited returns from the larger budget. A fixed prototypeâanchor construction is effective for selecting a compact representative, yet becomes less flexible as intra-class variation in scene, appearance, and motion increases. More explicit temporal alignment and class-adaptive prototype or budget allocation are therefore promising extensions for large-scale video distillation. Efficiency Analysis ProtoBlend shifts the main construction cost from iterative video optimization to a single teacher-inference stage. In Fig. 3, its post-teacher construction time remains below one hour at both VPC=1 and VPC=5, while its recognition accuracy exceeds that of DM and DM+VDSD. The optimization-based methods repeatedly update every condensed video through forward and backward passes, causing their computational cost to grow with the number of distilled videos. ProtoBlend instead caches the teacher features, confidence scores, and soft predictions for all temporal candidates. Increasing VPC then requires only class-wise clustering, prototypeâanchor selection, and pixel-level blending, without restarting synthetic-data optimization. Its runtime therefore changes only slightly from VPC=1 to VPC=5, while the gap to the optimization-based baselines widens. This weak dependence on the target budget accounts for ProtoBlendâs favorable accuracyâefficiency trade-off and allows the cached teacher outputs to be reused when constructing distilled sets at different compression levels. Figure 3: Accuracy and distillation time on MiniUCF at VPC=1 and VPC=5. ProtoBlend achieves higher accuracy with substantially lower distillation cost. Cross-Architecture Transfer on MiniUCF We evaluate the same MiniUCF distilled sets at VPC=1 with CNN+GRU and CNN+LSTM to test whether their effectiveness depends on the default ConvNet3D evaluator. ProtoBlend ranks first with all three architectures, while its accuracy varies by only 1.1 percentage points across them. By comparison, DM and DM+VDSD lose more than five points when moving from ConvNet3D to either recurrent model. PRISM is more stable but remains less accurate, with ProtoBlend leading it by 1.0 point on CNN+GRU and 2.8 points on CNN+LSTM. ProtoBlend constructs its videos from frozen teacher features and class posteriors without using gradients from the evaluation architecture. The retained visual and temporal cues are therefore not tailored to ConvNet3D and remain accessible to recurrent temporal models, suggesting that the accuracy gain is not specific to the ConvNet3D evaluator. Method Evaluation Model ConvNet3D CNN+GRU CNN+LSTM DM 15.3±1.115.3± 1.1 9.9±0.79.9± 0.7 9.2±0.39.2± 0.3 DM+VDSD 17.5±0.117.5± 0.1 12.0±0.712.0± 0.7 10.3±0.210.3± 0.2 PRISM 17.9±0.317.9± 0.3 18.9±0.818.9± 0.8 18.2±1.318.2± 1.3 ProtoBlend 20.9±0.120.9± 0.1 19.9±0.119.9± 0.1 21.0±0.121.0± 0.1 Table 3: Cross-architecture evaluation on MiniUCF (VPC=1). All methods are evaluated using ConvNet3D, CNN+GRU, and CNN+LSTM. Higher values are better. Ablation Study Temporal selection is the dominant contributor in Table 4. TGS improves accuracy by 8.2 and 8.9 percentage points at VPC=1 and VPC=5, respectively, confirming that the quality of the temporal candidates is more important than the subsequent construction choices. Filtering weakly recognizable segments gives the allocation and blending stages a more discriminative candidate pool. CGA has a different, budget-dependent role: it has little effect when VPC=1 forces all samples into a single cluster, but contributes a further 4.2-point gain at VPC=5. The contrast isolates CGA as a mechanism for distributing additional slots across intra-class modes rather than improving a single representative. Blending cannot be assessed independently of its supervision. With hard labels, it adds 1.4 points at VPC=1 but loses 1.5 points at VPC=5. A blended clip can enrich a single representative, whereas interpolating already-diverse cluster prototypes may also introduce visual and supervisory ambiguity. Matching the label to the two mixture sources resolves this conflict, improving the blended construction by 1.6 and 2.5 points at the two budgets and producing the best configuration. The final gain therefore comes from coupling prototypeâanchor blending with mixture-consistent supervision, rather than treating blending as a standalone augmentation. Components MiniUCF TGS CGA Blend Soft VPC=1 VPC=5 â â â â 10.3±1.110.3±1.1 20.7±0.520.7±0.5 â â â â 18.5±0.218.5±0.2 29.6±0.429.6±0.4 â â â â 17.9±0.917.9±0.9 33.8±0.333.8±0.3 â â â â 19.3±0.919.3 0.9 32.3±0.432.3 0.4 â â â â 20.9±0.120.9 0.1 34.8±0.934.8 0.9 Table 4: Ablation study on MiniUCF. TGS denotes Teacher-Guided Temporal Clip Selection, CGA denotes Cluster-Guided Prototype Allocation, Blend denotes the prototypeâanchor blending, and Soft denotes mixture-source soft-label supervision. Parameter Sensitivity Analysis Both hyperparameters favor balanced mixtures rather than degenerate single-source settings (Fig. 4). The best blend coefficient is α=0.6α=0.6, where the prototype remains dominant, and the anchor supplies complementary content. Moving α toward 1 gradually removes the anchor contribution and reduces blending to prototype selection, while assigning the anchor equal influence can dilute the discriminative content of the prototype. The interior optimum therefore agrees with the intended division of roles between the two selected clips. The supervision weight follows a similar principle, with λ=0.6λ=0.6 providing the best balance. Hard-label supervision alone ignores the uncertainty introduced by combining two inputs, whereas relying entirely on the mixture-source posterior weakens the explicit class-level target. Their combination retains class identity while adapting the prediction target to the blended content. Accuracy changes smoothly around the selected values rather than collapsing outside a narrow optimum, so we use α=0.6α=0.6 and λ=0.6λ=0.6 throughout the remaining experiments. Figure 4: Sensitivity to the blend coefficient α and supervision weight λ on MiniUCF at VPC=1. Construction Supervision VPC=1 VPC=5 Prototype-only Hard 17.9±0.917.9±0.9 33.8±0.333.8±0.3 Hard+Soft 19.5±0.319.5±0.3 32.7±0.232.7±0.2 Blend Hard 19.3±0.919.3±0.9 32.3±0.432.3±0.4 Hard+Soft 20.9±0.120.9 0.1 34.8±0.934.8 0.9 Table 5: Comparison of construction and supervision strategies on MiniUCF. Both Prototype-only and Blend include TGS and CGA. Hard+Soft denotes joint hard-label and mixture-source soft-label supervision. Component Interaction Blending and soft-label supervision are not independently additive (Table 5). With hard labels, blending adds 1.4 percentage points at VPC=1 but loses 1.5 points at VPC=5. Similarly, adding soft-label supervision to prototype-only samples improves VPC=1 by 1.5 points but reduces VPC=5 by 1.1 points. When combined, however, soft-label supervision improves the hard-label blending baseline by 1.6 and 2.5 points at VPC=1 and VPC=5, respectively, yielding the best configuration in both settings. A hard label ignores the relative contributions of the blended sources, whereas the mixture-source posterior changes consistently with the visual input. Thus, the benefit of soft supervision arises from aligning the target with the construction process rather than acting as an independent regularizer. Figure 5: Examples of distilled videos by ProtoBlend. Qualitative Visualization Figure 5 makes the visual trade-off of prototypeâanchor blending explicit. In the appearance-oriented ApplyEyeMakeup example, the face, hand, and manipulated facial region remain identifiable. Motion-oriented examples retain both scene context and ordered changes in body pose, including the approach and execution phases of Diving and PoleVault. Pixel-level superposition introduces visible ghosting in some frames, but it does not erase the cues that distinguish the displayed actions. ProtoBlend therefore prioritizes complementary class and motion information over photorealism, which is appropriate for constructing compact training surrogates. Additional classes and temporal samples are included in the supplementary material. Conclusion In this paper, we presented ProtoBlend, an efficient video dataset distillation framework that replaces iterative optimization with a selectâallocateâblend pipeline. ProtoBlend uses a frozen teacher to select high-confidence temporal clips, allocate distilled slots across intra-class feature clusters, and blend compatible prototypeâanchor pairs with mixture-source soft labels. Experiments on four trimmed action-recognition benchmarks demonstrate a competitive accuracyâefficiency trade-off across the evaluated VPC settings, along with lower post-teacher construction cost than the evaluated optimization-based baselines, and transferability to recurrent architectures on MiniUCF. References W. Cai, Y. Zou, G. Li, C. Gu, and C. Zhang (2026) EVLF: early vision-language fusion for generative dataset distillation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Cited by: Image Dataset Distillation. J. Carreira and A. Zisserman (2017) Quo vadis, action recognition? a new model and the Kinetics dataset. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), p. 6299â6308. Cited by: Experimental Setup. G. Cazenavette, T. Wang, A. Torralba, A. A. Efros, and J. Zhu (2022) Dataset distillation by matching training trajectories. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 10718â10727. Cited by: Introduction, Image Dataset Distillation. J. Choi, J. Hur, G. Han, J. Yu, and J. Kim (2026) PRISM: video dataset condensation with progressive refinement and insertion for sparse motion. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 26348â26357. Cited by: Introduction, Video Dataset Distillation, Experimental Setup. J. Cui, X. Bi, Y. Luo, X. Zhao, J. Liu, and Z. Shen (2025a) FADRM: fast and accurate data residual matching for dataset distillation. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Cited by: Image Dataset Distillation. X. Cui, Y. Qin, W. Zhou, H. Li, and H. Li (2025b) OPTICAL: leveraging optimal transport for contribution allocation in dataset distillation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 15245â15254. Cited by: Image Dataset Distillation. R. Goyal, S. Ebrahimi Kahou, V. Michalski, J. Materzynska, S. Westphal, H. Kim, V. Haenel, I. Fruend, P. Yianilos, M. Mueller-Freitag, et al. (2017) The Something-Something video database for learning and evaluating visual common sense. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), p. 5842â5850. Cited by: Experimental Setup. Z. Guo, K. Wang, G. Cazenavette, H. Li, K. Zhang, and Y. You (2024) Towards lossless dataset distillation via difficulty-aligned trajectory matching. In Proceedings of the International Conference on Learning Representations (ICLR), Cited by: Introduction, Image Dataset Distillation. L. Kong, X. Xu, J. Ren, W. Zhang, L. Pan, K. Chen, W. T. Ooi, and Z. Liu (2025) Multi-modal data-efficient 3D scene understanding for autonomous driving. IEEE Transactions on Pattern Analysis and Machine Intelligence 47 (5), p. 3748â3765. Cited by: Introduction. Y. Kong and Y. Fu (2022) Human action recognition and prediction: a survey. International Journal of Computer Vision 130 (5), p. 1366â1401. Cited by: Introduction. H. Kuehne, H. Jhuang, E. Garrote, T. Poggio, and T. Serre (2011) HMDB: a large video database for human motion recognition. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), p. 2556â2563. Cited by: Experimental Setup. G. Li, R. Togo, T. Ogawa, and M. Haseyama (2020) Soft-label anonymous gastric x-ray image distillation. In Proceedings of the IEEE International Conference on Image Processing (ICIP), p. 305â309. Cited by: Image Dataset Distillation. G. Li, R. Togo, T. Ogawa, and M. Haseyama (2022a) Compressed gastric image generation based on soft-label dataset distillation for medical data sharing. Computer Methods and Programs in Biomedicine 227, p. 107189. Cited by: Image Dataset Distillation. G. Li, R. Togo, T. Ogawa, and M. Haseyama (2023a) Dataset distillation for medical dataset sharing. In Proceedings of the AAAI Conference on Artificial Intelligence (AAAI), Workshop, p. 1â6. Cited by: Image Dataset Distillation. G. Li, R. Togo, T. Ogawa, and M. Haseyama (2023b) Dataset distillation using parameter pruning. IEICE Transactions on Fundamentals of Electronics, Communications and Computer Sciences. Cited by: Introduction. G. Li, R. Togo, T. Ogawa, and M. Haseyama (2024a) Importance-aware adaptive dataset distillation. Neural Networks 172, p. 106154. Cited by: Introduction. G. Li, B. Zhao, and T. Wang (2022b) Awesome dataset distillation. Note: https://github.com/Guang000/Awesome-Dataset-Distillation Cited by: Introduction. L. Li, G. Li, R. Togo, K. Maeda, T. Ogawa, and M. Haseyama (2024b) Generative dataset distillation: balancing global structure and local details. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Workshops, p. 7664â7671. Cited by: Image Dataset Distillation. M. Li, G. Li, L. Ye, J. Mao, T. Ogawa, K. N. Plataniotis, and M. Haseyama (2026) Difficulty-guided sampling: bridging the target gap between dataset distillation and downstream tasks. arXiv preprint arXiv:2601.10090. Cited by: Introduction. W. Li, G. Li, K. Maeda, T. Ogawa, and M. Haseyama (2025a) Decoupled audio-visual dataset distillation. arXiv preprint arXiv:2511.17890. Cited by: Image Dataset Distillation. W. Li, G. Li, K. Maeda, T. Ogawa, and M. Haseyama (2025b) Hyperbolic dataset distillation. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Cited by: Introduction. H. Liu, Y. Li, T. Xing, P. Wang, V. Dalal, L. Li, J. He, and H. Wang (2025) Dataset distillation via the Wasserstein metric. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), p. 1205â1215. Cited by: Image Dataset Distillation. P. Liu and J. Du (2025) The evolution of dataset distillation: toward scalable and generalizable solutions. arXiv preprint arXiv:2502.05673. Cited by: Introduction. H. Ma, G. Li, S. Wang, D. Zhou, B. Sun, T. Ogawa, M. Haseyama, and Z. Wang (2026) FD2: a dedicated framework for fine-grained dataset distillation. In Proceedings of the European Conference on Computer Vision (ECCV), Cited by: Image Dataset Distillation. Z. Ma, A. Cao, F. Yang, Y. Gong, and X. Wei (2025) Curriculum dataset distillation. IEEE Transactions on Image Processing. Cited by: Image Dataset Distillation. B. Ni, H. Peng, M. Chen, S. Zhang, G. Meng, J. Fu, S. Xiang, and H. Ling (2022) Expanding language-image pretrained models for general video recognition. In Proceedings of the European Conference on Computer Vision (ECCV), p. 1â18. Cited by: Introduction. B. Peng, G. Li, P. Liu, T. Ogawa, and M. Haseyama (2026) Closed-form linear-probe dataset distillation for pre-trained vision models. arXiv preprint arXiv:2605.07194. Cited by: Image Dataset Distillation. F. Ran, X. Pu, B. Liu, X. Bi, and B. Xiao (2026) TGDD: trajectory guided dataset distillation with balanced distribution. In Proceedings of the AAAI Conference on Artificial Intelligence (AAAI), Cited by: Introduction. A. Sajedi, S. Khaki, E. Amjadian, L. Z. Liu, Y. A. Lawryshyn, and K. N. Plataniotis (2023) DataDAM: efficient dataset distillation with attention matching. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), p. 17097â17107. Cited by: Introduction. A. Sajedi, S. Khaki, L. Z. Liu, E. Amjadian, Y. A. Lawryshyn, and K. N. Plataniotis (2024) Data-to-model distillation: a data-efficient learning framework. In Proceedings of the European Conference on Computer Vision (ECCV), p. 438â457. Cited by: Introduction. O. Sener and S. Savarese (2017) Active learning for convolutional neural networks: a core-set approach. arXiv preprint arXiv:1708.00489. Cited by: Experimental Setup. K. Soomro, A. R. Zamir, and M. Shah (2012) UCF101: a dataset of 101 human action classes from videos in the wild. arXiv preprint arXiv:1212.0402. Cited by: Experimental Setup. B. Sorscher, R. Geirhos, S. Shekhar, S. Ganguli, and A. Morcos (2022) Beyond neural scaling laws: beating power law scaling via data pruning. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), p. 19523â19536. Cited by: Introduction. D. Su, J. Hou, G. Li, R. Togo, R. Song, T. Ogawa, and M. Haseyama (2024) Generative dataset distillation based on diffusion model. In Proceedings of the European Conference on Computer Vision (ECCV) Workshops, Cited by: Image Dataset Distillation. P. Sun, B. Shi, D. Yu, and T. Lin (2024) On the diversity and realism of distilled dataset: an efficient dataset distillation paradigm. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 9390â9399. Cited by: Introduction. Y. Tang, J. Bi, S. Xu, L. Song, S. Liang, T. Wang, D. Zhang, J. An, J. Lin, R. Zhu, et al. (2025) Video understanding with large language models: a survey. IEEE Transactions on Circuits and Systems for Video Technology. Cited by: Introduction. Z. Tong, Y. Song, J. Wang, and L. Wang (2022) VideoMAE: masked autoencoders are data-efficient learners for self-supervised video pre-training. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), p. 10078â10093. Cited by: Experimental Setup. K. Wang, Z. Li, Z. Cheng, S. Khaki, A. Sajedi, R. Vedantam, K. N. Plataniotis, A. Hauptmann, and Y. You (2025a) Emphasizing discriminative features for dataset distillation in complex scenarios. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Cited by: Introduction. K. Wang, B. Zhao, X. Peng, Z. Zhu, S. Yang, S. Wang, G. Huang, H. Bilen, X. Wang, and Y. You (2022) CAFE: learning to condense dataset by aligning features. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 12196â12205. Cited by: Introduction, Image Dataset Distillation. S. Wang, Y. Yang, Z. Liu, C. Sun, X. Hu, C. He, and L. Zhang (2025b) Dataset distillation with neural characteristic function: a minimax perspective. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 25570â25580. Cited by: Image Dataset Distillation. T. Wang, J. Zhu, A. Torralba, and A. A. Efros (2018) Dataset distillation. arXiv preprint arXiv:1811.10959. Cited by: Introduction. Y. Wang, K. Li, X. Li, J. Yu, Y. He, G. Chen, B. Pei, R. Zheng, Z. Wang, Y. Shi, et al. (2024a) InternVideo2: scaling foundation models for multimodal video understanding. In Proceedings of the European Conference on Computer Vision (ECCV), p. 396â416. Cited by: Introduction. Z. Wang, Y. Xu, C. Lu, and Y. Li (2024b) Dancing with still images: video distillation via static-dynamic disentanglement. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 6296â6304. Cited by: Introduction, Video Dataset Distillation, Experimental Setup, Experimental Setup. M. Welling (2009) Herding dynamical weights to learn. In Proceedings of the International Conference on Machine Learning (ICML), p. 1121â1128. Cited by: Experimental Setup. H. Wu, D. Su, J. Hou, and G. Li (2025) Dataset condensation with color compensation. Transactions on Machine Learning Research. Cited by: Image Dataset Distillation. L. Ye, S. M. Hamidi, G. Li, T. Ogawa, M. Haseyama, and K. N. Plataniotis (2025) Information-guided diffusion sampling for dataset distillation. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS) Workshops, Cited by: Image Dataset Distillation. R. Yu, S. Liu, and X. Wang (2023) Dataset distillation: a comprehensive review. IEEE Transactions on Pattern Analysis and Machine Intelligence 46 (1), p. 150â170. Cited by: Introduction, Introduction. B. Zhao and H. Bilen (2021a) Dataset condensation with differentiable siamese augmentation. In Proceedings of the International Conference on Machine Learning (ICML), p. 12674â12685. Cited by: Introduction. B. Zhao and H. Bilen (2021b) Dataset condensation with gradient matching. In Proceedings of the International Conference on Learning Representations (ICLR), Cited by: Introduction, Image Dataset Distillation. B. Zhao and H. Bilen (2023) Dataset condensation with distribution matching. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (WACV), p. 6514â6523. Cited by: Introduction, Experimental Setup. W. Zhong, H. Tang, Q. Zheng, M. Xu, Y. Hu, and W. Guan (2025) Towards stable and storage-efficient dataset distillation: matching convexified trajectory. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), p. 25581â25589. Cited by: Image Dataset Distillation. Y. Zhou, E. Nezhadarya, and J. Ba (2022) Dataset distillation using neural feature regression. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), p. 9813â9827. Cited by: Image Dataset Distillation, Experimental Setup. Y. Zhu, X. Li, C. Liu, M. Zolfaghari, Y. Xiong, C. Wu, Z. Zhang, J. Tighe, R. Manmatha, and M. Li (2020) A comprehensive study of deep video action recognition. arXiv preprint arXiv:2012.06567. Cited by: Introduction. Y. Zou, G. Li, D. Su, Z. Wang, J. Yu, and C. Zhang (2025) Dataset distillation via vision-language category prototype. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Cited by: Image Dataset Distillation. Training Details We use dataset-specific VideoMAE-Base teachers for candidate scoring, feature extraction, and soft-label generation. ProtoBlend samples five temporal candidates from each source video and selects the candidate with the lowest target-class cross-entropy. Class-wise K-means is then applied to the teacher embeddings to allocate the VPC budget and select prototypeâanchor pairs. Setting Value Frames per clip 16 Temporal stride 4 Temporal candidates per video (R) 5 Teacher inference batch size 4 Clustering method K-means Blend coefficient α 0.6 Soft-label weight λ 0.6 Temperature Ï 4 Student model ConvNet3D Student training epochs 500 Evaluation repeats 3 Student batch size 64 Student learning rate 0.001 Student optimizer SGD Data augmentation random horizontal flip Table 6: Default implementation settings used in our experiments. The distilled videos are exported at 256Ă256256Ă 256 resolution and resized to 112Ă112112Ă 112 during student training. Unless otherwise specified, all reported results are averaged over three independent student-training runs. Effect of PrototypeâAnchor Pairing We further investigate the effect of prototypeâanchor pairing on MiniUCF. To ensure a fair comparison, all variants use the same budget, blend coefficient, teacher, and student-training protocol; only the anchor selection strategy is changed. Pairing Strategy VPC=1 VPC=5 Prototype only 17.9±0.917.9±0.9 33.8±0.333.8±0.3 Random same-class pair 13.5±0.513.5±0.5 30.3±0.330.3±0.3 In-cluster pair (Ours) 20.9±0.120.9 0.1 34.8±0.934.8 0.9 Table 7: Effect of prototypeâanchor pairing strategies on MiniUCF. As shown in Table 7, random same-class pairing substantially degrades performance, reducing accuracy from 17.9% to 13.5% at VPC=1 and from 33.8% to 30.3% at VPC=5. This result indicates that sharing the same class label alone does not guarantee compatibility between two video clips. Randomly paired clips may differ considerably in viewpoint, appearance, spatial alignment, or motion pattern, making their pixel-level interpolation less coherent. In contrast, the proposed in-cluster pairing achieves 20.9% and 34.8% accuracy, outperforming random same-class pairing by 7.4 and 4.5 percentage points, respectively. It also improves over the prototype-only variant by 3.0 percentage points at VPC=1 and 1.0 percentage point at VPC=5. These results demonstrate that the gains do not arise from arbitrary sample mixing. Limitations ProtoBlend depends on the quality of the dataset-specific teacher, and errors in teacher scoring or feature extraction may affect the resulting distilled set. Moreover, frame-aligned pixel interpolation can produce ghosting when paired clips differ in viewpoint, spatial alignment, or motion phase, especially for motion-centric actions. Motion-aware pairing and alignment-aware blending are promising directions for future work. Qualitative Results Figures 6â 9 present additional examples on all four datasets. For each dataset, four representative classes are selected. Each class is shown using three consecutive rows corresponding to the prototype, in-cluster anchor, and blended video, with eight temporally ordered frames per row. The examples show that the prototype and anchor generally share the same action semantics while differing in appearance, viewpoint, background, or motion progression. The blended videos preserve the dominant content of the prototype while incorporating information from the anchor. Figure 6: Qualitative examples on MiniUCF. For each class, three consecutive rows show the prototype, in-cluster anchor, and blended video. Figure 7: Qualitative examples on HMDB51. For each class, three consecutive rows show the prototype, in-cluster anchor, and blended video. Figure 8: Qualitative examples on SSv2. For each class, three consecutive rows show the prototype, in-cluster anchor, and blended video. Figure 9: Qualitative examples on Kinetics-400. For each class, three consecutive rows show the prototype, in-cluster anchor, and blended video.