Skip to content

Instantly share code, notes, and snippets.

@shamdasani
Created August 5, 2017 04:54
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 shamdasani/d29a22246c652d961573a888b5c5fa5d to your computer and use it in GitHub Desktop.
Save shamdasani/d29a22246c652d961573a888b5c5fa5d to your computer and use it in GitHub Desktop.
class Neural_Network(object):
def __init__(self):
#parameters
self.inputSize = 2
self.outputSize = 1
self.hiddenSize = 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment