Fix import path issues when running tensorflow/examples/speech_commands/test_streaming_accuracy.py

PiperOrigin-RevId: 294345902
Change-Id: Ib8a1d489275bc2ed5c0044f4aabe21fdb373b4e0
This commit is contained in:
Meghna Natraj 2020-02-10 17:49:39 -08:00 committed by TensorFlower Gardener
parent ae6efa0b93
commit 3d6df0985d
4 changed files with 8 additions and 8 deletions

View File

@ -45,8 +45,8 @@ import sys
import tensorflow as tf
from tensorflow.python.ops import gen_audio_ops as audio_ops
import input_data
import models
import tensorflow.examples.speech_commands.input_data as input_data
import tensorflow.examples.speech_commands.models as models
from tensorflow.python.framework import graph_util
# If it's available, load the specialized feature generator. If this doesn't

View File

@ -46,8 +46,8 @@ import sys
import numpy as np
import tensorflow as tf
import input_data
import models
import tensorflow.examples.speech_commands.input_data as input_data
import tensorflow.examples.speech_commands.models as models
FLAGS = None

View File

@ -78,8 +78,8 @@ import numpy as np
from six.moves import xrange # pylint: disable=redefined-builtin
import tensorflow as tf
import input_data
import models
import tensorflow.examples.speech_commands.input_data as input_data
import tensorflow.examples.speech_commands.models as models
from tensorflow.python.platform import gfile
FLAGS = None

View File

@ -37,8 +37,8 @@ import sys
import tensorflow as tf
import input_data
import models
import tensorflow.examples.speech_commands.input_data as input_data
import tensorflow.examples.speech_commands.models as models
from tensorflow.python.platform import gfile
FLAGS = None