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.cc232 const auto& feature_found = feature_dict.find(key); in SingleExampleProtoToTensors() local
234 (feature_found != feature_dict.end() && in SingleExampleProtoToTensors()
235 (feature_found->second.kind_case() != Feature::KIND_NOT_SET)); in SingleExampleProtoToTensors()
246 const Feature& f = feature_found->second; in SingleExampleProtoToTensors()
271 const auto& feature_found = feature_dict.find(key); in SingleExampleProtoToTensors() local
274 (feature_found != feature_dict.end() && in SingleExampleProtoToTensors()
275 (feature_found->second.kind_case() != Feature::KIND_NOT_SET)); in SingleExampleProtoToTensors()
278 const Feature& f = feature_found->second; in SingleExampleProtoToTensors()
/external/tensorflow/tensorflow/core/kernels/
Dexample_parsing_ops.cc635 const auto& feature_found = context_dict.find(key); in Compute() local
637 ctx, (feature_found != context_dict.end()) || !required[d], in Compute()
640 if (feature_found != context_dict.end()) { in Compute()
641 const Feature& f = feature_found->second; in Compute()
664 const auto& feature_found = context_dict.find(key); in Compute() local
666 (feature_found != context_dict.end() && in Compute()
667 (feature_found->second.kind_case() != Feature::KIND_NOT_SET)); in Compute()
670 const Feature& f = feature_found->second; in Compute()