Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/util/
Dexample_proto_helper.cc235 const auto& feature_found = feature_dict.find(key); in SingleExampleProtoToTensors() local
237 (feature_found != feature_dict.end() && in SingleExampleProtoToTensors()
238 (feature_found->second.kind_case() != Feature::KIND_NOT_SET)); in SingleExampleProtoToTensors()
249 const Feature& f = feature_found->second; in SingleExampleProtoToTensors()
274 const auto& feature_found = feature_dict.find(key); in SingleExampleProtoToTensors() local
277 (feature_found != feature_dict.end() && in SingleExampleProtoToTensors()
278 (feature_found->second.kind_case() != Feature::KIND_NOT_SET)); in SingleExampleProtoToTensors()
281 const Feature& f = feature_found->second; in SingleExampleProtoToTensors()
/external/tensorflow/tensorflow/core/kernels/
Dexample_parsing_ops.cc991 const auto& feature_found = context_dict.find(key); in Compute() local
993 ctx, (feature_found != context_dict.end()) || !required[d], in Compute()
996 if (feature_found != context_dict.end()) { in Compute()
997 const Feature& f = feature_found->second; in Compute()
1020 const auto& feature_found = context_dict.find(key); in Compute() local
1022 (feature_found != context_dict.end() && in Compute()
1023 (feature_found->second.kind_case() != Feature::KIND_NOT_SET)); in Compute()
1026 const Feature& f = feature_found->second; in Compute()