Keras: ImportError: Kein Modul namens data_utils

Ich versuche das Modul zu importierenkeras.utils.data_utils aber es funktioniert nicht. Allerdings finde ich dieses ModulHie. Es ist in der Tat vorhanden. Warum kann ich es nicht importieren, während ich einige andere Module wie @ importieren kankeras.models undkeras.layers.core?

cliu@cliu-ubuntu:bin$ python
Python 2.7.9 (default, Apr  2 2015, 15:33:21) 
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from __future__ import print_function
>>> from keras.models import Sequential 
>>> from keras.layers.core import Dense, Activation, Dropout 
>>> from keras.layers.recurrent import LSTM
>>> from keras.utils.data_utils import get_file
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named data_utils

Bearbeiten

SehenHie für die Antwort.

Antworten auf die Frage(8)

Ihre Antwort auf die Frage