Skip to content

Instantly share code, notes, and snippets.

View alkalait's full-sized avatar
🛰️

Freddie Kalaitzis alkalait

🛰️
View GitHub Profile
@alkalait
alkalait / revisitconv2d.py
Created December 1, 2021 15:15
Minimal ways to learn with multiple revisits
# batch, time, bands, height, width
B, T, C, H, W = x.shape
C_o = 32 # hyperparam
F = lambda i, o, g=1:
nn.Conv2d(in_channels=i,
out_channels=o,
kernel_size=3,
padding='same',
groups=g)
@calstad
calstad / TDA_resources.md
Last active May 30, 2024 04:46
List of resources for TDA

Quick List of Resources for Topological Data Analysis with Emphasis on Machine Learning

This is just a quick list of resourses on TDA that I put together for @rickasaurus after he was asking for links to papers, books, etc on Twitter and is by no means an exhaustive list.

Survey Papers

Both Carlsson's and Ghrist's survey papers offer a very good introduction to the subject

Other Papers and Web Resources