Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Implementation Side #54

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading