-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathethics.html
More file actions
67 lines (49 loc) · 2.63 KB
/
Copy pathethics.html
File metadata and controls
67 lines (49 loc) · 2.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>ReForceMind</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/style.css">
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries,typography"></script>
<script src="tailwind.config.js"></script>
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect" />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Libre+Franklin:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet" />
</head>
<body
class="bg-parchment-base text-ink-black font-body-md antialiased min-h-screen flex flex-col relative overflow-x-hidden">
<div class="fixed inset-0 pointer-events-none z-0 bg-grid-pattern"></div>
<div id="navbar-placeholder"></div>
<main
class="flex-grow z-10 pt-32 px-4 md:px-grid-margin pb-section-gap max-w-4xl mx-auto w-full flex flex-col gap-12">
<header class="border-b-[0.5px] border-ink-black pb-8">
<h1 class="font-headline-display text-headline-lg-mobile md:text-headline-display text-ink-black mb-4">
Alignment Specification</h1>
<p class="font-technical-sm text-technical-sm text-on-surface-variant uppercase tracking-widest">//
constraints & friction</p>
</header>
<section class="markdown-body font-body-md">
<p>
At ReForceMind, we build safety directly into our AI models from the start.
</p>
<h2>Preventing Unintended Behaviors</h2>
<p>
We continuously verify our models during training to ensure they don't exhibit unintended behaviors.
</p>
<h2>Safe Failures</h2>
<p>
Models stop safely in unfamiliar situations instead of guessing. We also provide explainability tools so you can understand why.
</p>
<h2>Measurable Safety</h2>
<p>
We treat ethics and safety as concrete, measurable goals that our models must satisfy at every step.
</p>
</section>
</main>
<div id="footer-placeholder"></div>
<script src="js/components.js"></script>
</body>
</html>