aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Dhruv <printdhruv@yahoo.com>2017-06-29 17:19:49 -0700
committerGravatar drpngx <drpngx@users.noreply.github.com>2017-06-29 17:19:49 -0700
commit1cf351583fc810f8270f8a6c185b3aa585f9b3b0 (patch)
treec1ae898efa206fc27641378171c3b72625384571
parentd0d2308389307b5bb3db8cff41b9eaf6d0ae67dd (diff)
Printdhruv patch 2 (#11150)
* Variable rename 'bools_' renamed to 'bools_test' * Revert "Variable rename" * Update deep_cnn.md "an evaluation of a model " instead of "evaluation on a model" * Update for ISSUE_TEMPLATE.md Python version * Update ISSUE_TEMPLATE.md Inclusion of python
-rw-r--r--ISSUE_TEMPLATE.md1
-rw-r--r--tensorflow/docs_src/tutorials/deep_cnn.md2
2 files changed, 2 insertions, 1 deletions
diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md
index 4f1666c2e7..5bf13ee152 100644
--- a/ISSUE_TEMPLATE.md
+++ b/ISSUE_TEMPLATE.md
@@ -17,6 +17,7 @@ If you open a GitHub issue, here is our policy:
- **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**:
- **TensorFlow installed from (source or binary)**:
- **TensorFlow version (use command below)**:
+- **Python version**:
- **Bazel version (if compiling from source)**:
- **CUDA/cuDNN version**:
- **GPU model and memory**:
diff --git a/tensorflow/docs_src/tutorials/deep_cnn.md b/tensorflow/docs_src/tutorials/deep_cnn.md
index 8013746eca..a9e9dda12b 100644
--- a/tensorflow/docs_src/tutorials/deep_cnn.md
+++ b/tensorflow/docs_src/tutorials/deep_cnn.md
@@ -178,7 +178,7 @@ the network architecture to return normalized predictions using
@{tf.nn.softmax}.
The `inputs()` and `inference()` functions provide all the components
-necessary to perform evaluation on a model. We now shift our focus towards
+necessary to perform an evaluation of a model. We now shift our focus towards
building operations for training a model.
> **EXERCISE:** The model architecture in `inference()` differs slightly from