Skip to content

Instantly share code, notes, and snippets.

@ispamm
Last active March 7, 2018 11:51
Show Gist options
  • Save ispamm/d89e54bfa6a56f29ea955c46812b24a8 to your computer and use it in GitHub Desktop.
Save ispamm/d89e54bfa6a56f29ea955c46812b24a8 to your computer and use it in GitHub Desktop.
w = tfe.Variable(0.3, name='w')
b = tfe.Variable(0, name='b')
def logreg_model(x, w, b):
return w * x + b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment