Searched refs:var_len_features (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/core/example/ |
D | example_parser_configuration.cc | 48 std::vector<VarLenFeature>* var_len_features) { in ExtractExampleParserConfiguration() argument 61 var_len_features->resize(num_sparse); in ExtractExampleParserConfiguration() 93 (*var_len_features)[i].dtype = sparse_types.list().type(i); in ExtractExampleParserConfiguration() 117 (*var_len_features)[i].key = in ExtractExampleParserConfiguration() 140 VarLenFeature& config = (*var_len_features)[i]; in ExtractExampleParserConfiguration() 166 std::vector<VarLenFeature>* var_len_features) { in ExampleParserConfigurationProtoToFeatureVectors() argument 195 var_len_features->push_back(v); in ExampleParserConfigurationProtoToFeatureVectors()
|
D | example_parser_configuration.h | 44 std::vector<VarLenFeature>* var_len_features); 52 std::vector<VarLenFeature>* var_len_features);
|
D | example_parser_configuration_test.cc | 201 std::vector<VarLenFeature> var_len_features; in TEST_F() local 203 config_proto_, &fixed_len_features, &var_len_features)); in TEST_F() 205 ASSERT_EQ(1, var_len_features.size()); in TEST_F() 220 const VarLenFeature& v = var_len_features[0]; in TEST_F()
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_helper.cc | 221 const std::vector<VarLenFeature>& var_len_features, in SingleExampleProtoToTensors() argument 270 for (size_t d = 0; d < var_len_features.size(); ++d) { in SingleExampleProtoToTensors() 271 const VarLenFeature& feature_config = var_len_features[d]; in SingleExampleProtoToTensors() 324 const std::vector<VarLenFeature>& var_len_features, Allocator* allocator, in BatchExampleProtoToTensors() argument 358 std::vector<std::vector<Tensor>> sparse_values_tmp(var_len_features.size()); in BatchExampleProtoToTensors() 360 for (size_t d = 0; d < var_len_features.size(); ++d) { in BatchExampleProtoToTensors() 368 ex, example_name, b, fixed_len_features, var_len_features, in BatchExampleProtoToTensors() 372 for (size_t d = 0; d < var_len_features.size(); ++d) { in BatchExampleProtoToTensors() 373 const VarLenFeature& feature_config = var_len_features[d]; in BatchExampleProtoToTensors()
|
D | example_proto_helper.h | 80 const std::vector<VarLenFeature>& var_len_features, 114 const std::vector<VarLenFeature>& var_len_features, Allocator* allocator,
|