Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
YouTube Security VideosTechLinked: Apple says no more upgradeability(25.09.2026 um 01:02 Uhr)
•
Podcasts & Audio BriefingsiPhone 18, iPhone Duo und AirPods auf dem Prüfstand | CHIP.Chat #44(25.09.2026 um 00:00 Uhr)
•
YouTube Security VideosGoogle Cloud Tech: A Developer’s Guide to Gemini 3.5 Transcribe(25.09.2026 um 01:00 Uhr)
••••••••
YouTube Security VideosTechLinked: Apple says no more upgradeability(25.09.2026 um 01:02 Uhr)
•
Podcasts & Audio BriefingsiPhone 18, iPhone Duo und AirPods auf dem Prüfstand | CHIP.Chat #44(25.09.2026 um 00:00 Uhr)
•
YouTube Security VideosGoogle Cloud Tech: A Developer’s Guide to Gemini 3.5 Transcribe(25.09.2026 um 01:00 Uhr)
••••••••
Intelligence View
⚡ tsecurity.de Intelligence

Local Perception and Recurrence: A New Path for Visual Reasoning Generalization

What Changed Traditional computer vision models process entire images in a single, global computation, a stark contrast to the human visual system's sequential, foveated glimpses. Recent research, inspired by length generalization issues…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




What Changed



Traditional computer vision models process entire images in a single, global computation, a stark contrast to the human visual system's sequential, foveated glimpses. Recent research, inspired by length generalization issues in language models, reveals that this global processing in vision models leads to a critical failure in generalizing to tasks with increased complexity or length beyond their training distribution. The core finding is that strictly local, sequential perception, when combined with recurrence, enables vision models to mitigate these generalization failures, offering a more robust approach to visual reasoning.



Historically, the assumption has been that simply making a model recurrent would address state-tracking and generalization issues. However, this work demonstrates that recurrence alone is insufficient if the model still maintains a global view of the input. The key insight is that locality – restricting the model to small, foveated glimpses – is a necessary ingredient. When a recurrent network is fed the entire image, it still learns "global shortcuts" that work within the training distribution but fail when faced with out-of-distribution complexity. This mirrors similar challenges observed in large language models (LLMs) on tasks requiring sequential state tracking.






Technical Details



The research investigates the behavior of vision models on simple visual puzzles designed to require the aggregation of local information across an image, such as reading switches, navigating, and tracking state. These puzzles were constructed to allow for testing length generalization by increasing their complexity at test time compared to training.



Experiments were conducted using state-of-the-art Vision-Language Models (VLMs) like GPT-5.4, Claude Sonnet 4.6, and Qwen. These global models performed well on short puzzles but exhibited a significant performance drop when the puzzles became longer. In contrast, a small recurrent agent, specifically one employing strictly local perception, demonstrated extrapolated performance at test time, maintaining accuracy on longer sequences.



To isolate the impact of locality, the researchers tested recurrent LSTM networks under three different visual input conditions:




  • Global: The LSTM received the entire image at once. This configuration collapsed on out-of-distribution lengths.

  • Local + Global: The LSTM received small, high-resolution crops in addition to a global view. This setup also collapsed, indicating that the presence of a global view still allowed for shortcut learning.

  • Foveated: The LSTM received only small, local glimpses, with no global view. This configuration successfully generalized out-of-distribution.



This demonstrates that locality is not merely an enhancement but a necessary condition for robust generalization in recurrent vision models. Further experiments explored the role of the backbone architecture. When local glimpses were fixed, strict recurrent networks (LSTM, GRU, RNN) generalized, while Transformers, Mamba, and xLSTM architectures still degraded. This suggests that the recipe for robust compositional generalization is a combination of both local perception and a recurrent architecture; neither is sufficient on its own, but together they are.



An important trade-off was identified: small, low-resolution glimpses promote generalization but can be slow for exploration, while big, high-resolution glimpses facilitate exploration but invite global shortcuts. The study showed that with appropriate glimpse settings, a FoveAgentLSTM could maintain accuracy at resolutions well beyond its training data, a capability global models lacked.



The research also differentiated between task types. For state-tracking tasks, recurrence and locality were beneficial. However, for pure recall tasks, global VLMs outperformed local agents, indicating that the benefits of this approach are task-dependent, mirroring similar distinctions in language models.



Finally, the findings were applied to a real-world task: reasoning over mathematical plots to find a function's roots. At the same visual-compute budget, a foveated Qwen model achieved a +29 percentage point increase in accuracy (approximately 100% improvement) over a global baseline. Uniformly increasing resolution by 10x in the global model yielded only a +3.8 percentage point improvement, reinforcing the conclusion that how visual compute is spent is more critical than the sheer amount of compute.






Benchmark Analysis




  • Synthetic Visual Puzzles (Length Generalization): State-of-the-art VLMs (GPT-5.4, Claude Sonnet 4.6, Qwen)

SOC Incident Playbook: Remote Code Execution (RCE) Defense
Syntax validiert (0 Fehler)
title: Detect Exploitation - Local Perception and Recurrence: A New Path for Visual Reasoning Generalization
id: 69a43709-c235-47e8-92f6-3b4955e20b0d
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-25
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-25"
        description = "YARA Signature for "
    strings:
        $str = "Local Perception and Recurrenc" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("Local Perception and Recurrence A New Pa")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*Local Perception and Recurrence A New Pa*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "Local Perception and Recurrence A New Pa"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc
🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Local Perception and Recurrence: A New P.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Local Perception and Recurrence: A New Path for Visual Reasoning Generalization

Thematisch verwandte Begriffe: Local, Perception, Recurrence, Path · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-87722 | Uncontrolled Resource Consumption (CWE-400 / CWE-1333) in regex search q…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...
↗ Original-Quelle