Searched refs:model_content (Results 1 – 17 of 17) sorted by relevance
/external/tensorflow/tensorflow/lite/python/ |
D | interpreter.py | 54 def __init__(self, model_path=None, model_content=None): argument 64 if model_path and not model_content: 70 elif model_content and not model_path: 74 self._model_content = model_content 77 model_content))
|
D | lite_test.py | 100 interpreter = Interpreter(model_content=tflite_model) 129 interpreter = Interpreter(model_content=tflite_model) 167 interpreter = Interpreter(model_content=tflite_model) 226 interpreter = Interpreter(model_content=tflite_model) 269 interpreter = Interpreter(model_content=tflite_model) 322 interpreter = Interpreter(model_content=tflite_model) 355 interpreter = Interpreter(model_content=tflite_model) 402 interpreter = Interpreter(model_content=tflite_model) 436 interpreter = Interpreter(model_content=tflite_model) 468 interpreter = Interpreter(model_content=tflite_model) [all …]
|
D | lite_flex_test.py | 48 interpreter = Interpreter(model_content=tflite_model)
|
D | interpreter_test.py | 66 interpreter = interpreter_wrapper.Interpreter(model_content=data) 135 interpreter_wrapper.Interpreter(model_content=six.b('garbage'))
|
D | convert_test.py | 109 interpreter = Interpreter(model_content=tflite_model) 146 interpreter = Interpreter(model_content=tflite_model)
|
D | lite_v2_test.py | 42 interpreter = Interpreter(model_content=tflite_model)
|
/external/tensorflow/tensorflow/lite/python/optimize/ |
D | calibrator.py | 37 def __init__(self, model_content): argument 46 if not model_content: 50 .CreateWrapperCPPFromBuffer(model_content))
|
/external/tensorflow/tensorflow/lite/tools/ |
D | verifier_test.cc | 207 std::string model_content(reinterpret_cast<char*>(builder.GetBufferPointer()), in TEST() 209 for (size_t i = 0; i < model_content.size(); i++) { in TEST() 210 model_content[i] = (model_content[i] + 137) % 255; in TEST() 211 EXPECT_FALSE(Verify(model_content.data(), model_content.size(), in TEST()
|
/external/tensorflow/tensorflow/lite/testing/model_coverage/ |
D | model_coverage_lib.py | 101 interpreter = _lite.Interpreter(model_content=tflite_model) 124 interpreter = _lite.Interpreter(model_content=tflite_model) 284 interpreter_float = _lite.Interpreter(model_content=tflite_model_float) 294 interpreter_quant = _lite.Interpreter(model_content=tflite_model_quant)
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.lite.-interpreter.pbtxt | 7 …argspec: "args=[\'self\', \'model_path\', \'model_content\'], varargs=None, keywords=None, default…
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.lite.-interpreter.pbtxt | 7 …argspec: "args=[\'self\', \'model_path\', \'model_content\'], varargs=None, keywords=None, default…
|
/external/tensorflow/tensorflow/lite/g3doc/r2/convert/ |
D | python_api.md | 111 file, use `model_path` instead of `model_content`. 136 interpreter = tf.lite.Interpreter(model_content=tflite_model)
|
/external/tensorflow/tensorflow/lite/experimental/examples/lstm/ |
D | unidirectional_sequence_rnn_test.py | 171 interpreter = tf.lite.Interpreter(model_content=tflite)
|
D | unidirectional_sequence_lstm_test.py | 159 interpreter = tf.lite.Interpreter(model_content=tflite)
|
D | bidirectional_sequence_lstm_test.py | 174 interpreter = tf.lite.Interpreter(model_content=tflite)
|
D | bidirectional_sequence_rnn_test.py | 198 interpreter = tf.lite.Interpreter(model_content=tflite)
|
/external/tensorflow/tensorflow/lite/g3doc/convert/ |
D | python_api.md | 233 interpreter = tf.lite.Interpreter(model_content=tflite_model)
|