Guest User

Untitled

a guest
Jul 16th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. import tensorflow as tf
  3. #Start a tensorflow session
  4. sess = tf.Session()
  5.  
  6. #predictions
  7. Y_pred = tf.linspace(-1., 1., 500)
  8. Y_truth = tf.constant(0.)
Add Comment
Please, Sign In to add comment