diff --git a/site/en/guide/tensor.ipynb b/site/en/guide/tensor.ipynb index 2eb261aad7..0b6949301d 100644 --- a/site/en/guide/tensor.ipynb +++ b/site/en/guide/tensor.ipynb @@ -685,7 +685,7 @@ }, "outputs": [], "source": [ - "# Pull out a single value from a 2-rank tensor\n", + "# Pull out a single value from a rank-2 tensor\n", "print(rank_2_tensor[1, 1].numpy())" ] }, @@ -1310,7 +1310,7 @@ }, "outputs": [], "source": [ - "# Tensors can be strings, too here is a scalar string.\n", + "# Tensors can be strings, too. Here is a scalar string.\n", "scalar_string_tensor = tf.constant(\"Gray wolf\")\n", "print(scalar_string_tensor)" ]