Hi,
1)In tensor flow section 4=>
theta = tf.Variable(tf.random_uniform([n + 1, 1], -1.0, 1.0, seed=42), name=“theta”)
in the above code why we are writing [n + 1, 1 and -1.0, 1.0???
2)in tensor flow section3 =>
for epoch in range(n_epochs):
if epoch % 10 == 0:
print(“Epoch”, epoch, “MSE =”, mse.eval())
x = sess.run(training_op)
best_theta = theta.eval()
In this loop what is the significance of this line???