Tensorflow Cnn Model Not Training? Constant Loss And Accuracy
I have built a model using this as a base. And the train portion from this code. This model does not train and always gives the cost/loss output for every iteration. I dont think i
Solution 1:
The code you started from is just a benchmark of the forward and backward pass and isn't designed to do training. You should start from an example that actually trains a model instead and ignore the benchmark code.
You might have an easier time starting from a completely working training example program instead of trying to combine two pieces.
Post a Comment for "Tensorflow Cnn Model Not Training? Constant Loss And Accuracy"