TinmanLabSL commited on
Commit
64754b7
Β·
verified Β·
1 Parent(s): 8e19556

Upload index.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +121 -17
index.html CHANGED
@@ -1,19 +1,123 @@
1
- <!doctype html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
 
1
  <html>
2
+ <head>
3
+ <meta charset="utf-8" />
4
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
5
+ <style>
6
+ body {
7
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
8
+ max-width: 720px;
9
+ margin: 0 auto;
10
+ padding: 2rem 1.5rem;
11
+ color: #1a1a2e;
12
+ line-height: 1.6;
13
+ background: #fff;
14
+ }
15
+ .center { text-align: center; }
16
+ h1 {
17
+ font-size: 2rem;
18
+ margin-bottom: 0.2rem;
19
+ font-weight: 700;
20
+ }
21
+ h3 {
22
+ font-size: 1.1rem;
23
+ font-weight: 400;
24
+ color: #333;
25
+ margin-top: 0.2rem;
26
+ margin-bottom: 0.3rem;
27
+ }
28
+ .sub {
29
+ font-size: 0.75rem;
30
+ letter-spacing: 0.15em;
31
+ color: #888;
32
+ margin-bottom: 1.5rem;
33
+ }
34
+ hr {
35
+ border: none;
36
+ border-top: 1px solid #e0e0e0;
37
+ margin: 1.5rem 0;
38
+ }
39
+ h2 {
40
+ font-size: 1.2rem;
41
+ margin-top: 1.8rem;
42
+ margin-bottom: 0.8rem;
43
+ }
44
+ ul {
45
+ padding-left: 1.2rem;
46
+ }
47
+ li {
48
+ margin-bottom: 0.4rem;
49
+ }
50
+ table {
51
+ width: 100%;
52
+ border-collapse: collapse;
53
+ margin: 1rem 0;
54
+ font-size: 0.95rem;
55
+ }
56
+ th, td {
57
+ text-align: left;
58
+ padding: 0.5rem 0.8rem;
59
+ border-bottom: 1px solid #eee;
60
+ }
61
+ th {
62
+ font-weight: 600;
63
+ border-bottom: 2px solid #ddd;
64
+ }
65
+ a {
66
+ color: #2563eb;
67
+ text-decoration: none;
68
+ }
69
+ a:hover {
70
+ text-decoration: underline;
71
+ }
72
+ .links a {
73
+ margin-right: 1.5rem;
74
+ }
75
+ strong { font-weight: 600; }
76
+ </style>
77
+ </head>
78
+ <body>
79
+
80
+ <div class="center">
81
+ <h1>Tinman Lab</h1>
82
+ <h3>Autonomous Machines. Second-Order Systems.</h3>
83
+ <div class="sub">AGENT MEMORY &middot; ADVERSARIAL SAFETY &middot; AGENTIC ECONOMY &middot; PERCEPTION SYSTEMS &middot; APPLIED RESEARCH</div>
84
+ </div>
85
+
86
+ <hr />
87
+
88
+ <h2>Disposition Distillation</h2>
89
+
90
+ <p>Tinman Lab develops <strong>Disposition Distillation (DD)</strong> β€” a multi-teacher distillation methodology that trains <em>how a model behaves</em> into weights, not system prompts. DD models plan before acting, acknowledge uncertainty, verify their own reasoning, and know what they don't know.</p>
91
+
92
+ <ul>
93
+ <li><strong>4-stage all-MIT pipeline</strong> β€” Kimi K2.5 β†’ GLM-5 β†’ MiniMax M2.7 β†’ GLM-5</li>
94
+ <li><strong>7 behavioral dispositions</strong> β€” Eager, Deliberate, Adversarial, Curious, Self-Improving, Humble, Persistent</li>
95
+ <li><strong>On-device focus</strong> β€” 0.6B to 2B parameters, quantized for mobile and edge deployment</li>
96
+ <li><strong>100% open training data</strong> β€” MIT-licensed teachers only, zero proprietary model outputs</li>
97
+ </ul>
98
+
99
+ <h2>Models</h2>
100
+
101
+ <table>
102
+ <thead>
103
+ <tr><th>Model</th><th>Size</th><th>Description</th></tr>
104
+ </thead>
105
+ <tbody>
106
+ <tr>
107
+ <td><a href="https://huggingface.co/Tinman-Lab/tinman-code-0.6B">tinman-code-0.6B</a></td>
108
+ <td>418 MB</td>
109
+ <td>Coding assistant with meta-cognitive awareness β€” plans, verifies, flags uncertainty</td>
110
+ </tr>
111
+ </tbody>
112
+ </table>
113
+
114
+ <h2>Links</h2>
115
+
116
+ <p class="links">
117
+ <a href="https://tinmanlab.com">Website</a>
118
+ <a href="https://github.com/tinmanlabsl/">GitHub</a>
119
+ <span style="color: #888;">Research Paper β€” coming soon</span>
120
+ </p>
121
+
122
+ </body>
123
  </html>