Skip to content

Commit

Permalink
Just a dot in order to be consistent (tensorflow#12919)
Browse files Browse the repository at this point in the history
added a dot to the `7` to make clear it's a float (like every other number)
  • Loading branch information
sauercrowd authored and yifeif committed Sep 9, 2017
1 parent 07dca81 commit 32ffc5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/docs_src/get_started/get_started.md
Expand Up @@ -447,7 +447,7 @@ estimator = tf.estimator.Estimator(model_fn=model_fn)
x_train = np.array([1., 2., 3., 4.])
y_train = np.array([0., -1., -2., -3.])
x_eval = np.array([2., 5., 8., 1.])
y_eval = np.array([-1.01, -4.1, -7, 0.])
y_eval = np.array([-1.01, -4.1, -7., 0.])
input_fn = tf.estimator.inputs.numpy_input_fn(
{"x": x_train}, y_train, batch_size=4, num_epochs=None, shuffle=True)
train_input_fn = tf.estimator.inputs.numpy_input_fn(
Expand Down

0 comments on commit 32ffc5a

Please sign in to comment.