HomeSort by relevance Sort by last modified time
    Searched refs:data_utils (Results 1 - 14 of 14) sorted by null

  /external/tensorflow/tensorflow/python/keras/utils/
data_utils_test.py 15 """Tests for data_utils."""
59 path = keras.utils.data_utils.get_file('test.txt', origin,
62 hashval_sha256 = keras.utils.data_utils._hash_file(filepath)
63 hashval_md5 = keras.utils.data_utils._hash_file(filepath, algorithm='md5')
64 path = keras.utils.data_utils.get_file(
67 path = keras.utils.data_utils.get_file(
71 self.assertTrue(keras.utils.data_utils.validate_file(filepath,
73 self.assertTrue(keras.utils.data_utils.validate_file(filepath, hashval_md5))
78 hashval_sha256 = keras.utils.data_utils._hash_file(zip_file_path)
79 hashval_md5 = keras.utils.data_utils._hash_file(zip_file_path
    [all...]
__init__.py 21 from tensorflow.python.keras.utils.data_utils import GeneratorEnqueuer
22 from tensorflow.python.keras.utils.data_utils import get_file
23 from tensorflow.python.keras.utils.data_utils import OrderedEnqueuer
24 from tensorflow.python.keras.utils.data_utils import Sequence
25 from tensorflow.python.keras.utils.data_utils import SequenceEnqueuer
  /external/tensorflow/tensorflow/contrib/keras/api/keras/utils/
__init__.py 21 from tensorflow.python.keras.utils.data_utils import GeneratorEnqueuer
22 from tensorflow.python.keras.utils.data_utils import get_file
23 from tensorflow.python.keras.utils.data_utils import Sequence
24 from tensorflow.python.keras.utils.data_utils import SequenceEnqueuer
  /external/tensorflow/tensorflow/python/keras/datasets/
mnist.py 23 from tensorflow.python.keras.utils.data_utils import get_file
boston_housing.py 23 from tensorflow.python.keras.utils.data_utils import get_file
cifar10.py 27 from tensorflow.python.keras.utils.data_utils import get_file
cifar100.py 27 from tensorflow.python.keras.utils.data_utils import get_file
fashion_mnist.py 26 from tensorflow.python.keras.utils.data_utils import get_file
reuters.py 26 from tensorflow.python.keras.utils.data_utils import get_file
imdb.py 26 from tensorflow.python.keras.utils.data_utils import get_file
  /external/tensorflow/tensorflow/python/keras/engine/
training_generator.py 34 from tensorflow.python.keras.utils import data_utils
66 `keras.utils.data_utils.Sequence` object or Eager Iterator or Dataset.
75 `keras.utils.data_utils.Sequence` object or Eager Iterator or Dataset.
143 is_sequence = isinstance(generator, data_utils.Sequence)
380 is_sequence: Boolean, whether data is a `keras.utils.data_utils.Sequence`
396 `keras.utils.data_utils.Sequence` object or Eager Iterator or Dataset.
420 data_utils.is_generator_or_sequence(validation_data) or
422 if (val_gen and not isinstance(validation_data, data_utils.Sequence) and
439 data: Either a generator or `keras.utils.data_utils.Sequence` object or
447 `keras.utils.data_utils.Sequence` types)
    [all...]
training.py 45 from tensorflow.python.keras.utils import data_utils
    [all...]
  /external/tensorflow/tensorflow/python/keras/
callbacks.py 37 from tensorflow.python.keras.utils.data_utils import Sequence
    [all...]
callbacks_test.py 99 class MySequence(keras.utils.data_utils.Sequence):
    [all...]

Completed in 249 milliseconds