single neuron feed forward network in tensorflow
I made a feed forward single neuron network. The prediction prints 0.5 while it should print 0.0. I'm very new to tensorflow. Please help me. This is my code: """ O---(w1)-\ \ O---(w2)-->Sum...
View ArticleHow to train a classifier that contain multi dimensional featured input values
I am trying to model a classifier that contain Multi Dimensional Feature as input. Can any one knew of a dataset that contain multi dimensional Features? Lets say for example: In mnist data we have...
View ArticleTensorflow error: Failed to convert object of type to Tensor
I am trying to code a neural network which can recognize handwritten digits. I am using the MNIST dataset and the tensor flow library. For now, I am only trying to train the network but it throws a...
View ArticleTensorflow 2.0: ValueError: slice index 0 of dimension 0 out of bounds
My current task to perform binary classification using both numerical and ordinal categorical data.For this task, I effectively replicated the code from the following Tensorflow tutorial:...
View ArticleInput 0 of layer "sequential" is incompatible with the layer: expected...
I'm building my first model and I'm following the step by step from the professor, but I seem to have found an error in a layer in the model. I am a begginner and would appreciate any input. Full code...
View Article