Home | History | Annotate | Download | only in tensorflow

Lines Matching full:dataset

187   * `tf.data` now supports `tf.SparseTensor` components in dataset elements.
194 * `Estimator` now supports `Dataset`: `input_fn` can return a `Dataset`
292 * Major new features include `Dataset.from_generator()` (for building an input
293 pipeline from a Python generator), and the `Dataset.apply()` method for
326 * Make `Dataset.shuffle()` always reshuffles after each iteration by default.
349 `tf.contrib.data.Dataset.from_generator` method!
365 `Dataset.apply()`.
367 `Dataset.make_initializable_iterator()` instead.
372 * In Python 3, `Dataset.from_generator()` does not support Unicode strings.
428 * Adds `Dataset.interleave` transformation.
433 * Added `Dataset.list_files` API.
451 * Breaking change to `tf.contrib.data.Dataset` APIs that expect a nested structure. Lists are now converted to `tf.Tensor` implicitly. You may need to change uses of lists to tuples in existing code. In addition, dicts are now supported as a nested structure.
482 * Add in-memory caching to the Dataset API.
1322 * Fix dataset encoding example for Python3 (@danijar)