sin(x) = 0 TensorFlow 수치 해
# sinxeqn_regression_01.py import tensorflow as tf x_train = [-2.0, -0.7, 0.4, 2.0] y_train = [-0.7518,-0.2674, 0.05905, 0.7518] W1 = tf.Variable(tf.random_uniform([1],-3.2, -3.0, dtype = tf.float32, name='weight1')) W2 = tf.Variable(tf.random_uniform([1],-0.5, +0.5, dtype = tf.float32, name='weight2')) W3 = tf.Variable(tf.random_uniform([1], 3.0, 3.2, dtype = tf.float32, name='weight3')) hypoth..