Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
IT Security Toolszitadel v4.18.0(22.09.2026 um 11:25 Uhr)
IT Security ToolsPodroid v1.2.9(22.09.2026 um 12:05 Uhr)
IT Security NachrichtenHow the CIA captured Carlos the Jackal(22.09.2026 um 13:00 Uhr)
Sicherheitslücken (CVE)Aikido Security Unveils Altar-1 Open-Weight AI for Cybersecurity Defense(22.09.2026 um 12:50 Uhr)
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-22 13h : 23 posts(22.09.2026 um 13:00 Uhr)
IT Security NachrichtenHow a Managed SOC works: What happens when a cyberattack begins?(22.09.2026 um 13:02 Uhr)
Sicherheitslücken (CVE)[UPDATE] [mittel] libxml2: Schwachstelle ermöglicht Denial of Service(22.09.2026 um 12:47 Uhr)
IT Security Toolszitadel v4.18.0(22.09.2026 um 11:25 Uhr)
IT Security ToolsPodroid v1.2.9(22.09.2026 um 12:05 Uhr)
IT Security NachrichtenHow the CIA captured Carlos the Jackal(22.09.2026 um 13:00 Uhr)
Sicherheitslücken (CVE)Aikido Security Unveils Altar-1 Open-Weight AI for Cybersecurity Defense(22.09.2026 um 12:50 Uhr)
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-22 13h : 23 posts(22.09.2026 um 13:00 Uhr)
IT Security NachrichtenHow a Managed SOC works: What happens when a cyberattack begins?(22.09.2026 um 13:02 Uhr)
Sicherheitslücken (CVE)[UPDATE] [mittel] libxml2: Schwachstelle ermöglicht Denial of Service(22.09.2026 um 12:47 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Lambda : History-Aware Bayesian Jump Event Detector for Time Series (with Dual EYE Mode)

Introduction: Why a New Perspective? Have you ever felt that traditional time-series anomaly detection methods just don't cut it—especially for systems with sudden shocks, structural breaks, or rare but critical “jumps”? Most existing met…

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




Introduction: Why a New Perspective?



Have you ever felt that traditional time-series anomaly detection methods just don't cut it—especially for systems with sudden shocks, structural breaks, or rare but critical “jumps”?

Most existing methods treat the world as either smooth (changepoint) or noisy (outlier)—but ignore the reality that meaningful events (jumps) drive the evolution of many systems.






Lambda³ is a new, open-source Bayesian model that tackles this head-on:




  • It doesn’t just fit a curve to data.

  • It separates “smooth trends” and “jump events” as coexisting processes.

  • It explains why and with what certainty each event happens.






Dual EYE Mode: Global and Local Event Detection



Global Eye: Detects history-wide, statistically significant jumps (ΔΛC) using global percentiles.

Captures major regime changes, like market crashes or phase transitions.



Local Eye: Detects context-sensitive, locally surprising jumps using moving-window normalization.

Ideal for catching subtle precursors or micro-anomalies—potential early warnings.






Both types are visualized:




  • Blue/Orange: Global (macro) positive/negative jumps

  • Magenta: Local (micro) contextual jumps






Why Lambda³? (What’s different?)




































Method Detects? Explains? Handles direction/magnitude? Real-world use
Changepoint Trend/process shifts No No Regime shifts
Outlier Rare/extreme points No No Data cleaning
Jump Event (Lambda³) Sudden, explainable events Yes Yes Shocks, anomalies, system events





Example Output



Image description



Image description






Code Example






# ===============================
# 2. Lambda³ Feature Extraction
# ===============================
def calc_lambda3_features_v2(data, config: L3Config):
"""
Extracts Lambda³ features:
- Global jump events (Delta_LambdaC, based on global percentile)
- Local jump events (local_jump_detect, based on local z-score style thresholding)
- Local volatility (rho_T)
- Linear time trend
"""
# --- Global (history-wide) jump detection ---
diff = np.diff(data, prepend=data[0])
threshold = np.percentile(np.abs(diff), config.delta_percentile)
delta_LambdaC_pos = (diff > threshold).astype(int)
delta_LambdaC_neg = (diff < -threshold).astype(int)

# --- Local jump detection (contextual anomaly) ---
local_std = np.array([
data[max(0, i-config.local_window):min(len(data), i+config.local_window+1)].std()
for i in range(len(data))
])
score = np.abs(diff) / (local_std + 1e-8)
local_threshold = np.percentile(score, config.local_jump_percentile)
local_jump_detect = (score > local_threshold).astype(int)

# --- Local volatility feature (rho_T) ---
rho_T = np.array([data[max(0, i-config.window):i+1].std() for i in range(len(data))])
time_trend = np.arange(len(data))

return delta_LambdaC_pos, delta_LambdaC_neg, rho_T, time_trend, local_jump_detect

# ===============================
# 3. Lambda³ Bayesian Regression Model
# ===============================
def fit_l3_bayesian_regression_v2(data, delta_LambdaC_pos, delta_LambdaC_neg, rho_T, time_trend, config: L3Config):
"""
Bayesian regression: fits model to data using Lambda³ features.
Estimates coefficients for global trend, positive jumps, negative jumps, and local volatility.
"""
with pm.Model() as model:
beta_0 = pm.Normal('beta_0', mu=0, sigma=2)
beta_time = pm.Normal('beta_time', mu=0, sigma=1)
beta_dLC_pos = pm.Normal('beta_dLC_pos', mu=0, sigma=5)
beta_dLC_neg = pm.Normal('beta_dLC_neg', mu=0, sigma=5)
beta_rhoT = pm.Normal('beta_rhoT', mu=0, sigma=3)

mu = (beta_0
+ beta_time * time_trend
+ beta_dLC_pos * delta_LambdaC_pos
+ beta_dLC_neg * delta_LambdaC_neg
+ beta_rhoT * rho_T)

sigma_obs = pm.HalfNormal('sigma_obs', sigma=1)
y_obs = pm.Normal('y_obs', mu=mu, sigma=sigma_obs, observed=data)
trace = pm.sample(draws=config.draws, tune=config.tune, target_accept=config.target_accept)
return trace










Features & Design Philosophy



Directional event detection (positive/negative)




  • Full Bayesian coefficient estimation

  • Transaction-indexed time (not just “physical” time)

  • Minimal code, MIT license

  • Made for both rapid prototyping and theory exploration






Theory & Vision



Lambda³ is more than just a detector—it’s a new way of thinking about time-series events:



Treats events as structural, meaningful “transactions” that drive system evolution



Fuses explainable AI, information theory, and statistical physics



The goal?

“Not just when or where, but why—with quantified confidence.”






Join the Community



GitHub Repo

→ Star, fork, or PR welcome!




  • Issues/Ideas/Use cases? Drop a comment or open an issue.

  • Discussion, demos, and “event detection stories” wanted!






Author & Contact



Iizumi Masamichi

Science is not property; it's a shared horizon. Let's redraw the boundaries, together.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Lambda : History-Aware Bayesian Jump Event Detector for Time Series (with Dual EYE Mode)

Thematisch verwandte Begriffe: Lambda, HistoryAware, Bayesian, Jump · 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-94493 | A vulnerability was detected in Gigatech PDV5701 1.0.31_240305_112640. T…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
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
🔖 Gespeicherte Artikel
📂 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 ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick