Skip to content

Tag: keras

How to deploy deep learning models in cloud? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 2 years ago. Improve this question I have built a deep learning model with python using keras (LSTM classifier for emotion spee…

Is the linear model trainable in Convolution or NN?

If I’ve an following layer Is this layer trainable? As we know derivative of linear function is constant, so in this cases will the weight get ever updated? Situation like also Answer The layer is trainable. Your data will be approximated by linear function. Training process is finding a function which …