ilessio-aiflowlab commited on
Commit
fc510d1
·
verified ·
1 Parent(s): fa3dd82

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +1 -144
index.html CHANGED
@@ -237,69 +237,6 @@
237
  font-weight: bold;
238
  }
239
 
240
- /* ANIMA */
241
- .anima-modules {
242
- display: grid;
243
- grid-template-columns: repeat(4, 1fr);
244
- gap: 8px;
245
- margin-top: 24px;
246
- }
247
-
248
- .module-item {
249
- background: var(--darkgray);
250
- border: 1px solid var(--midgray);
251
- padding: 12px;
252
- text-align: center;
253
- font-size: 11px;
254
- color: var(--dim);
255
- }
256
-
257
- .module-item .num {
258
- font-family: 'Oswald', sans-serif;
259
- font-size: 20px;
260
- color: var(--orange);
261
- }
262
-
263
- /* LINKS */
264
- .links {
265
- display: flex;
266
- gap: 16px;
267
- margin-top: 24px;
268
- flex-wrap: wrap;
269
- }
270
-
271
- .link-btn {
272
- display: inline-block;
273
- font-family: 'JetBrains Mono', monospace;
274
- font-size: 12px;
275
- text-transform: uppercase;
276
- letter-spacing: 1px;
277
- padding: 12px 24px;
278
- text-decoration: none;
279
- transition: all 0.2s;
280
- }
281
-
282
- .link-btn.primary {
283
- background: var(--orange);
284
- color: var(--black);
285
- border: 2px solid var(--orange);
286
- }
287
-
288
- .link-btn.primary:hover {
289
- background: transparent;
290
- color: var(--orange);
291
- }
292
-
293
- .link-btn.secondary {
294
- background: transparent;
295
- color: var(--offwhite);
296
- border: 2px solid var(--midgray);
297
- }
298
-
299
- .link-btn.secondary:hover {
300
- border-color: var(--orange);
301
- color: var(--orange);
302
- }
303
 
304
  /* FOOTER */
305
  footer {
@@ -333,8 +270,7 @@
333
  .hero-stats { gap: 24px; flex-wrap: wrap; }
334
  .stat-number { font-size: 32px; }
335
  .collection-grid { grid-template-columns: 1fr; }
336
- .anima-modules { grid-template-columns: repeat(2, 1fr); }
337
- .pipeline { flex-direction: column; }
338
  .pipeline-arrow { transform: rotate(90deg); }
339
  }
340
  </style>
@@ -451,85 +387,6 @@
451
  </p>
452
  </section>
453
 
454
- <!-- ANIMA -->
455
- <section>
456
- <h2>ANIMA <span class="badge">Coming Soon</span></h2>
457
- <p>
458
- ANIMA is our modular, ROS2-native agentic robotics platform.
459
- 58 specialized AI modules — from perception and planning to manipulation and safety —
460
- orchestrated by an agentic supervisor that reasons, delegates, and adapts in real-time.
461
- </p>
462
-
463
- <div class="anima-modules">
464
- <div class="module-item">
465
- <div class="num">12</div>
466
- Perception
467
- </div>
468
- <div class="module-item">
469
- <div class="num">8</div>
470
- Planning
471
- </div>
472
- <div class="module-item">
473
- <div class="num">10</div>
474
- Manipulation
475
- </div>
476
- <div class="module-item">
477
- <div class="num">6</div>
478
- Navigation
479
- </div>
480
- <div class="module-item">
481
- <div class="num">7</div>
482
- Safety
483
- </div>
484
- <div class="module-item">
485
- <div class="num">5</div>
486
- Learning
487
- </div>
488
- <div class="module-item">
489
- <div class="num">6</div>
490
- Communication
491
- </div>
492
- <div class="module-item">
493
- <div class="num">4</div>
494
- Orchestration
495
- </div>
496
- </div>
497
-
498
- <p style="margin-top: 24px; color: var(--dim); font-size: 12px;">
499
- Each module gets 4 FORGE student variants: Micro (135M) &middot; Nano (0.5B) &middot; Small (1.5B) &middot; Medium (3B)
500
- </p>
501
- </section>
502
-
503
- <!-- HARDWARE -->
504
- <section>
505
- <h2>Benchmarked On</h2>
506
- <p>All performance numbers are measured, never estimated.</p>
507
- <div class="anima-modules" style="grid-template-columns: repeat(3, 1fr);">
508
- <div class="module-item">
509
- <div class="num">L4</div>
510
- NVIDIA 24GB
511
- </div>
512
- <div class="module-item">
513
- <div class="num">Orin</div>
514
- Jetson 8GB
515
- </div>
516
- <div class="module-item">
517
- <div class="num">M2</div>
518
- Apple Silicon
519
- </div>
520
- </div>
521
- </section>
522
-
523
- <!-- LINKS -->
524
- <section>
525
- <h2>Links</h2>
526
- <div class="links">
527
- <a class="link-btn primary" href="https://huggingface.co/robotflowlabs">All Models</a>
528
- <a class="link-btn secondary" href="https://github.com/RobotFlow-Labs">GitHub</a>
529
- <a class="link-btn secondary" href="https://www.robotflowlabs.com">Website</a>
530
- <a class="link-btn secondary" href="https://twitter.com/AIFlow_ML">Twitter</a>
531
- </div>
532
- </section>
533
 
534
  </div>
535
 
 
237
  font-weight: bold;
238
  }
239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
 
241
  /* FOOTER */
242
  footer {
 
270
  .hero-stats { gap: 24px; flex-wrap: wrap; }
271
  .stat-number { font-size: 32px; }
272
  .collection-grid { grid-template-columns: 1fr; }
273
+ .pipeline { flex-direction: column; }
 
274
  .pipeline-arrow { transform: rotate(90deg); }
275
  }
276
  </style>
 
387
  </p>
388
  </section>
389
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
 
391
  </div>
392