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() 121 FixedLenFeature& config = (*fixed_len_features)[i]; in ExtractExampleParserConfiguration() 156 (*fixed_len_features)[i].values_output_tensor_name = in ExtractExampleParserConfiguration() 164 std::vector<FixedLenFeature>* fixed_len_features, in ExampleParserConfigurationProtoToFeatureVectors() argument 184 fixed_len_features->push_back(f); in ExampleParserConfigurationProtoToFeatureVectors()
|
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()
|
D | example_parser_configuration.h | 43 std::vector<FixedLenFeature>* fixed_len_features, 51 std::vector<FixedLenFeature>* fixed_len_features,
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_helper.cc | 217 const std::vector<FixedLenFeature>& fixed_len_features, in SingleExampleProtoToTensors() argument 225 for (size_t d = 0; d < fixed_len_features.size(); ++d) { in SingleExampleProtoToTensors() 226 const FixedLenFeature& feature_config = fixed_len_features[d]; in SingleExampleProtoToTensors() 320 const std::vector<FixedLenFeature>& fixed_len_features, in BatchExampleProtoToTensors() argument 340 fixed_len_features.size()); in BatchExampleProtoToTensors() 343 for (size_t d = 0; d < fixed_len_features.size(); ++d) { in BatchExampleProtoToTensors() 344 const FixedLenFeature& config = fixed_len_features[d]; in BatchExampleProtoToTensors() 365 ex, example_name, b, fixed_len_features, var_len_features, in BatchExampleProtoToTensors()
|
D | example_proto_helper.h | 78 const std::vector<FixedLenFeature>& fixed_len_features, 112 const std::vector<FixedLenFeature>& fixed_len_features,
|