Lines Matching full:interpreter
27 #include "tensorflow/lite/interpreter.h"
74 // Creates an Interpreter for the model that serves as a scratch-pad for the
75 // inference. The Interpreter is NOT thread-safe.
76 std::unique_ptr<tflite::Interpreter> CreateInterpreter() const;
80 tflite::Interpreter* interpreter) const { in SetInput() argument
81 input_data.copy_to(interpreter->typed_input_tensor<T>(input_index), in SetInput()
87 tflite::Interpreter* interpreter) const { in SetInput() argument
89 interpreter->typed_input_tensor<T>(input_index)); in SetInput()
94 tflite::Interpreter* interpreter) const { in SetInput() argument
96 interpreter->tensor(interpreter->inputs()[input_index]); in SetInput()
126 const tflite::Interpreter* interpreter) const { in OutputView() argument
128 interpreter->tensor(interpreter->outputs()[output_index]); in OutputView()
129 return TensorView<T>(interpreter->typed_output_tensor<T>(output_index), in OutputView()
137 const tflite::Interpreter* interpreter) const { in Output() argument
138 TensorView<T> output_view = OutputView<T>(output_index, interpreter); in Output()
156 tflite::Interpreter* interpreter) const;
160 const int output_index, const tflite::Interpreter* interpreter) const;
164 const int output_index, const tflite::Interpreter* interpreter) const;