-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplainability-trace-diagram.html
More file actions
46 lines (46 loc) · 1.85 KB
/
Copy pathexplainability-trace-diagram.html
File metadata and controls
46 lines (46 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Neuron-JS explainability trace diagram</title>
<style>
:root { color-scheme: dark; }
body {
margin: 0;
padding: 32px;
background: #020617;
color: #e5e7eb;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
main { max-width: 1600px; margin: 0 auto; }
figure { margin: 0; }
.frame {
border: 1px solid #1e293b;
border-radius: 24px;
overflow: hidden;
background: #020617;
}
img { display: block; width: 100%; height: auto; }
figcaption { margin-top: 16px; color: #94a3b8; font-size: 16px; line-height: 1.55; }
.meta {
margin-top: 10px;
color: #64748b;
font-family: "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
font-size: 13px;
line-height: 1.5;
}
</style>
</head>
<body>
<main>
<figure>
<div class="frame">
<img src="./explainability-trace-diagram.svg" alt="Diagram showing business input and rule JSON flowing through schema validation, developer registry, deterministic Synapse evaluation, result output, match/fail explanation trace, and audit-ready decision; a dashed branch shows validation errors returning to a repair loop.">
</div>
<figcaption><strong>Caption:</strong> Neuron-JS turns serializable business-rule JSON into deterministic decisions by validating inputs, constraining execution through a developer-owned registry, and exposing a match/fail explanation trace for review.</figcaption>
<p class="meta"><strong>Source note:</strong> docs/schemas-validation-explainability.md and docs/benchmarks/visual-proof-system.md. No benchmark or performance claims are made.</p>
</figure>
</main>
</body>
</html>