This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |