I have python 3. I installed "Theano" bleeding and "Keras" using
pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git
and
pip install
and
pip install git+git:
But when I try to import Theano, I get the following error:
AttributeError: module 'theano' has no attribute 'gof'
I searched the solution on the Internet and achieved nothing ...
This is the part of the code to which I receive the error message (the last line causes an error):
import sys import numpy as np import pandas as pd from sklearn import preprocessing from keras.models import Sequential
Since I do not have enough experience with python, I am completely lost and cannot figure out what to do ...
Any help would be appreciated.
python theano keras
Ali Jey
source share