Searched refs:PredictionFeatures (Results 1 – 9 of 9) sorted by relevance
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/ |
D | head.py | 141 feature_keys.PredictionFeatures.TIMES] 180 feature_keys.PredictionFeatures.TIMES 185 if name == feature_keys.PredictionFeatures.STATE_TUPLE: 211 if feature_keys.PredictionFeatures.TIMES not in features: 213 feature_keys.PredictionFeatures.TIMES)) 214 if feature_keys.PredictionFeatures.STATE_TUPLE not in features: 216 feature_keys.PredictionFeatures.STATE_TUPLE)) 217 times_feature = features[feature_keys.PredictionFeatures.TIMES] 221 "(got shape {})").format(feature_keys.PredictionFeatures.TIMES, 225 compatible_with_name=feature_keys.PredictionFeatures.TIMES, [all …]
|
D | head_test.py | 282 feature_keys.PredictionFeatures.TIMES)): 285 feature_keys.PredictionFeatures.STATE_TUPLE: ([[[1.]]], 1.) 293 feature_keys.PredictionFeatures.STATE_TUPLE)): 295 features={feature_keys.PredictionFeatures.TIMES: [[1]]}, 303 feature_keys.PredictionFeatures.TIMES)): 306 feature_keys.PredictionFeatures.TIMES: 1, 307 feature_keys.PredictionFeatures.STATE_TUPLE: (1, (2, 3.)) 319 feature_keys.PredictionFeatures.TIMES: [[1]], 320 feature_keys.PredictionFeatures.STATE_TUPLE: (1, (2, 3.)),
|
D | ar_model_test.py | 29 from tensorflow.contrib.timeseries.python.timeseries.feature_keys import PredictionFeatures 163 PredictionFeatures.TIMES: training.limit_epochs( 165 PredictionFeatures.STATE_TUPLE: (state_times, 254 PredictionFeatures.TIMES: [[4, 6, 10]], 255 PredictionFeatures.STATE_TUPLE: ( 275 PredictionFeatures.TIMES: [[4, 6, 10]], 276 PredictionFeatures.STATE_TUPLE: (
|
D | model.py | 27 from tensorflow.contrib.timeseries.python.timeseries.feature_keys import PredictionFeatures 566 if key not in [PredictionFeatures.STATE_TUPLE, 651 predict_times = ops.convert_to_tensor(features[PredictionFeatures.TIMES], 653 start_state = features[PredictionFeatures.STATE_TUPLE] 660 [PredictionFeatures.TIMES, PredictionFeatures.STATE_TUPLE]
|
D | saved_model_utils.py | 106 features = {_feature_keys.PredictionFeatures.TIMES: predict_times} 117 _feature_keys.PredictionFeatures.TIMES]
|
D | feature_keys.py | 51 class PredictionFeatures(Times, State): class
|
D | ar_model.py | 25 from tensorflow.contrib.timeseries.python.timeseries.feature_keys import PredictionFeatures 511 ops.convert_to_tensor(features[PredictionFeatures.TIMES]), dtypes.int32) 517 PredictionFeatures.STATE_TUPLE]}) 534 state = features[PredictionFeatures.STATE_TUPLE] 762 PredictionFeatures.STATE_TUPLE]})
|
D | input_pipeline.py | 135 feature_keys.PredictionFeatures.STATE_TUPLE: 137 feature_keys.PredictionFeatures.TIMES:
|
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/ |
D | state_space_model_test.py | 371 feature_keys.PredictionFeatures.TIMES: [[1, 3, 5, 6]], 372 feature_keys.PredictionFeatures.STATE_TUPLE: 403 feature_keys.PredictionFeatures.TIMES: [[5, 7, 8]], 404 feature_keys.PredictionFeatures.STATE_TUPLE: model_outputs.end_state
|