HomeSort by relevance Sort by last modified time
    Searched defs:input_std (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/contrib/lite/examples/label_image/
label_image.h 30 float input_std = 127.5f; member in struct:tflite::label_image::Settings
  /external/tensorflow/tensorflow/examples/label_image/
label_image.py 42 input_std=255):
60 normalized = tf.divide(tf.subtract(resized, [input_mean]), [input_std])
83 input_std = 255 variable
94 parser.add_argument("--input_std", type=int, help="input std")
111 if args.input_std:
112 input_std = args.input_std variable
124 input_std=input_std) variable
main.cc 116 const float input_std,
169 {input_std});
288 float input_std = 255; local
301 Flag("input_std", &input_std, "scale pixel values to this std deviation"),
337 input_std, &resized_tensors);
  /external/tensorflow/tensorflow/examples/multibox_detector/
main.cc 74 const float input_std,
117 {input_std});
339 int32 input_std = 128; local
358 Flag("input_std", &input_std, "scale pixel values to this std deviation"),
402 input_std, &image_tensors);
  /external/tensorflow/tensorflow/contrib/pi_examples/camera/
camera.cc 334 const float input_std,
344 // range that the model expects (given by input_mean and input_std).
380 const float top_left((in_top_left_pixel[c] - input_mean) / input_std);
381 const float top_right((in_top_right_pixel[c] - input_mean) / input_std);
383 input_std);
385 input_std);
408 int32 input_std = 128; local
421 Flag("input_std", &input_std, "transformed std dev of input pixels"),
493 input_width, input_mean, input_std, &resized_tensors)
    [all...]
  /external/tensorflow/tensorflow/contrib/pi_examples/label_image/
label_image.cc 137 const float input_std,
155 // range that the model expects (given by input_mean and input_std).
191 const float top_left((in_top_left_pixel[c] - input_mean) / input_std);
192 const float top_right((in_top_right_pixel[c] - input_mean) / input_std);
194 input_std);
196 input_std);
318 int32 input_std = 128; local
331 Flag("input_std", &input_std, "scale pixel values to this std deviation"),
367 input_std, &resized_tensors)
    [all...]

Completed in 99 milliseconds