Searched refs:input_tensor_names (Results 1 – 4 of 4) sorted by relevance
73 input_tensor_names = [77 func_graph.get_tensor_by_name(name) for name in input_tensor_names
182 std::vector<std::string> input_tensor_names = std::move(names.first); in CreateModelInfo() local185 for (int i = 0; i < input_tensor_names.size(); i++) { in CreateModelInfo()188 input_tensor_names[i], true, i, err)); in CreateModelInfo()189 if (i < input_tensor_names.size() - 1) { in CreateModelInfo()
841 std::vector<string> input_tensor_names; in Run() local842 input_tensor_names.reserve(inputs.size()); in Run()845 input_tensor_names.push_back(it.first); in Run()856 TF_RETURN_IF_ERROR(GetOrCreateExecutors(input_tensor_names, output_names, in Run()
343 def input_tensor_names(self): member in ModelHandlerV2