Searched refs:fixed_len_features (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/core/example/ |
D | example_parser_configuration.cc | 47 std::vector<FixedLenFeature>* fixed_len_features, in ExtractExampleParserConfiguration() argument 60 fixed_len_features->resize(num_dense); in ExtractExampleParserConfiguration() 87 (*fixed_len_features)[i].dtype = tdense.list().type(i); in ExtractExampleParserConfiguration() 89 (*fixed_len_features)[i].shape = TensorShape(dense_shapes.list().shape(i)); in ExtractExampleParserConfiguration() 122 FixedLenFeature& config = (*fixed_len_features)[i]; in ExtractExampleParserConfiguration() 157 (*fixed_len_features)[i].values_output_tensor_name = in ExtractExampleParserConfiguration() 165 std::vector<FixedLenFeature>* fixed_len_features, in ExampleParserConfigurationProtoToFeatureVectors() argument 185 fixed_len_features->push_back(f); in ExampleParserConfigurationProtoToFeatureVectors()
|
D | example_parser_configuration.h | 43 std::vector<FixedLenFeature>* fixed_len_features, 51 std::vector<FixedLenFeature>* fixed_len_features,
|
D | example_parser_configuration_test.cc | 200 std::vector<FixedLenFeature> fixed_len_features; in TEST_F() local 203 config_proto_, &fixed_len_features, &var_len_features)); in TEST_F() 204 ASSERT_EQ(1, fixed_len_features.size()); in TEST_F() 207 const FixedLenFeature& f = fixed_len_features[0]; in TEST_F()
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_helper.cc | 220 const std::vector<FixedLenFeature>& fixed_len_features, in SingleExampleProtoToTensors() argument 228 for (size_t d = 0; d < fixed_len_features.size(); ++d) { in SingleExampleProtoToTensors() 229 const FixedLenFeature& feature_config = fixed_len_features[d]; in SingleExampleProtoToTensors() 323 const std::vector<FixedLenFeature>& fixed_len_features, in BatchExampleProtoToTensors() argument 343 fixed_len_features.size()); in BatchExampleProtoToTensors() 346 for (size_t d = 0; d < fixed_len_features.size(); ++d) { in BatchExampleProtoToTensors() 347 const FixedLenFeature& config = fixed_len_features[d]; in BatchExampleProtoToTensors() 368 ex, example_name, b, fixed_len_features, var_len_features, in BatchExampleProtoToTensors()
|
D | example_proto_helper.h | 79 const std::vector<FixedLenFeature>& fixed_len_features, 113 const std::vector<FixedLenFeature>& fixed_len_features,
|