2017-03-11 3 views
4

내가 Keras이 Theano 백엔드와 함께 설치 및 keras 가져 오는 동안 갑자기 오류를 다음다면 그것은 좋은 일이 :Theano AttributeError : '모듈'개체가 어떤 속성을 '시험없는'

Using Theano backend. 
--------------------------------------------------------------------------- 
AttributeError       Traceback (most recent call last) 
<ipython-input-2-570b835f182b> in <module>() 
     1 # import keras 
----> 2 from keras.preprocessing.image import ImageDataGenerator, array_to_img, img_to_array, load_img 
     3 from keras.models import Sequential 
     4 from keras.layers import Convolution2D, MaxPooling2D 
     5 from keras.layers import Activation, Dropout, Flatten, Dense 

/home/pjwstk.edu.pl/s16352/python/keras/keras/__init__.py in <module>() 
     1 from __future__ import absolute_import 
----> 2 from . import backend 
     3 from . import datasets 
     4 from . import engine 
     5 from . import layers 

/home/pjwstk.edu.pl/s16352/python/keras/keras/backend/__init__.py in <module>() 
    62 if _BACKEND == 'theano': 
    63  sys.stderr.write('Using Theano backend.\n') 
---> 64  from .theano_backend import * 
    65 elif _BACKEND == 'tensorflow': 
    66  sys.stderr.write('Using TensorFlow backend.\n') 

/home/pjwstk.edu.pl/s16352/python/keras/keras/backend/theano_backend.py in <module>() 
----> 1 import theano 
     2 from theano import tensor as T 
     3 from theano.sandbox.rng_mrg import MRG_RandomStreams as RandomStreams 
     4 from theano.tensor.signal import pool 
     5 from theano.tensor.nnet import conv3d2d 

/home/pjwstk.edu.pl/s16352/python/Theano/theano/__init__.pyc in <module>() 
    98 # needed during that phase. 
    99 import theano.tests 
--> 100 if hasattr(theano.tests, "TheanoNoseTester"): 
    101  test = theano.tests.TheanoNoseTester().test 
    102 else: 

AttributeError: 'module' object has no attribute 'tests' 

내가 그것을 실행하고를 Jupyter 노트북 서버에. 실마리가 있습니까?

+0

어떤 Theano 버전을 설치하셨습니까? 최신 버전이나 안정 버전? –

+0

'>>> theano .__ version__ '0.9.0rc1.dev-6bfc2ac93782a6fc478ee648fccb0a26a89671d9'' –

답변

0

이전 버전의 Theano : 0.8.2를 설치해야합니다. 시도하십시오 pip install Theano==0.8.2.

관련 문제