Skip to content

Instantly share code, notes, and snippets.

View evanbiederstedt's full-sized avatar

evanbiederstedt

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- Skelley et al 2013:
- paper: http://genome.cshlp.org/content/23/9/1496.long
- ena: http://www.ebi.ac.uk/ena/data/view/SRP018005 (includes RNA-seq)
- 22 diverse Scer strains
- Bergstrom et al 2014
- paper: https://academic.oup.com/mbe/article-lookup/doi/10.1093/molbev/msu037
- SGRP2
- 19 Scer
- 22 Spar
@karpathy
karpathy / min-char-rnn.py
Last active May 6, 2024 16:42
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
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)
@debasishg
debasishg / gist:b4df1648d3f1776abdff
Last active January 20, 2021 12:15
another attempt to organize my ML readings ..
  1. Feature Learning
  1. Deep Learning