Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungI wanted the diff, not a screenshot: a small URL-change API(24.09.2026 um 06:05 Uhr)
Sichere ProgrammierungFreeze Object Identity Before One Mutator Extract(24.09.2026 um 06:06 Uhr)
Sichere ProgrammierungRun an n8n workflow when a page's text changes(24.09.2026 um 06:12 Uhr)
Sichere ProgrammierungThe Spreadsheet That Runs Your Company (And Why That Should Worry You)(24.09.2026 um 06:12 Uhr)
Sichere ProgrammierungArchitecting an Enterprise Network on AWS Cloud WAN(24.09.2026 um 06:31 Uhr)
Sichere ProgrammierungI wanted the diff, not a screenshot: a small URL-change API(24.09.2026 um 06:05 Uhr)
Sichere ProgrammierungFreeze Object Identity Before One Mutator Extract(24.09.2026 um 06:06 Uhr)
Sichere ProgrammierungRun an n8n workflow when a page's text changes(24.09.2026 um 06:12 Uhr)
Sichere ProgrammierungThe Spreadsheet That Runs Your Company (And Why That Should Worry You)(24.09.2026 um 06:12 Uhr)
Sichere ProgrammierungArchitecting an Enterprise Network on AWS Cloud WAN(24.09.2026 um 06:31 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Learning Fuzzy Logic: Automatic Rule Discovery Through Differentiable Circuits

Fuzzy logic is good for reasoning under uncertainty, but it has a bottleneck: you need domain experts to define the rules. What if fuzzy systems could learn their own rules from data? The Traditional Fuzzy Logic…

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

Fuzzy logic is good for reasoning under uncertainty, but it has a bottleneck: you need domain experts to define the rules.



What if fuzzy systems could learn their own rules from data?






The Traditional Fuzzy Logic Bottleneck



Classic fuzzy systems require:





  1. Membership functions: "How hot is hot?"


  2. Inference rules: "If temp is hot AND humidity is high THEN..."


  3. Defuzzification: Converting fuzzy outputs to crisp values



This means:




  • Domain expertise (expensive)

  • Trial and error (time-consuming)

  • Manual tuning (brittle)



In practice, fuzzy logic is often abandoned in favor of neural networks. You lose interpretability, but at least you don't need a domain expert hand-crafting rules.






The Idea: Fuzzy Soft Circuits



We present a framework that:




  • Represents fuzzy systems as differentiable computational graphs


  • Learns membership functions and rules via gradient descent

  • Keeps the interpretability of traditional fuzzy systems






Key Innovation: Soft Gates



Traditional circuits use hard logic gates (AND, OR, NOT). We use soft, differentiable approximations:




# Traditional (non-differentiable)
AND(a, b) = min(a, b)
OR(a, b) = max(a, b)

# Soft (differentiable)
soft_AND(a, b) = a * b
soft_OR(a, b) = a + b - a*b
soft_NOT(a) = 1 - a






These are differentiable but approximate the same semantics. That means backpropagation works.






The Architecture






Input Features
|
Fuzzification Layer (learnable membership functions)
|
Soft Circuit Layer (learnable fuzzy rules)
|
Aggregation Layer (learnable combination)
|
Defuzzification Layer
|
Output






Every component is differentiable. Train end-to-end with backpropagation.






Automatic Rule Discovery



The system discovers rules like:




IF temperature is {learned_high} AND humidity is {learned_humid}
THEN discomfort is {learned_uncomfortable}






Where the membership functions {learned_high}, {learned_humid}, etc. are learned from data, not hand-crafted.






Why Not Just Use a Neural Network?



Fair question. Fuzzy soft circuits give you things neural networks don't:





  • Interpretability: You can extract and read the learned rules


  • Sample efficiency: The structured inductive bias helps with limited data


  • Domain integration: You can incorporate expert knowledge as priors


  • Uncertainty quantification: Fuzzy truth values are meaningful



Neural networks give you a black box. You need large datasets. Incorporating domain knowledge is hard. Uncertainty requires special techniques.



If you need both learning and interpretability, fuzzy soft circuits sit in a useful spot.






Training Process






# Initialize random fuzzy circuit
circuit = FuzzySoftCircuit(
n_inputs=5,
n_rules=10,
n_outputs=1
)

# Train with gradient descent
for epoch in epochs:
# Forward pass
predictions = circuit(inputs)

# Compute loss
loss = mse(predictions, targets)

# Backward pass (automatic differentiation)
loss.backward()

# Update membership functions and rules
optimizer.step()

# Extract learned rules
rules = circuit.extract_rules()
print(rules) # Human-readable fuzzy rules!









Experimental Results



On benchmark datasets:





  • HVAC control: 15% energy reduction vs. hand-crafted rules


  • Medical diagnosis: 92% accuracy with only 500 training examples


  • Industrial control: Matched expert-designed systems after 1 hour of training






Rule Visualization



The learned membership functions can be plotted:




Temperature:
Cold: [0C --________-- 15C ..................... 40C]
Warm: [0C ........ 15C --________-- 25C ........ 40C]
Hot: [0C ........................ 25C --________-- 40C]






You can see and understand what the system learned. That's the whole point.






Applications



This framework fits anywhere you need both learning and interpretability:





  • Control systems (HVAC, industrial automation)


  • Medical diagnosis (interpretable predictions)


  • Financial modeling (explainable risk assessment)


  • Robotics (learning from demonstration with transparency)






Future Directions




  • Multi-objective optimization (accuracy + interpretability + sparsity)

  • Incorporating temporal/sequential fuzzy logic

  • Transfer learning between fuzzy systems

  • Formal verification of learned rules






Read the Full Paper



For mathematical foundations, training algorithms, and comprehensive experiments:




View Paper




Contents:




  • Soft gate definitions and properties

  • Gradient flow analysis

  • Training algorithms and optimization techniques

  • Benchmarks on 10+ datasets

  • Comparison with neural networks and hand-crafted fuzzy systems

  • Rule extraction and interpretation methods

  • Ablation studies on circuit architecture

SOC Incident Playbook: Vulnerability Remediation & Verification
title: Detect Exploitation - Learning Fuzzy Logic: Automatic Rule Discovery Through Differentiable Circuits
id: 458b3886-0e83-4dee-8acd-c6138f36dfc8
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
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
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "Learning Fuzzy Logic: Automati" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Learning Fuzzy Logic: Automatic Rule Dis.... 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 Learning Fuzzy Logic: Automatic Rule Discovery Through Differentiable Circuits

Thematisch verwandte Begriffe: Learning, Fuzzy, Logic, Automatic · 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-96676 | A vulnerability was identified in Fast FAC1900R 20190827_2.0.2. The impa…
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 TTP ⏱️ 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