Skip to content

Instantly share code, notes, and snippets.

@nlsandler
nlsandler / main.scss
Created December 1, 2017 16:17
SCSS for norasandler.com (customized from Jekyll minima theme)
@import "minima";
/* Global styling */
$heading-font-family: "Courier New", Courier, monospace !default;
@for $i from 1 through 6 {
h#{$i} {
font-family: $heading-font-family;
}
}
@nlsandler
nlsandler / lstm.py
Created November 29, 2017 20:22
DIY LSTM in Keras
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Building an LSTM from scratch with Keras (if that's not a contradiction)"""
from keras import backend as K
from keras.engine.topology import Layer
import numpy as np
from keras.layers import RNN, Dense, Activation,LSTM
from keras.models import Model
import keras