.NET based ecosystem of open-source software for mathematics, science, and engineering.
List<Vector3> testList = new List<Vector3>();
testList.Add(new Vector3(0, 1, 2));
testList.Add(new Vector3(3, 4, 5));
testList.Add(new Vector3(6, 7, 8));
Vector3[] arrayTestList = testList.ToArray();
NDArray testNdArray = np.array(arrayTestList);
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?: