.NET based ecosystem of open-source software for mathematics, science, and engineering.
dependabot[bot] on nuget
Bump Newtonsoft.Json in /src/Te… (compare)
1 training)
at Tensorflow.Keras.Engine.Layer.<>c__DisplayClass1_0.<Apply>b__0(NameScope scope)
at Tensorflow.Binding.tf_with[T](T py, Action
1 action)@Oceania2018 I'm new to neural networks and tensorflow. I'm not sure what I would unit test.
Would this help?:
1 var_list, Nullable
1 aggregation_method, GateGradientType gate_gradients, Boolean colocate_gradients_with_ops, Tensor grad_loss)1 var_list, GateGradientType gate_gradients, Nullable
1 aggregation_method, Boolean colocate_gradients_with_ops, String name, Tensor grad_loss)
Here's a fun one. Conv2DTranspose has default value for
bool use_bias = true,
However in the actual concrete class:
if (use_bias)
throw new NotImplementedException("");
case int[] shape2:
if (shape.ndim != shape2.Length)
return false;
int[] newDims;
newDims = new int[shape.dims.Length];
for (int i = 0; i < shape.dims.Length; i++)
{
newDims[i] = (int)shape.dims[i];
}
return Enumerable.SequenceEqual(newDims, shape2);