Open
Description
I want to make CNN using Tensorflowsharp.
Are there any examples to note?
I want to apply it to Mnist.
There are other questions.
How should tf.zero be used in Tensorflowsharp?
W = tf.Variable (tf.zeros ([784, 10]))
b = tf.Variable (tf.zeros ([10]))
How do I fix this when using this part with Tensorflowsharp?