Papers for

machine learning platform teams

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Vision language encoders improve with embedding space perturbations

Isotropic Embedding Perturbations for Robust Vision Language Encoders

Abstract: Data augmentation is fundamental to training modern deep vision and multimodal models. While individual methods, such as RandAug, CutMix, Mixup, RandErase, and DropPath, offer strong regularization effects, their combined use has saturated in performance due to overlapping functionalities, and aggressive pixel-level manipulations may disrupt delicate cross-modal alignment. This saturation motivates the search for a new augmentation axis within the embedding space rather than the input space. We introduce Aether, a simple plug-in method that applies diffusion-style random perturbations in the embedding space via controlled alpha-mixing, specifically designed to provide isotropic regularization that remains semantically consistent. Inspired by feature-space perturbations in language models and image degradation in generative pretraining, Aether induces mild yet effective perturbations that smooth the representations without compromising the fine-grained structural information required for strong vision-language encoders. Across diverse architectures and across multiple recognition tasks, Aether delivers consistent gains over the advanced recipe combining CutMix, Mixup, DropPath, and RandAug---a level of improvement rarely observed with modern augmentation alternatives. Notably, Aether demonstrates superior effectiveness in multi-modal alignment, succeeding where traditional pixel-space augmentations fail by providing a stable, isotropic regularization signal that respects the integrity of the high-dimensional feature space.

Wed 9 SeptComputer Vision and Pattern Recognition
The gist
Training computer models that understand images and words together usually involves changing the image data in different ways to help the model learn better. However, these usual image changes have started to hit performance limits and can mess up the connection between images and words. The authors of this paper introduced a new way to add small, controlled changes not to the image itself but to the model's internal understanding space. Their method, called Aether, gently mixes in random noise in a balanced way, helping the model get better without losing important details. This approach consistently improved performance across different tasks and models, especially in connecting images and words more reliably than older methods.
Open 2609.10292v1

Dataset recommender system helps choose evaluation data for recommender algorithms

FINALLY: A Dataset Recommender System for Recommender-Systems Research

Abstract: Dataset selection shapes the empirical conditions under which recommender-system algorithms are evaluated, yet existing tools provide limited support for constructing complete dataset sets that jointly satisfy experimental constraints and set-level selection objectives. To address this problem, I developed FINALLY, a web-based dataset recommender for constructing configurable dataset sets for offline recommender-systems evaluations. FINALLY combines required datasets, candidate-pool restrictions, metadata filters, configurable target-set sizes, Random selection, and diverse and non-diverse strategies based on adapted Effective Covariance and Convex Hull objectives. I evaluated FINALLY through 420 recommendation runs across ten systematically varied configurations. All evaluated dataset sets satisfied the applicable target-size, duplicate-avoidance, snapshot-membership, required-dataset, and metadata-filter requirements. All 40 deterministic strategy--configuration combinations were reproducible. Both the Effective-Covariance-based and Convex-Hull-based strategies produced the expected diverse-versus-non-diverse score ordering in all ten configurations. Under their corresponding objectives, the diverse strategies produced scores above all 30 configuration-specific Random results, whereas the non-diverse strategies produced scores below all 30 Random results. These results establish technical consistency for the evaluated FINALLY workflow and show that the implemented strategies follow their intended optimization directions within the investigated configuration space. They do not establish the scientific suitability, global optimality, or practical superiority of the generated selections.

Tue 8 SeptInformation Retrieval
The gist
Choosing the right datasets to test recommendation algorithms is important but challenging. The authors created FINALLY, a web tool that helps pick groups of datasets meeting specific rules and goals. They tested it thoroughly and found the tool consistently selects datasets as intended, including diverse and non-diverse groups. However, they note this does not prove which selections are best for all uses. The tool helps system builders set up fair and varied testing scenarios for recommendation algorithms.
Open 2609.08941v1

Distributed backdoor attacks weaken federated learning defenses

Fine-grained Distributed Backdoor Attacks in Federated Learning

Abstract: Federated learning, as a privacy-preserving distributed machine learning paradigm, faces significant threats from backdoor attacks. Compared to centralized attacks, distributed backdoor attacks are more harmful but require more poisoned samples to compensate for the loss of trigger strength due to decomposition. Fixed trigger patterns are also easily detected by robust aggregation algorithms, increasing the risk of attack exposure. To address these challenges, we propose a fine-grained distributed backdoor attack framework (FDBA). This framework uses dynamic trigger generation and embedding vector optimization to perform attacks with fewer poisoned samples. First, we design a dynamic trigger generation method based on image edge structures using the Canny algorithm to extract edge features, which are then injected with Laplacian noise. RGB channel decomposition is applied for covert adaptation of the distributed trigger, reducing detection chances. Second, we introduce an embedding vector contrastive learning strategy that forces poisoned samples to approach the target class center in the feature space, enhancing attack effectiveness. On CIFAR-10, piecewise-linear estimates for target ASRs between 70\% and 90\% show that FDBA reduces the required poisoning ratio by 37.4\%--48.4\% compared with DBA. In non-independent and identically distributed (Non-IID) scenarios, FDBA retains 84.7\% of its IID attack performance under extreme heterogeneity, whereas DBA drops to 73.5\%, and the framework successfully bypasses mainstream defense mechanisms. This study offers new insights into federated learning security and emphasizes the potential threats and defense challenges posed by fine-grained distributed attacks.

Mon 7 SeptMachine Learning
The gist
Federated learning allows many devices to train a shared AI without sharing their data, but this system can be tricked by attackers who insert hidden 'backdoors' that make the AI behave badly. The paper presents a new attack method that uses dynamic, hard-to-detect triggers based on image edges and noise, reducing the number of fake samples needed to succeed. This attack remains effective even when data across devices is very different and can bypass common defense techniques. The authors show their approach is more efficient and robust than previous ones.
Open 2609.07147v1

Vision language models learn better by linking images and text transformations

Re-calibrated Contrastive Loss for Transformation-Aware Prompt Conditioning in Vision-Language Models

Abstract: Ensuring effective transfer learning for vision-language models without compromising their generalization performance is crucial. However, many existing methods overlook data characteristics and simply reuse the training strategies adopted during pre-training. Specifically, they treat same-class samples as distinct instances and transform images independently of their paired text prompts, which makes model learning more difficult. We address these limitations through transformation-aware prompt conditioning and a re-calibrated contrastive loss. Fixed text descriptors identify the transformations applied to paired images, providing transformation-level consistency without altering class semantics. This design aligns the image and text branches at the transformation level, enabling richer representations while preserving the models' ability to generalize. In addition, our loss function mitigates positive-gradient dilution in soft-target cross-entropy when each anchor has multiple valid positives. During transfer, our approach treats same-class samples as positives rather than distinct instances, enabling the model to learn domain-specific features more effectively. Experiments across distribution shift, transfer learning, and few-shot settings demonstrate consistent improvements over existing approaches. Source code for our method is available at https://github.com/SoongE/ReCalCon.

Mon 7 SeptComputer Vision and Pattern RecognitionArtificial Intelligence
The gist
Vision-language models often struggle when trained on new tasks because they treat different transformed images as unrelated, even if they belong to the same class. The authors designed a way to let these models understand image changes by including matching text descriptions of the transformations, helping the models learn features more effectively. Their new method also adjusts the way similarities between images and texts are measured to avoid confusing signals during training. This improves how well the models work across different tasks such as transfer learning and few-shot learning.
Open 2609.06967v1