# Forward-propagation # Define a simple logistic model z=wx+b # y_pred will contain predictions the model makes. prediction = tf.matmul(data, W) + b