LostTech.TensorFlow : API Documentation

Type FixedLenSequenceFeature

Namespace tensorflow

Parent PythonObjectContainer

Interfaces IFixedLenSequenceFeature

Configuration for parsing a variable-length input feature into a `Tensor`.

The resulting `Tensor` of parsing a single `SequenceExample` or `Example` has a static `shape` of `[None] + shape` and the specified `dtype`. The resulting `Tensor` of parsing a `batch_size` many `Example`s has a static `shape` of `[batch_size, None] + shape` and the specified `dtype`. The entries in the `batch` from different `Examples` will be padded with `default_value` to the maximum length present in the `batch`.

To treat a sparse input as dense, provide `allow_missing=True`; otherwise, the parse functions will fail on any examples missing this feature.

Properties

Public properties

object allow_missing get; set;

object default_value get; set;

object dtype get; set;

object PythonObject get;

object shape get; set;