From 10cf65b48e1b2f16eaa826d2793cb67207a085d0 Mon Sep 17 00:00:00 2001 From: Ralph Tang Date: Thu, 9 Nov 2017 17:46:54 -0500 Subject: [PATCH] Clarify low-latency model stride length (#13704) --- tensorflow/examples/speech_commands/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/examples/speech_commands/models.py b/tensorflow/examples/speech_commands/models.py index 82d6a94ea1b..ab611f414a8 100644 --- a/tensorflow/examples/speech_commands/models.py +++ b/tensorflow/examples/speech_commands/models.py @@ -326,7 +326,7 @@ def create_low_latency_conv_model(fingerprint_input, model_settings, first_filter_height = input_time_size first_filter_count = 186 first_filter_stride_x = 1 - first_filter_stride_y = 4 + first_filter_stride_y = 1 first_weights = tf.Variable( tf.truncated_normal( [first_filter_height, first_filter_width, 1, first_filter_count],