Skip to content

Instantly share code, notes, and snippets.

View KayneWest's full-sized avatar
💭
polluting, litering, and throwin' extra food in the trash

Matt Krzus KayneWest

💭
polluting, litering, and throwin' extra food in the trash
View GitHub Profile
@syhw
syhw / dnn.py
Last active June 23, 2024 04:13
A simple deep neural network with or w/o dropout in one file.
"""
A deep neural network with or w/o dropout in one file.
License: Do What The Fuck You Want to Public License http://www.wtfpl.net/
"""
import numpy, theano, sys, math
from theano import tensor as T
from theano import shared
from theano.tensor.shared_randomstreams import RandomStreams