tf.contrib.timeseries.OneShotPredictionHead

A time series head which exports a single stateless serving signature.

The serving default signature exported by this head expects times, values, and any exogenous features, but no state. values has shape [batch_size, filter_length, num_features] and times has shape [batch_size, total_length], where total_length > filter_length. Any exogenous features must have their shapes prefixed by the shape of the times feature.

When serving, first performs filtering on the series up to filter_length starting from the default start state for the model, then computes predictions on the remainder of the series, returning them.

Model state is neither accepted nor returned, so filtering must be performed each time predictions are requested when using this head.

Args
model A model for time series regression.
state_manager A state manager.
optimizer An optimizer.
input_statistics_generator A input statistics generator.
name An optional name for the model.
Attributes
logits_dimension See _Head.
name The name of this head.

Methods

create_estimator_spec

View source

Performs basic error checking and returns an EstimatorSpec.

create_loss

View source

See _Head.

© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/contrib/timeseries/OneShotPredictionHead