Skip to content

Instantly share code, notes, and snippets.

@cedricconol
Created May 23, 2020 03:10
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 cedricconol/73cccbb570e374f2b7547dd4d8e8735e to your computer and use it in GitHub Desktop.
Save cedricconol/73cccbb570e374f2b7547dd4d8e8735e to your computer and use it in GitHub Desktop.
Linear regression TF2 predict
def predict(self, x):
return tf.reduce_sum(self.m * x, 1) + self.b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment