Top "Theano" questions

Theano is a numerical computation library for Python.

Implement word2vec in Keras

I would like to implement word2vec algorithm in keras, Is this possible? How can I fit the model? Should …

nlp deep-learning keras theano word2vec
Theano HiddenLayer Activation Function

Is there anyway to use Rectified Linear Unit (ReLU) as the activation function of the hidden layer instead of tanh() …

python machine-learning neural-network theano
Keras IndexError: indices are out-of-bounds

I'm new to Keras and im trying to do Binary MLP on a dataset, and keep getting indices out of …

neural-network theano keras
Keras verbose training progress bar writing a new line on each batch issue

running 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-layer
How to use the vgg-net when I load vgg16_weights.h5?

I 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-net
nvcc fatal : Value 'sm_61' is not defined for option 'gpu-architecture' error with theano

I was setting up python and theano for use with gpu on; ubuntu 14.04, GeForce GTX 1080 already installed NVIDIA driver (367.27) and …

python cuda gpu theano nvcc
Building Speech Dataset for LSTM binary classification

I'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 lstm
Python: rewrite a looping numpy math function to run on GPU

Can someone help me rewrite this one function (the doTheMath function) to do the calculations on the GPU? I used …

python numpy tensorflow theano numba
Is it possible to activate virtualenv in Google-colab? (/bin/sh: 1: source: not found)

I am trying to install theano in Google Colab for testing. I have installed virtualenv and created an environment: !pip3 …

virtualenv theano google-colaboratory
sklearn: How to reset a Regressor or classifier object in sknn

I 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