diff --git a/tensorflow/examples/speech_commands/freeze.py b/tensorflow/examples/speech_commands/freeze.py index d12b39ad1b0..1cc7138cebf 100644 --- a/tensorflow/examples/speech_commands/freeze.py +++ b/tensorflow/examples/speech_commands/freeze.py @@ -45,8 +45,8 @@ import sys import tensorflow as tf from tensorflow.python.ops import gen_audio_ops as audio_ops -import tensorflow.examples.speech_commands.input_data as input_data -import tensorflow.examples.speech_commands.models as models +import input_data +import models from tensorflow.python.framework import graph_util # If it's available, load the specialized feature generator. If this doesn't diff --git a/tensorflow/examples/speech_commands/generate_streaming_test_wav.py b/tensorflow/examples/speech_commands/generate_streaming_test_wav.py index 4d363a92a77..d60183b447d 100644 --- a/tensorflow/examples/speech_commands/generate_streaming_test_wav.py +++ b/tensorflow/examples/speech_commands/generate_streaming_test_wav.py @@ -46,8 +46,8 @@ import sys import numpy as np import tensorflow as tf -import tensorflow.examples.speech_commands.input_data as input_data -import tensorflow.examples.speech_commands.models as models +import input_data +import models FLAGS = None diff --git a/tensorflow/examples/speech_commands/train.py b/tensorflow/examples/speech_commands/train.py index d28893c7bfa..c9ddf8e92a0 100644 --- a/tensorflow/examples/speech_commands/train.py +++ b/tensorflow/examples/speech_commands/train.py @@ -78,8 +78,8 @@ import numpy as np from six.moves import xrange # pylint: disable=redefined-builtin import tensorflow as tf -import tensorflow.examples.speech_commands.input_data as input_data -import tensorflow.examples.speech_commands.models as models +import input_data +import models from tensorflow.python.platform import gfile FLAGS = None diff --git a/tensorflow/examples/speech_commands/wav_to_features.py b/tensorflow/examples/speech_commands/wav_to_features.py index 9ed02b7ab5d..2dbe3d21228 100644 --- a/tensorflow/examples/speech_commands/wav_to_features.py +++ b/tensorflow/examples/speech_commands/wav_to_features.py @@ -37,8 +37,8 @@ import sys import tensorflow as tf -import tensorflow.examples.speech_commands.input_data as input_data -import tensorflow.examples.speech_commands.models as models +import input_data +import models from tensorflow.python.platform import gfile FLAGS = None