From 7208b0378dd8069f8e958734e944bd2aeb42fd6f Mon Sep 17 00:00:00 2001 From: carb0n <58676303+carb0n@users.noreply.github.com> Date: Tue, 18 Aug 2020 00:40:36 -0400 Subject: [PATCH] fix build error --- src/TensorFlowNET.Core/APIs/tf.image.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TensorFlowNET.Core/APIs/tf.image.cs b/src/TensorFlowNET.Core/APIs/tf.image.cs index 91e730e4..3a43ae08 100644 --- a/src/TensorFlowNET.Core/APIs/tf.image.cs +++ b/src/TensorFlowNET.Core/APIs/tf.image.cs @@ -183,7 +183,7 @@ namespace Tensorflow image_ops_impl.crop_and_resize(image, boxes, box_ind, crop_size, method, extrapolation_value, name); public Tensor extract_glimpse(Tensor input, Tensor size, Tensor offsets, bool centered = true, bool normalized = true, - bool uniform_noise, string name = null) + bool uniform_noise = true, string name = null) => image_ops_impl.extract_glimpse(input, size, offsets, centered, normalized, uniform_noise, name); public (Tensor, Tensor, Tensor, Tensor) combined_non_max_suppression(Tensor boxes, Tensor scores, Tensor max_output_size_per_class,