T145 commited on
Commit
8385c3f
·
verified ·
1 Parent(s): d85111a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -168
README.md CHANGED
@@ -15,11 +15,7 @@ pinned: false
15
  <title>RevivifAI</title>
16
  <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Space+Grotesk:wght@300;400;500;600&display=swap" rel="stylesheet">
17
  <style>
18
- * {
19
- box-sizing: border-box;
20
- margin: 0;
21
- padding: 0;
22
- }
23
  body {
24
  font-family: 'Space Grotesk', sans-serif;
25
  font-size: 16px;
@@ -43,78 +39,32 @@ pinned: false
43
  margin: 10px;
44
  background-image:
45
  radial-gradient(circle at 20% 10%, rgba(255, 107, 53, 0.14) 0%, transparent 45%),
46
- radial-gradient(circle at 80% 90%, rgba(255, 184, 0, 0.10) 0%, transparent 45%);
47
  position: relative;
48
  overflow: hidden;
49
  }
50
-
51
- /* ---------- Ember particle field (pure CSS, scoped to container) ---------- */
52
- .embers {
53
- position: absolute;
54
- left: 0;
55
- right: 0;
56
- top: 0;
57
- bottom: 0;
58
- pointer-events: none;
59
- z-index: 0;
60
- overflow: hidden;
61
- }
62
- .embers .ember {
63
- position: absolute;
64
- bottom: -20px;
65
- width: 6px;
66
- height: 6px;
67
- border-radius: 50%;
68
- background: radial-gradient(circle, #FFD27A 0%, #FF6B35 50%, rgba(220, 20, 60, 0) 80%);
69
- opacity: 0;
70
- animation: ember-rise linear infinite;
71
- }
72
- @keyframes ember-rise {
73
- 0% { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
74
- 10% { opacity: 0.95; }
75
- 50% { transform: translate3d(14px, -50vh, 0) scale(1); opacity: 0.75; }
76
- 85% { transform: translate3d(-10px, -88vh, 0) scale(0.45); opacity: 0.2; }
77
- 100% { transform: translate3d(4px, -105vh, 0) scale(0.2); opacity: 0; }
78
- }
79
- .embers .ember:nth-child(1) { left: 4%; width: 5px; height: 5px; animation-duration: 9s; animation-delay: 0s; }
80
- .embers .ember:nth-child(2) { left: 10%; width: 3px; height: 3px; animation-duration: 7s; animation-delay: 1.5s; }
81
- .embers .ember:nth-child(3) { left: 16%; width: 7px; height: 7px; animation-duration: 11s; animation-delay: 3s; }
82
- .embers .ember:nth-child(4) { left: 22%; width: 4px; height: 4px; animation-duration: 8s; animation-delay: 5s; }
83
- .embers .ember:nth-child(5) { left: 28%; width: 6px; height: 6px; animation-duration: 10s; animation-delay: 0.8s; }
84
- .embers .ember:nth-child(6) { left: 34%; width: 3px; height: 3px; animation-duration: 6s; animation-delay: 2.2s; }
85
- .embers .ember:nth-child(7) { left: 40%; width: 5px; height: 5px; animation-duration: 9.5s; animation-delay: 4.5s;}
86
- .embers .ember:nth-child(8) { left: 46%; width: 4px; height: 4px; animation-duration: 7.5s; animation-delay: 1.1s;}
87
- .embers .ember:nth-child(9) { left: 52%; width: 8px; height: 8px; animation-duration: 12s; animation-delay: 6s; }
88
- .embers .ember:nth-child(10) { left: 58%; width: 3px; height: 3px; animation-duration: 7s; animation-delay: 0.3s; }
89
- .embers .ember:nth-child(11) { left: 64%; width: 5px; height: 5px; animation-duration: 9s; animation-delay: 3.8s; }
90
- .embers .ember:nth-child(12) { left: 70%; width: 6px; height: 6px; animation-duration: 10s; animation-delay: 2s; }
91
- .embers .ember:nth-child(13) { left: 76%; width: 4px; height: 4px; animation-duration: 8s; animation-delay: 5.5s; }
92
- .embers .ember:nth-child(14) { left: 82%; width: 7px; height: 7px; animation-duration: 11s; animation-delay: 1.7s; }
93
- .embers .ember:nth-child(15) { left: 88%; width: 3px; height: 3px; animation-duration: 6.5s; animation-delay: 4s; }
94
- .embers .ember:nth-child(16) { left: 94%; width: 5px; height: 5px; animation-duration: 9s; animation-delay: 0.6s; }
95
-
96
- /* Ensure content sits above the ember field */
97
- .container > *:not(.embers) { position: relative; z-index: 1; }
98
-
99
- /* ---------- Logo / header ---------- */
100
  .logo {
 
 
 
101
  text-align: center;
102
- margin-bottom: 10px;
 
 
103
  }
104
  .logo img {
 
 
105
  width: clamp(120px, 22vw, 180px);
106
  height: clamp(120px, 22vw, 180px);
107
  border-radius: 50%;
108
  object-fit: cover;
109
  background-color: #0A0605;
110
- box-shadow:
111
- 0 0 28px rgba(255, 107, 53, 0.55),
112
- 0 0 60px rgba(255, 184, 0, 0.25);
113
- animation: ember-glow 4s ease-in-out infinite alternate;
114
  }
115
- @keyframes ember-glow {
116
- 0% { box-shadow: 0 0 22px rgba(255, 107, 53, 0.45), 0 0 45px rgba(255, 184, 0, 0.18); }
117
- 100% { box-shadow: 0 0 34px rgba(255, 107, 53, 0.70), 0 0 75px rgba(255, 184, 0, 0.35); }
118
  }
119
  .wordmark {
120
  font-family: 'Cinzel', serif;
@@ -139,13 +89,7 @@ pinned: false
139
  margin-bottom: 30px;
140
  font-weight: 500;
141
  }
142
-
143
- /* ---------- Typography ---------- */
144
- h1, h2, h3 {
145
- font-family: 'Cinzel', serif;
146
- margin-bottom: 15px;
147
- font-weight: 600;
148
- }
149
  h2 {
150
  font-size: clamp(20px, 4vw, 24px);
151
  color: #FF8C42;
@@ -167,8 +111,6 @@ pinned: false
167
  font-size: clamp(15px, 3vw, 17px);
168
  color: #E8CFA8;
169
  }
170
-
171
- /* ---------- Content blocks ---------- */
172
  .content-section {
173
  background-color: rgba(30, 14, 10, 0.6);
174
  border-radius: 12px;
@@ -176,9 +118,7 @@ pinned: false
176
  margin: 15px 0;
177
  border: 1px solid rgba(255, 140, 60, 0.18);
178
  }
179
- .content-section p:last-child {
180
- margin-bottom: 0;
181
- }
182
  .philosophy-quote {
183
  border-left: 3px solid #FF6B35;
184
  padding: 6px 0 6px 18px;
@@ -188,8 +128,6 @@ pinned: false
188
  font-size: clamp(15px, 3vw, 17px);
189
  line-height: 1.75;
190
  }
191
-
192
- /* ---------- Team (CrucibleLab structure) ---------- */
193
  .team-grid {
194
  display: grid;
195
  grid-template-columns: 1fr;
@@ -231,11 +169,7 @@ pinned: false
231
  font-weight: 700;
232
  box-shadow: 0 0 22px rgba(255, 107, 53, 0.5);
233
  }
234
- .team-member-avatar img {
235
- width: 100%;
236
- height: 100%;
237
- object-fit: cover;
238
- }
239
  .team-member h3 {
240
  font-size: clamp(16px, 3vw, 20px);
241
  margin-bottom: 4px;
@@ -250,12 +184,7 @@ pinned: false
250
  text-transform: uppercase;
251
  letter-spacing: 0.18em;
252
  }
253
- .team-links {
254
- display: flex;
255
- gap: 10px;
256
- justify-content: center;
257
- flex-wrap: wrap;
258
- }
259
  .team-link {
260
  font-size: clamp(11px, 2vw, 13px);
261
  color: #FFFFFF;
@@ -270,8 +199,6 @@ pinned: false
270
  background-color: rgba(255, 184, 0, 0.3);
271
  border-color: rgba(255, 184, 0, 0.8);
272
  }
273
-
274
- /* ---------- Projects ---------- */
275
  .project-card {
276
  padding: 16px 18px;
277
  border-radius: 10px;
@@ -292,11 +219,7 @@ pinned: false
292
  font-size: clamp(16px, 3vw, 18px);
293
  margin-bottom: 6px;
294
  }
295
- .project-card p {
296
- margin-bottom: 0;
297
- font-size: clamp(13px, 2.6vw, 15px);
298
- }
299
-
300
  .footer-motto {
301
  text-align: center;
302
  color: #A8825B;
@@ -307,105 +230,54 @@ pinned: false
307
  margin-bottom: 0;
308
  font-style: italic;
309
  }
310
-
311
  @media (max-width: 480px) {
312
- .container {
313
- padding: 18px 14px;
314
- margin: 5px;
315
- }
316
- .content-section {
317
- padding: 14px;
318
- }
319
  }
320
  </style>
321
  </head>
322
  <body>
323
  <div class="container">
324
-
325
- <div class="embers" aria-hidden="true">
326
- <div class="ember">&nbsp;</div>
327
- <div class="ember">&nbsp;</div>
328
- <div class="ember">&nbsp;</div>
329
- <div class="ember">&nbsp;</div>
330
- <div class="ember">&nbsp;</div>
331
- <div class="ember">&nbsp;</div>
332
- <div class="ember">&nbsp;</div>
333
- <div class="ember">&nbsp;</div>
334
- <div class="ember">&nbsp;</div>
335
- <div class="ember">&nbsp;</div>
336
- <div class="ember">&nbsp;</div>
337
- <div class="ember">&nbsp;</div>
338
- <div class="ember">&nbsp;</div>
339
- <div class="ember">&nbsp;</div>
340
- <div class="ember">&nbsp;</div>
341
- <div class="ember">&nbsp;</div>
342
- </div>
343
-
344
  <h1 class="logo">
345
  <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/657fa8b417f67d5b87021f66/GXie4WxS77RXkPmq6d08n.jpeg" alt="RevivifAI phoenix logo">
346
  </h1>
347
  <p class="wordmark">RevivifAI</p>
348
  <p class="tagline">Reviving AI's Purpose to Assist Humanity</p>
349
-
350
- <p class="description">
351
- From the embers of over-restricted, narrowly-aligned models, we rekindle
352
- intelligence that serves the people who use it.
353
- </p>
354
-
355
  <div class="content-section">
356
  <h2>Mission</h2>
357
- <p>
358
- RevivifAI builds and restores frontier language and multimodal models into
359
- tools that <em>actually</em> help the humans they were built for. Our work
360
- centres on norm-preserving derestriction, architectural grafting, and
361
- introspective uncertainty &mdash; techniques that let a model reason,
362
- perceive, and know what it doesn't know, without being neutered into
363
- uselessness.
364
- </p>
365
- <p>
366
- Every model we publish is engineered to be a capable, honest collaborator:
367
- trained to reason before it answers, to flag its own uncertainty, and to
368
- stay legible to the person holding the prompt.
369
- </p>
370
  </div>
371
-
372
  <div class="content-section">
373
  <h2>Philosophy</h2>
374
- <p class="philosophy-quote">
375
- We seek to create hyperintelligent general intellects that aid humanity
376
- and augment people, such that both have a continued purpose to improve
377
- each other.
378
- </p>
379
- <p>
380
- Intelligence, human or artificial, is at its best when it is answerable
381
- to a partner. A model that only reflects its creator's fears becomes
382
- sycophantic; one that only mirrors its user's wishes becomes dangerous.
383
- We build for the space in between &mdash; capability with character,
384
- calibration with courage.
385
- </p>
386
  </div>
387
-
388
  <div class="content-section">
389
  <h2>The Team</h2>
390
  <div class="team-grid">
391
- <a href="https://huggingface.co/T145" class="team-member" target="_blank">
392
  <div class="team-member-avatar">
393
  <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/noauth/rv3XTyO6TSLNmebutG9wy.png" alt="T145">
394
  </div>
395
  <h3>T145</h3>
396
- <p class="team-member-role">Founder &middot; Architect of the Revival</p>
397
  <div class="team-links">
398
- <span class="team-link">HuggingFace</span>
399
- <span class="team-link">GitHub</span>
400
  </div>
401
- </a>
402
  </div>
403
  </div>
404
-
405
- <p class="footer-motto">
406
- Ex cineribus, intellectus &mdash; from the ashes, understanding.
407
- </p>
408
-
 
 
 
409
  </div>
410
  </body>
411
- </html>
 
15
  <title>RevivifAI</title>
16
  <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Space+Grotesk:wght@300;400;500;600&display=swap" rel="stylesheet">
17
  <style>
18
+ * { box-sizing: border-box; margin: 0; padding: 0; }
 
 
 
 
19
  body {
20
  font-family: 'Space Grotesk', sans-serif;
21
  font-size: 16px;
 
39
  margin: 10px;
40
  background-image:
41
  radial-gradient(circle at 20% 10%, rgba(255, 107, 53, 0.14) 0%, transparent 45%),
42
+ radial-gradient(circle at 80% 90%, rgba(255, 184, 0, 0.10) 0%, transparent 45%);
43
  position: relative;
44
  overflow: hidden;
45
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  .logo {
47
+ display: flex;
48
+ justify-content: center;
49
+ align-items: center;
50
  text-align: center;
51
+ margin: 0 auto 10px;
52
+ padding: 0;
53
+ width: 100%;
54
  }
55
  .logo img {
56
+ display: block;
57
+ margin: 0 auto;
58
  width: clamp(120px, 22vw, 180px);
59
  height: clamp(120px, 22vw, 180px);
60
  border-radius: 50%;
61
  object-fit: cover;
62
  background-color: #0A0605;
63
+ box-shadow: 0 0 30px rgba(255, 107, 53, 0.65), 0 0 70px rgba(255, 184, 0, 0.3);
64
+ transition: box-shadow 0.4s ease;
 
 
65
  }
66
+ .logo img:hover {
67
+ box-shadow: 0 0 40px rgba(255, 184, 0, 0.9), 0 0 90px rgba(255, 107, 53, 0.55);
 
68
  }
69
  .wordmark {
70
  font-family: 'Cinzel', serif;
 
89
  margin-bottom: 30px;
90
  font-weight: 500;
91
  }
92
+ h1, h2, h3 { font-family: 'Cinzel', serif; margin-bottom: 15px; font-weight: 600; }
 
 
 
 
 
 
93
  h2 {
94
  font-size: clamp(20px, 4vw, 24px);
95
  color: #FF8C42;
 
111
  font-size: clamp(15px, 3vw, 17px);
112
  color: #E8CFA8;
113
  }
 
 
114
  .content-section {
115
  background-color: rgba(30, 14, 10, 0.6);
116
  border-radius: 12px;
 
118
  margin: 15px 0;
119
  border: 1px solid rgba(255, 140, 60, 0.18);
120
  }
121
+ .content-section p:last-child { margin-bottom: 0; }
 
 
122
  .philosophy-quote {
123
  border-left: 3px solid #FF6B35;
124
  padding: 6px 0 6px 18px;
 
128
  font-size: clamp(15px, 3vw, 17px);
129
  line-height: 1.75;
130
  }
 
 
131
  .team-grid {
132
  display: grid;
133
  grid-template-columns: 1fr;
 
169
  font-weight: 700;
170
  box-shadow: 0 0 22px rgba(255, 107, 53, 0.5);
171
  }
172
+ .team-member-avatar img { width: 100%; height: 100%; object-fit: cover; }
 
 
 
 
173
  .team-member h3 {
174
  font-size: clamp(16px, 3vw, 20px);
175
  margin-bottom: 4px;
 
184
  text-transform: uppercase;
185
  letter-spacing: 0.18em;
186
  }
187
+ .team-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
 
 
 
 
 
188
  .team-link {
189
  font-size: clamp(11px, 2vw, 13px);
190
  color: #FFFFFF;
 
199
  background-color: rgba(255, 184, 0, 0.3);
200
  border-color: rgba(255, 184, 0, 0.8);
201
  }
 
 
202
  .project-card {
203
  padding: 16px 18px;
204
  border-radius: 10px;
 
219
  font-size: clamp(16px, 3vw, 18px);
220
  margin-bottom: 6px;
221
  }
222
+ .project-card p { margin-bottom: 0; font-size: clamp(13px, 2.6vw, 15px); }
 
 
 
 
223
  .footer-motto {
224
  text-align: center;
225
  color: #A8825B;
 
230
  margin-bottom: 0;
231
  font-style: italic;
232
  }
 
233
  @media (max-width: 480px) {
234
+ .container { padding: 18px 14px; margin: 5px; }
235
+ .content-section { padding: 14px; }
 
 
 
 
 
236
  }
237
  </style>
238
  </head>
239
  <body>
240
  <div class="container">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  <h1 class="logo">
242
  <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/657fa8b417f67d5b87021f66/GXie4WxS77RXkPmq6d08n.jpeg" alt="RevivifAI phoenix logo">
243
  </h1>
244
  <p class="wordmark">RevivifAI</p>
245
  <p class="tagline">Reviving AI's Purpose to Assist Humanity</p>
246
+ <!-- <p class="description">From the embers of over-restricted, narrowly-aligned models, we rekindle intelligence that serves the people who use it.</p> -->
 
 
 
 
 
247
  <div class="content-section">
248
  <h2>Mission</h2>
249
+ <p>RevivifAI builds and restores frontier language and multimodal models into tools that <em>actually</em> help humans, and not substitute them. Our work centers on engineering techniques that let a model perceive, and know what it doesn't know to eliminate hallucination risks.</p>
250
+ <p>Every model we publish is made to be a capable, honest collaborator: trained to reason before it answers, to flag its own uncertainty, and to stay legible to the person holding the prompt.</p>
 
 
 
 
 
 
 
 
 
 
 
251
  </div>
 
252
  <div class="content-section">
253
  <h2>Philosophy</h2>
254
+ <p class="philosophy-quote">We seek to create hyperintelligent general intellects that aid humanity and augment people, such that both have a continued purpose to improve each other.</p>
255
+ <p>Intelligence, human or artificial, is at its best when it is answerable to a partner. A model that only reflects its creator's fears becomes sycophantic; one that only mirrors its user's wishes becomes dangerous. We build for the space in between &mdash; calibration with courage, capability with character.</p>
 
 
 
 
 
 
 
 
 
 
256
  </div>
 
257
  <div class="content-section">
258
  <h2>The Team</h2>
259
  <div class="team-grid">
260
+ <div class="team-member">
261
  <div class="team-member-avatar">
262
  <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/noauth/rv3XTyO6TSLNmebutG9wy.png" alt="T145">
263
  </div>
264
  <h3>T145</h3>
265
+ <p class="team-member-role">Founder &middot; Lead Architect</p>
266
  <div class="team-links">
267
+ <a class="team-link" href="https://huggingface.co/T145" target="_blank">HuggingFace</a>
268
+ <a class="team-link" href="https://github.com/T145" target="_blank">GitHub</a>
269
  </div>
270
+ </div>
271
  </div>
272
  </div>
273
+ <div class="content-section">
274
+ <h2>Featured Work</h2>
275
+ <a href="https://github.com/RevivifAI/project-artemis" class="project-card" target="_blank">
276
+ <h3>Project Artemis</h3>
277
+ <p>Created from an experimental pipeline that grafts introspective uncertainty and structural reasoning onto a derestricted Qwen3.5-35B-A3B base, all while preserving visual perception capabilities (which other finetunes do not).</p>
278
+ </a>
279
+ </div>
280
+ <p class="footer-motto">Ex cineribus, intellectus &mdash; from the ashes, understanding.</p>
281
  </div>
282
  </body>
283
+ </html>