From b981c5d1c4f48073107c9079a354711f4d878b00 Mon Sep 17 00:00:00 2001 From: Androbin Date: Sat, 6 May 2017 20:01:35 +0200 Subject: [PATCH] suggest is_training not known at construction time (#9723) * suggest is_training not known at construction time * Slight modification to keep style with line 162 --- tensorflow/docs_src/community/style_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/docs_src/community/style_guide.md b/tensorflow/docs_src/community/style_guide.md index 767e33c3d07..602cb88d453 100644 --- a/tensorflow/docs_src/community/style_guide.md +++ b/tensorflow/docs_src/community/style_guide.md @@ -163,7 +163,7 @@ operation. it's present in the scope. * Layers that behave differently during training should have: - - `is_training`: `bool` to indicate if a training graph is been built. + - `is_training`: `bool` indicator if the graph is being built for training. Example: