Skip to content

Commit

Permalink
adds logos
Browse files Browse the repository at this point in the history
billbrod committed Sep 4, 2024
1 parent da5cdaa commit a7a82a3
Showing 7 changed files with 523 additions and 5 deletions.
12 changes: 9 additions & 3 deletions site/_includes/project_list.html
Original file line number Diff line number Diff line change
@@ -3,10 +3,16 @@
<project-list>
{% for project in site.projects %}
<project-card class="{{ project.class }}">
<h2>
{%- if project.external_url -%}
<h2 style="display:flex;align-items:center;justify-content:space-around">
{%- if project.logo -%}
<a href="{{ project.external_url }}">
<img src="{{ project.logo }}" align="left" height="80"/>
</a>
{%- elsif project.external_url -%}
<a href="{{ project.external_url }}">{{ project.title }}</a>
{%- else -%} {{ project.title }} {%- endif -%}
{%- else -%}
{{ project.title }}
{%- endif -%}
</h2>
<div>{{ project.content }}</div>
</project-card>
1 change: 1 addition & 0 deletions site/_projects/nemos.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: NeMoS
external_url: https://github.com/flatironinstitute/nemos
logo: /assets/nemos_logo.svg
---
A statistical modeling framework for systems neuroscience. NeMoS, our latest software package, specializes in GPU-accelerated optimizations. Its current core functionality includes the implementation of the Generalized Linear Model (GLM) for spike train analysis.
3 changes: 2 additions & 1 deletion site/_projects/plenoptic.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: plenoptic
external_url: https://github.com/LabForComputationalVision/plenoptic/
logo: /assets/plenoptic_logo.svg
---
plenoptic is a python library for model-based synthesis of perceptual stimuli. The generated stimuli enable interpretation of model properties through examination of features that are enhanced, suppressed, or descarded. More importantly, they can facilitate the scientific proceess, through use in perceptual or neural experiments aimed at validating/falsifying model predictions.
plenoptic is a python library for model-based synthesis of perceptual stimuli. The generated stimuli enable interpretation of model properties through examination of features that are enhanced, suppressed, or descarded. More importantly, they can facilitate the scientific proceess, through use in perceptual or neural experiments aimed at validating/falsifying model predictions.
3 changes: 2 additions & 1 deletion site/_projects/pynapple.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: pynapple
external_url: https://pynapple-org.github.io/pynapple/
logo: /assets/pynapple_logo.svg
---
pynapple is a light-weight python library for neurophysiological data analysis. The goal is to offer a versatile set of tools to study typical data in the field, i.e. time series (spike times, behavioral events, etc.) and time intervals (trials, brain states, etc.). It also provides users with generic functions for neuroscience such as tuning curves and cross-correlograms.
pynapple is a light-weight python library for neurophysiological data analysis. The goal is to offer a versatile set of tools to study typical data in the field, i.e. time series (spike times, behavioral events, etc.) and time intervals (trials, brain states, etc.). It also provides users with generic functions for neuroscience such as tuning curves and cross-correlograms.
147 changes: 147 additions & 0 deletions site/assets/nemos_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
114 changes: 114 additions & 0 deletions site/assets/plenoptic_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
248 changes: 248 additions & 0 deletions site/assets/pynapple_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a7a82a3

Please sign in to comment.