Skip to content

Commit

Permalink
Added Implementation Side (#54)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul O.-P <[email protected]>
  • Loading branch information
Paulos2411 and Paul O.-P authored Dec 11, 2024
1 parent f44d953 commit 7717a02
Show file tree
Hide file tree
Showing 9 changed files with 2,039 additions and 21 deletions.
9 changes: 5 additions & 4 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,7 @@
<a href="{{ site.baseurl }}/single-cell-transformers" class="nav-link">Single Cell Transformers</a>
<a href="{{ site.baseurl }}/transformer-llms" class="nav-link">Transformer LLMs</a>
<a href="{{ site.baseurl }}/transformer-evaluation" class="nav-link">Transformer Evaluation</a>
<a href="{{ site.baseurl }}/implementations" class="nav-link">Implementations</a>
</div>

<div class="flex items-center space-x-6">
Expand Down Expand Up @@ -734,14 +735,14 @@
</header>

<!-- Sidebar -->
<!-- Update the sidebar nav element -->
<nav id="sidebar" class="sidebar fixed left-0 top-16 h-full text-white p-6"> <!-- increased padding -->
<div class="space-y-6"> <!-- increased spacing -->
<h2 class="text-2xl font-bold mb-8">Navigation</h2> <!-- larger text and margin -->
<nav id="sidebar" class="sidebar fixed left-0 top-16 h-full text-white p-6">
<div class="space-y-6">
<h2 class="text-2xl font-bold mb-8">Navigation</h2>
<a href="{{ site.baseurl }}/" class="block py-3 hover:bg-opacity-20 hover:bg-white rounded">Home</a>
<a href="{{ site.baseurl }}/single-cell-transformers/" class="block py-3 hover:bg-opacity-20 hover:bg-white rounded">Single-cell transformers</a>
<a href="{{ site.baseurl }}/transformer-llms/" class="block py-3 hover:bg-opacity-20 hover:bg-white rounded">Transformer LLMs</a>
<a href="{{ site.baseurl }}/transformer-evaluation/" class="block py-3 hover:bg-opacity-20 hover:bg-white rounded">Transformer evaluation</a>
<a href="{{ site.baseurl }}/implementations/" class="block py-3 hover:bg-opacity-20 hover:bg-white rounded">Implementations</a>
</div>
</nav>

Expand Down
29 changes: 29 additions & 0 deletions _pages/implementations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: Implementations
layout: default
nav_order: 4
---

<div style="text-align: center;">
<h1>Implementations</h1>
</div>

<p style="text-align: center;">Links to model implementations</p>

<div style="display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; width: 100%;">
<div style="margin: 0 1rem;">
<h3><a href="https://cellxgene.cziscience.com/census-models">CellxGene Census Models</a></h3>
</div>

<div style="margin: 0 1rem;">
<h3><a href="https://github.com/helicalAI/helical/">Helical AI Repository</a></h3>
</div>

<div style="margin: 0 1rem;">
<h3><a href="https://virtualcellmodels.cziscience.com/models">Virtual Cell Models</a></h3>
</div>

<div style="margin: 0 1rem;">
<h3><a href="https://github.com/NVIDIA/bionemo-framework">NVIDIA BioNeMo Framework</a></h3>
</div>
</div>
Loading

0 comments on commit 7717a02

Please sign in to comment.