Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bigsnarfdude/b6291c781c78ab596deb37044717d333 to your computer and use it in GitHub Desktop.
Save bigsnarfdude/b6291c781c78ab596deb37044717d333 to your computer and use it in GitHub Desktop.
basic ff nn in python
// **************** basic structure **********************
import random
import numpy as np
def sigmoid_function
def sigmoid_prime
class Network(object):
num_layers
sizes
biases
weigths
def feedforward
def SGD
def update_mini_batch
def backprop
def evaluate
def cost_derivative
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment