forked from bamos/bamos.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
33 lines (31 loc) · 959 Bytes
/
Copy pathcode.html
File metadata and controls
33 lines (31 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
layout: base
title: Code
nav_key: code
permalink: /code/
description: Research code and open-source contributions by Luis A. Ortega.
---
<main class="page-shell content-page code-page">
<section class="page-hero compact">
<p class="section-kicker">Research Code</p>
<h1>Repositories that support the papers.</h1>
<p>
Implementations, extensions, and research utilities connected to Bayesian
deep learning, Laplace approximations, and generalization analysis.
</p>
</section>
<section class="code-list">
{% for repo in site.data.code %}
<article class="selected-card accent-{{ repo.accent | default: 'olive' }}">
<div>
<p>{{ repo.meta }}</p>
<h2>{{ repo.title }}</h2>
<span>{{ repo.description }}</span>
</div>
<div class="inline-actions">
<a href="{{ repo.url }}">GitHub</a>
</div>
</article>
{% endfor %}
</section>
</main>