Theano is a numerical computation library for Python.
I would like to implement word2vec algorithm in keras, Is this possible? How can I fit the model? Should …
nlp deep-learning keras theano word2vecIs there anyway to use Rectified Linear Unit (ReLU) as the activation function of the hidden layer instead of tanh() …
python machine-learning neural-network theanoI'm new to Keras and im trying to do Binary MLP on a dataset, and keep getting indices out of …
neural-network theano kerasrunning a Dense feed-forward neural net in Keras. there are class_weights for two outputs, and sample_weights for a …
tensorflow progress-bar theano keras keras-layerI use the VGG-16 Net by keras. This is the detail my problem is how to use this net to …
keras deep-learning theano face-recognition vgg-netI'm trying to do binary LSTM classification using theano. I have gone through the example code however I want to …
python-2.7 speech-recognition theano mfcc lstmCan someone help me rewrite this one function (the doTheMath function) to do the calculations on the GPU? I used …
python numpy tensorflow theano numbaI am trying to install theano in Google Colab for testing. I have installed virtualenv and created an environment: !pip3 …
virtualenv theano google-colaboratoryI have defined a regressor as follows: nn1 = Regressor( layers=[ Layer("Rectifier", units=150), Layer("Rectifier", units=100), Layer("Linear")], regularize="L2", # …
python machine-learning scikit-learn theano