TypeError: softmax() got an unexpected keyword argument ‘axis’ The latest version of keras did not support axis as an argument to softmax . I had to downgrade keras. $ pip install keras==2.0.6
Tag Archives: neuralnetwork
What is input_data in TFLearn?
tflearn.layers.core.input_data (shape=None, placeholder=None, dtype=tf.float32, data_preprocessing=None, data_augmentation=None, name=’InputData’) In TFLearn, the input_data is the input layer to the neural network. It is used to specify how the input looks like, before adding any of the usual layer in the sequential model. For example, in the MNIST data set where a 784 array represents 28×28 images with …