Radial Basis Function Networks as Projection Heads in Self-Supervised Learning

TL;DR

Replace MLP with Radial Basis Function Networks to enhance representation quality in self-supervised learning.

cs.CV 🟡 Intermediate 2026-06-20 6 views
Andreas Schliebitz Heiko Tapken Martin Atzmueller
self-supervised learning radial basis function projection head representation learning label-free evaluation

Key Findings

Methodology

The paper proposes replacing traditional MLP projection heads in self-supervised learning with Radial Basis Function Networks (RBFN). RBFNs utilize interpretable center and shape parameters to assess representation quality without labeled data. A new quality metric, Scale-Normalized Separation (SNS), is introduced to measure representation quality.

Key Results

  • RBFN projection heads perform comparably to MLP heads across five SSL architectures (e.g., MoCo, SimCLR) and sometimes outperform them.
  • The SNS metric shows strong correlation with traditional logistic regression evaluation metrics, indicating RBFN heads as reliable proxies for backbone representation quality.
  • Experiments on four image classification datasets validate the effectiveness of RBFNs, especially in label-free scenarios.

Significance

This study reduces the dependence on labeled data in self-supervised learning by introducing interpretable RBFN projection heads, lowering computational costs. The SNS metric provides a new label-free method for evaluating representation quality, potentially impacting future representation learning research.

Technical Contribution

Technically, this paper is the first to integrate RBFNs into mainstream SSL pipelines, offering a new projection head design. By introducing the SNS metric, the paper provides a new theoretical foundation for label-free evaluation and demonstrates the potential of RBFNs in representation learning.

Novelty

This is the first work to use RBFNs as projection heads in SSL and introduce the SNS metric for assessing representation quality. Compared to traditional MLP heads, this method offers greater interpretability and evaluation efficiency.

Limitations

  • RBFNs introduce additional hyperparameters that may require extra tuning.
  • Performance of RBFNs may not surpass MLPs on certain datasets.

Future Work

Future research could explore the application of RBFNs in other SSL architectures and further optimize the computation of the SNS metric.

AI Executive Summary

Self-supervised learning typically relies on a backbone encoder followed by a small multilayer perceptron (MLP) projection head, which is conventionally discarded after training. This paper proposes replacing the MLP head with a Radial Basis Function Network (RBFN), which uses interpretable center and shape parameters to assess representation quality. A new label-free quality metric, Scale-Normalized Separation (SNS), is introduced to measure representation quality. Experiments show that RBFN projection heads perform comparably to MLP heads across five SSL architectures, with the SNS metric showing strong correlation with traditional logistic regression evaluation metrics. This study provides a new label-free evaluation method for self-supervised learning, potentially impacting future research in representation learning. While RBFNs introduce additional hyperparameters, their potential in representation learning warrants further exploration.

Deep Analysis

Background

Self-supervised learning has seen significant advancements, particularly in image classification tasks. Traditional methods often rely on a backbone encoder and a small MLP projection head, which is discarded after training. While effective in improving representation quality, this approach's reliance on labeled data increases computational costs.

Core Problem

Traditional SSL methods discard the projection head after training, wasting computational resources and requiring linear probing to evaluate backbone representation quality. This approach relies on labeled data, increasing computational costs.

Innovation

The paper proposes replacing traditional MLP projection heads with Radial Basis Function Networks (RBFN). RBFNs use interpretable center and shape parameters to assess representation quality without labeled data. A new quality metric, Scale-Normalized Separation (SNS), is introduced to measure representation quality.

Methodology

  • �� Replace MLP heads with RBFN for interpretable quality assessment.
  • �� Introduce SNS metric to evaluate representation quality using RBFN parameters.
  • �� Validate RBFN effectiveness across five SSL architectures.

Experiments

Experiments were conducted on five SSL architectures (e.g., MoCo, SimCLR) and four image classification datasets. RBFNs replaced MLP heads, and the SNS metric was introduced for evaluation. Results show RBFNs perform well without labeled data.

Results

Results show RBFN projection heads perform comparably to MLP heads across five SSL architectures, with the SNS metric showing strong correlation with traditional logistic regression evaluation metrics.

Applications

RBFN projection heads can reduce the dependence on labeled data in SSL, lowering computational costs. The SNS metric provides a new label-free method for evaluating representation quality.

Limitations & Outlook

RBFNs introduce additional hyperparameters that may require extra tuning. Performance of RBFNs may not surpass MLPs on certain datasets. Future research could explore RBFNs in other SSL architectures.

Plain Language Accessible to non-experts

Imagine you're cooking in a kitchen. Traditional self-supervised learning is like following a complex recipe that requires many steps and ingredients. Radial Basis Function Networks (RBFN) are like a magic seasoning packet that lets you quickly assess the dish's flavor without changing the main ingredients. By observing the seasoning packet's components, you can judge the dish's quality without trying every ingredient. This method saves time and reduces reliance on complex steps.

ELI14 Explained like you're 14

Hey there! Imagine you're playing a game with lots of levels, and each level has a big boss. Traditional methods are like having to restart every time you beat a boss. Now, Radial Basis Function Networks (RBFN) are like a superpower that lets you quickly judge your performance in the game without restarting. You can see how well you're doing by looking at this superpower's attributes, without having to fight every boss again. Isn't that cool?

Glossary

Radial Basis Function Network (RBFN)

A neural network using radial basis functions as activation, known for interpretability.

Used to replace traditional MLP projection heads.

Scale-Normalized Separation (SNS)

A label-free quality evaluation metric calculated from RBFN's center and shape parameters.

Used to assess representation quality.

Self-Supervised Learning (SSL)

A learning method that does not require labeled data, training through inherent data structure.

Used for image classification tasks.

Multilayer Perceptron (MLP)

A neural network structure often used for projection heads, typically discarded after training.

Traditional projection head design.

Logistic Regression (LogReg)

A linear classifier used to evaluate model representation quality.

Used for traditional representation quality evaluation.

Open Questions Unanswered questions from this research

  • 1 How to further optimize RBFN hyperparameters to improve performance across different datasets.
  • 2 Applicability of the SNS metric in other types of self-supervised learning tasks.

Applications

Immediate Applications

Label-Free Evaluation

Researchers can use RBFNs and the SNS metric to assess model representation quality without labeled data.

Long-term Vision

Self-Supervised Learning Optimization

Further optimization of RBFNs and the SNS metric could significantly enhance SSL efficiency and effectiveness.

Abstract

Self-supervised learning (SSL) typically relies on a backbone encoder followed by a small multilayer perceptron (MLP) projection head, which is conventionally discarded after training, while backbone quality is assessed via costly linear probing on labeled data. We argue that this approach including discarding the projector is rather computationally wasteful. Instead, we propose replacing the MLP head with a radial basis function network (RBFN), whose interpretable center and shape parameters can be exploited to judge representation quality without labels or a separate classifier. To this end, we introduce Scale-Normalized Separation (SNS), a novel label-free quality metric derived solely from the kernel centers and shapes learned during training. Across five canonical SSL architectures (MoCo, SimCLR, BYOL, SwAV and SimSiam) and four image classification datasets, we show that RBFN projection heads are competitive drop-in replacements for standard MLP projectors. We recommend constructing them with three RBF layers activated by the Gaussian radial basis function. Moreover, SNS exhibits strong to very strong positive correlation with established logistic regression metrics, demonstrating that a trained RBFN projector can act as a reliable proxy for backbone representation quality. We additionally publish a novel PyTorch compatible image classification dataset based on Google's Open Images V7 to facilitate reproducible research into representation learning.

cs.CV cs.LG