Skip to content
AI.info

Research

Temporal Slowness in Central Vision Drives Semantic Object Learning

Temporal Slowness in Central Vision Drives Semantic Object Learning Overview Research area: Self-supervised learning (SSL) for computer vision, computational neuroscience of visual development, egocen

arXiv
2602.04462
Published
2026-02-04
Authors
Timothy Schaumlöffel, Arthur Aubret, Gemma Roig, Jochen Triesch

AI summary

Temporal Slowness in Central Vision Drives Semantic Object Learning

Overview

Research area: Self-supervised learning (SSL) for computer vision, computational neuroscience of visual development, egocentric video understanding.

Technical level: Intermediate. The paper assumes familiarity with contrastive SSL, linear probing, and vision backbones, but its central ideas (gaze-centered cropping, temporal slowness) are conceptually accessible.

Scope: A single-sentence summary: the paper tests whether training a self-supervised model on gaze-centered crops of egocentric video, with representations forced to change slowly over time, produces more human-like semantic object representations than training on full frames.

What This Paper Is About

Humans learn rich semantic object representations from their own everyday visual experience with almost no supervision, while machine learning models still lag far behind when trained on comparable data. The authors argue that current models ignore two properties of biological vision: the retina only samples the center of the field of view at high resolution, and the brain assigns similar representations to visual inputs that occur close together in time. The paper's goal is to test whether combining these two properties — a gaze-centered "central vision" focus and a temporal slowness learning objective — yields visual representations that capture more of the semantic structure that humans exhibit.

Key Contributions

  1. A large-scale simulation of human-like visual experience. The authors use the Ego4D dataset and a state-of-the-art human gaze prediction model (GLC, Lai et al., 2024) to build a training stream of gaze-centered image crops, producing a final preprocessed dataset of 64,380,024 images corresponding to roughly five months of visual experience.

  2. A bio-inspired self-supervised training pipeline. They adapt MoCoV3 into a time-augmented variant that aligns representations of gaze-centered crops drawn from frames close in time, using the InfoNCE loss with a temporal window of ΔT = 3 s for ResNet50 and ΔT = 1 s for ViT-B/16.

  3. A multi-facet semantic evaluation. They probe frozen representations with linear classifiers across category recognition, fine-grained (subordinate) recognition, instance recognition, and scene recognition, and separately measure alignment with object co-occurrence structure using Centered Kernel Alignment (CKA) against GloVe embeddings built from COCO, ADE20K, and Visual Genome co-occurrence statistics.

  4. An analysis decomposing which biological ingredient matters. Through crop-size sweeps, gaze-versus-center-versus-saliency comparisons, and fixation/saccade segmentation, they isolate the contribution of central vision, eye movements, and temporal slowness respectively.

Main Findings

  • Central-vision training improves object recognition but hurts scene recognition. With ResNet50, the bio-inspired model beats the full-frame "Frames Learning" baseline on the average of category (46.94 vs. 45.65), fine-grained (38.42 vs. 33.84), and instance recognition (67.00 vs. 59.03), but is worse on Places365 scene recognition (42.95 vs. 43.02). The same pattern holds for ViT-B/16: category 48.17 vs. 47.68, fine-grained 51.58 vs. 50.56, instance 68.58 vs. 65.40, with Places365 at 39.84 vs. 44.49.

  • The gains are largest for fine-grained and instance recognition. For ResNet50, COIL100 rises from 64.53 to 80.12, DTD from 47.24 to 57.06, and Stanford Cars from 18.70 to 23.25. For ViT-B/16, COIL100 rises from 79.24 to 86.94 and DTD from 59.89 to 62.23. The paper notes a few individual cases where the baseline wins, including ImageNet-1k 10% (35.53 vs. 35.34) and ImageNet-100 (70.44 vs. 70.34) for ResNet50, FGVC-Aircraft (28.87 vs. 28.60) and Stanford Cars (33.30 vs. 33.26) for ViT-B/16, and Core50 (24.02 vs. 23.77) for ViT-B/16.

  • An intermediate crop size is optimal for object tasks. Crop sizes of N = 224 and N = 336 perform best for object-centered datasets, with N = 336 best for category and instance recognition and N = 224 better for fine-grained recognition. N = 112 gives the worst semantic recognition accuracies, while scene recognition accuracy consistently increases as the crop size is enlarged.

  • Central vision shifts reliance from background to foreground. On ImageNet-9, central-vision training also improves category recognition on normal images (80% vs. 75% on ResNet50). When background or object are removed, models trained with N ∈ {224, 336} rely relatively more on the foreground object and less on background; N = 112 shows the opposite trend.

  • Temporal slowness is critical. Comparing ΔT = 0 to ΔT = 3 s (ResNet50) and ΔT = 1 s (ViT-B/16), slowness improves representations for all semantic aspects investigated, with one stated exception: category recognition with ViT-B/16, for which the authors say the reason is currently unclear to them.

  • Human gaze locations beat center crops and classical saliency. At N = 224 and ΔT = 3 s, gaze-based cropping wins in most cases. For instance recognition the gains over center crops are +4.17% for ResNet50 and +1.14% for ViT-B/16, while saliency-based crops close only a small fraction of the gap (saliency average of 65.92 vs. gaze 67.00 and center 62.83 for ResNet50 instance recognition).

  • Suppressing saccades helps. When the fastest gaze movements are removed from training pairs (P < ∞, with P ∈ {5, 15, 30, 45}, where a fixation requires gaze velocity below P/200 px ms⁻¹), object representations improve across all object recognition abilities relative to the P = 0 baseline.

  • Slowness produces context-aware object representations. CKA alignment with COCO co-occurrence GloVe embeddings is 0.325 ± 0.004 for bio-inspired ResNet50 versus 0.315 ± 0.004 for Frames Learning, and 0.481 ± 0.004 versus 0.453 ± 0.004 for ViT-B/16. Effect sizes are Cohen's d = 2.5 for ResNet50 and d = 7.0 for ViT-B. Removing central vision raises CKA further (0.335 for ResNet50, 0.487 for ViT-B), which the authors attribute to co-occurring objects often being spatially distributed beyond the crop.

Methodology in Plain English

The authors build a stand-in for a human infant's visual diet. They take Ego4D, a dataset of head-mounted camera video the paper describes as 3,670 hours in the introduction and 3,600 hours in the method section, recorded by 931 participants from 74 worldwide locations. Only 45 hours include eye-tracking data. For everything else, they run a gaze prediction model (GLC) on short 8-frame sequences to produce saliency maps, and take the most salient pixel as the gaze location.

They then simulate the retina's high-resolution center by cropping a square region of size N × N around each gaze point — rather than feeding the whole 540 × 540 frame. Frames are extracted at roughly 5 fps, and clips of five seconds (25 frames) are cut into three sequences of 8 frames.

For learning, they use MoCoV3, a contrastive SSL method that normally makes representations invariant to color and spatial transformations. They modify it so that two images from the same video but separated by up to ΔT seconds are treated as a positive pair, pulling their representations together. The learning signal is the InfoNCE loss, and the momentum encoder is updated as an exponential moving average of the query encoder.

For evaluation, they freeze the encoder and train simple linear classifiers for 100 epochs on top of the features across many labeled datasets. To measure semantic organization, they build object co-occurrence matrices from COCO, ADE20K, and Visual Genome, train GloVe embeddings on them, map object classes to WordNet synsets, extract model features for representative THINGS images, and compute CKA similarity between model features and GloVe embeddings over 100 GloVe seeds with paired t-tests.

Why This Matters

The paper reframes the gap between human and machine visual learning as partly a data-and-mechanism problem rather than purely a scale problem. It reports that Top-5 linear probe accuracy on ImageNet-1k 1% barely exceeds 40%, versus about 90% for humans, and suggests that simply training bigger models on more frames misses something structural about how biological vision samples and organizes experience.

Real-world applications suggested by the work:

  • Embodied AI and robotics: the authors propose their approach may inspire more efficient learning strategies for embodied agents that yield more human-like semantic representations, relevant to work like VC-1, R3M, and VIP that already train on Ego4D.

  • AR/VR and smart glasses: gaze-aware cropping is directly applicable to systems with eye tracking, where processing only the foveated region could reduce computation.

  • Assistive vision systems: representations organized by object context and foreground focus could support contextual scene understanding aids.

  • Data-efficient model training: the finding that one epoch suffices (longer training yielded only about +0.5% gains at substantial computational cost) suggests practical savings when training on large redundant egocentric corpora.

Industry relevance: the results speak directly to teams building perception for wearables, robotics, and any product with access to eye-tracking signals, since gaze-centered preprocessing is cheap and the paper shows it changes what the model learns rather than just how fast it learns.

Future Directions

  • Modeling infant rather than adult experience. The authors note that visuo-motor experience during early development differs from the adult experience modeled here, and future work must test whether the conclusions carry over to infant-like visual data.

  • Learning where to look. Using a gaze estimation model sidesteps the question of how a developing visual system learns when and where to move its eyes; the authors state a complete model of visual development would need to model the learning of eye movement control strategies as well.

  • More realistic retinal processing. The current approach uses a hard square crop; the authors suggest incorporating a more gradual attenuation of sampling toward the periphery.

  • Extending the fixation/saccade mechanism. Since suppressing the learning signal during saccades improved object representations, a natural follow-up is to build this distinction more explicitly into the learning objective.

Target Audience

Researchers in self-supervised visual representation learning who care about biologically grounded training regimes; computational neuroscientists studying visual development and semantic object representation; and applied practitioners in egocentric vision, wearable computing, and embodied AI who work with gaze or head-mounted camera data and want evidence about what gaze-centered, temporally structured training actually buys them.

Authors’ abstract

Humans acquire semantic object representations from egocentric visual streams with minimal supervision, but the underlying mechanisms remain unclear. Importantly, the visual system only processes the center of its field of view with high resolution and it learns similar representations for visual inputs occurring close in time. This emphasizes slowly changing information around gaze locations. This study investigates the role of central vision and slowness learning in the formation of semantic object representations from human-like visual experience. We simulate five months of human-like visual experience using the Ego4D dataset and a state-of-the-art gaze prediction model. We extract image crops around predicted gaze locations to train a time-contrastive Self-Supervised Learning model. Our results show that exploiting temporal slowness when learning from central visual field experience improves the encoding of different facets of object semantics. Specifically, focusing on central vision strengthens the extraction of foreground object features, while considering temporal slowness, especially in conjunction with eye movements, allows the model to encode broader semantic information about objects. These findings provide new insights into the mechanisms by which humans may develop semantic object representations from natural visual experience. Our code will be made public upon acceptance. Code is available at https://github.com/t9s9/central-vision-ssl.

Read the original paper