Home
last modified time | relevance | path

Searched refs:fixed_config (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/python/util/
Dexample_parser_configuration.py95 fixed_config = feature_config.fixed_len_feature
97 fixed_config.default_value.CopyFrom(
101 fixed_config.shape.CopyFrom(
104 fixed_config.dtype = dense_types[i].as_datatype_enum
106 fixed_config.values_output_tensor_name = parse_example_op.outputs[
/external/tensorflow/tensorflow/core/example/
Dexample_parser_configuration.cc171 const auto& fixed_config = config.fixed_len_feature(); in ExampleParserConfigurationProtoToFeatureVectors() local
174 f.dtype = fixed_config.dtype(); in ExampleParserConfigurationProtoToFeatureVectors()
175 f.shape = TensorShape(fixed_config.shape()); in ExampleParserConfigurationProtoToFeatureVectors()
177 if (!default_value.FromProto(fixed_config.default_value())) { in ExampleParserConfigurationProtoToFeatureVectors()
180 fixed_config.default_value().DebugString()); in ExampleParserConfigurationProtoToFeatureVectors()
183 f.values_output_tensor_name = fixed_config.values_output_tensor_name(); in ExampleParserConfigurationProtoToFeatureVectors()