Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View sauln's full-sized avatar
🤖

Nathaniel Saul sauln

🤖
View GitHub Profile
@sauln
sauln / TDA_resources.md
Last active March 15, 2019 22:10 — forked from calstad/TDA_resources.md
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

@sauln
sauln / min-char-rnn.py
Last active February 9, 2016 07:47 — forked from karpathy/min-char-rnn.py
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
Updated by Nathaniel Saul 2/8/2016 - Runs in Python3.4
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file