HomeSort by relevance Sort by last modified time
    Searched refs:model_file (Results 1 - 15 of 15) sorted by null

  /external/autotest/client/site_tests/hardware_StorageFio/
hardware_StorageFio.py 54 model_file = '%s/model' % dir_path
55 if os.path.exists(model_file):
56 self.__description = utils.read_one_line(model_file).strip()
61 model_file = device_path.replace('block/%s' % device, 'model')
62 if os.path.exists(vendor_file) and os.path.exists(model_file):
64 model = utils.read_one_line(model_file).strip()
  /external/tensorflow/tensorflow/examples/label_image/
label_image.py 26 def load_graph(model_file):
30 with open(model_file, "rb") as f:
77 model_file = \
100 model_file = args.graph variable
118 graph = load_graph(model_file)
78 "tensorflow\/examples\/label_image\/data\/inception_v3_2016_08_28_frozen.pb" variable
  /external/tensorflow/tensorflow/lite/examples/python/
label_image.py 41 parser.add_argument("-m", "--model_file", \
51 interpreter = interpreter_wrapper.Interpreter(model_path=args.model_file)
  /external/tensorflow/tensorflow/lite/tutorials/
mnist_tflite.py 27 flags.DEFINE_string('model_file', '',
72 interpreter = tf.lite.Interpreter(model_path=flags.model_file)
  /external/tensorflow/tensorflow/lite/tools/optimize/calibration/
calibrator_test.cc 198 tensorflow::string model_file; local
200 tensorflow::Flag("test_model_file", &model_file,
209 g_test_model_file = new tensorflow::string(model_file);
node_info_delegate_test.cc 163 tensorflow::string model_file; local
165 tensorflow::Flag("test_model_file", &model_file,
175 new tensorflow::string(tensorflow::io::Dirname(model_file));
  /external/tensorflow/tensorflow/lite/tools/optimize/
quantize_model_test.cc 138 tensorflow::string model_file; local
140 tensorflow::Flag("test_model_file", &model_file,
150 new tensorflow::string(tensorflow::io::Dirname(model_file));
quantization_utils_test.cc 265 tensorflow::string model_file; local
267 tensorflow::Flag("test_model_file", &model_file,
277 new tensorflow::string(tensorflow::io::Dirname(model_file));
quantize_weights_test.cc 342 tensorflow::string model_file; local
344 tensorflow::Flag("test_model_file", &model_file,
354 new tensorflow::string(tensorflow::io::Dirname(model_file));
subgraph_quantizer_test.cc 505 tensorflow::string model_file; local
507 tensorflow::Flag("test_model_file", &model_file,
517 new tensorflow::string(tensorflow::io::Dirname(model_file));
  /external/tensorflow/tensorflow/lite/tools/accuracy/ilsvrc/
README.md 12 * `model_file` : `string` \
130 --model_file=/data/local/tmp/mobilenet_quant_v1_224.tflite \
147 --model_file=mobilenet_quant_v1_224.tflite \
  /external/tensorflow/tensorflow/lite/python/
interpreter_test.py 63 with io.open(model_path, 'rb') as model_file:
64 data = model_file.read()
lite.py 605 model_file,
612 model_file: Full filepath of HDF5 file containing the tf.keras model.
627 keras_model = _keras.models.load_model(model_file)
    [all...]
  /external/tensorflow/tensorflow/lite/java/src/main/native/
nativeinterpreterwrapper_jni.cc 289 JNIEnv* env, jclass clazz, jstring model_file, jlong error_handle) {
293 const char* path = env->GetStringUTFChars(model_file, nullptr);
305 env->ReleaseStringUTFChars(model_file, path);
308 env->ReleaseStringUTFChars(model_file, path);
nativeinterpreterwrapper_jni.h 151 JNIEnv* env, jclass clazz, jstring model_file, jlong error_handle);

Completed in 1384 milliseconds