jjaskulowski

Results 2 issues of jjaskulowski

`var pred = W * X + b;` from the regression sample fails to compile and substition to `var pred = tf.multiply(W, X) + b;` fails with unimplemented exception.

This does not converge: ``` using static Tensorflow.KerasApi; using static Tensorflow.tensorflow; using Tensorflow; using Tensorflow.NumPy; var inputs = np.array(new float[,] { { 0, 0 }, { 0, 1 }, {...