From ed4f2cc3e78cf097c60a39d2832b6141d02ae77c Mon Sep 17 00:00:00 2001 From: carb0n <58676303+carb0n@users.noreply.github.com> Date: Tue, 18 Aug 2020 00:41:57 -0400 Subject: [PATCH] fix dumb upload error --- src/TensorFlowNET.Core/Operations/math_ops.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/TensorFlowNET.Core/Operations/math_ops.cs b/src/TensorFlowNET.Core/Operations/math_ops.cs index 0231f201..4fcb5186 100644 --- a/src/TensorFlowNET.Core/Operations/math_ops.cs +++ b/src/TensorFlowNET.Core/Operations/math_ops.cs @@ -379,19 +379,6 @@ namespace Tensorflow return reduce_mean(squared_deviations, axis: axis, keepdims: keepdims); }); } - - public static Tensor reduce_std(Tensor input_tensor, int[] axis = null, bool keepdims = false, string name = null) - { - if (name == null) - name = "reduce_std"; - // else {name = name;} - - return tf_with(ops.name_scope(name, "reduce_std", new [] {input_tensor}), scope => - { - var variance = reduce_variance(input_tensor, axis: axis, keepdims: keepdims); - return gen_math_ops.sqrt(variance); - }); - } public static Tensor sigmoid(T x, string name = null) => tf_with(ops.name_scope(name, "Sigmoid", x), scope =>