質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.49%
Jupyter

Jupyter (旧IPython notebook)は、Notebook形式でドキュメント作成し、プログラムの記述・実行、その実行結果を記録するツールです。メモの作成や保存、共有、確認などもブラウザ上で行うことができます。

Keras

Kerasは、TheanoやTensorFlow/CNTK対応のラッパーライブラリです。DeepLearningの数学的部分を短いコードでネットワークとして表現することが可能。DeepLearningの最新手法を迅速に試すことができます。

Neural Network Console

Neural Network Consoleは、ソニー社が開発したディープラーニング・ツール。ニューラルネットワークを視覚的に設計することが可能で、学習や評価をスムーズに実現できます。また、ニューラルネットワークを自動的に構築する機能も備わっています。

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

Q&A

0回答

683閲覧

Kerasのデータセットのダウンロード失敗について

Taaaa3377

総合スコア0

Jupyter

Jupyter (旧IPython notebook)は、Notebook形式でドキュメント作成し、プログラムの記述・実行、その実行結果を記録するツールです。メモの作成や保存、共有、確認などもブラウザ上で行うことができます。

Keras

Kerasは、TheanoやTensorFlow/CNTK対応のラッパーライブラリです。DeepLearningの数学的部分を短いコードでネットワークとして表現することが可能。DeepLearningの最新手法を迅速に試すことができます。

Neural Network Console

Neural Network Consoleは、ソニー社が開発したディープラーニング・ツール。ニューラルネットワークを視覚的に設計することが可能で、学習や評価をスムーズに実現できます。また、ニューラルネットワークを自動的に構築する機能も備わっています。

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

0グッド

0クリップ

投稿2020/05/06 09:04

編集2020/05/06 09:33

初歩的な質問ですみません、現在、Tensorflowを使用した回帰分析を行うところなのですが、kerasのデータセット(housing_boston)をダウンロードしようとするとエラーが出てしまい、分析が行えない状況です(ほかのデータセットも試してみましたが同様の結果が返ってきました)。仮想環境はJupyterです。Tensorflowのバージョンは1.14.0となります。

--------コード--------

import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
import tensorflow as tf
import numpy as np
from tensorflow import keras

datasets = tf.keras.datasets.boston_housing
train, test = dataset.load_data()

-------実行結果----------

ERROR:root:Internal Python error in the inspect module.
Below is the traceback from this internal error.

Traceback (most recent call last):
File "C:\Users\PCUser\anaconda3\lib\site-packages\IPython\core\interactiveshell.py", line 3331, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-17-44ebfe4adaa8>", line 1, in <module>
dataset = tf.keras.datasets.boston_housing
AttributeError: module 'tensorflow' has no attribute 'keras'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "C:\Users\PCUser\anaconda3\lib\site-packages\IPython\core\interactiveshell.py", line 2044, in showtraceback
stb = value.render_traceback()
AttributeError: 'AttributeError' object has no attribute 'render_traceback'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:\Users\PCUser\anaconda3\lib\imp.py", line 242, in load_module
return load_dynamic(name, filename, file)
File "C:\Users\PCUser\anaconda3\lib\imp.py", line 342, in load_dynamic
return _load(spec)
ImportError: DLL load failed: 指定されたモジュールが見つかりません。

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "C:\Users\PCUser\anaconda3\lib\site-packages\IPython\core\ultratb.py", line 1151, in get_records
return _fixed_getinnerframes(etb, number_of_lines_of_context, tb_offset)
File "C:\Users\PCUser\anaconda3\lib\site-packages\IPython\core\ultratb.py", line 319, in wrapped
return f(*args, **kwargs)
File "C:\Users\PCUser\anaconda3\lib\site-packages\IPython\core\ultratb.py", line 353, in fixed_getinnerframes
records = fix_frame_records_filenames(inspect.getinnerframes(etb, context))
File "C:\Users\PCUser\anaconda3\lib\inspect.py", line 1502, in getinnerframes
frameinfo = (tb.tb_frame,) + getframeinfo(tb, context)
File "C:\Users\PCUser\anaconda3\lib\inspect.py", line 1460, in getframeinfo
filename = getsourcefile(frame) or getfile(frame)
File "C:\Users\PCUser\anaconda3\lib\inspect.py", line 696, in getsourcefile
if getattr(getmodule(object, filename), 'loader', None) is not None:
File "C:\Users\PCUser\anaconda3\lib\inspect.py", line 733, in getmodule
if ismodule(module) and hasattr(module, 'file'):
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_init
.py", line 50, in getattr
module = self.load()
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_init
.py", line 44, in _load
module = importlib.import_module(self.name)
File "C:\Users\PCUser\anaconda3\lib\importlib_init
.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 953, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in call_with_frames_removed
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core_init
.py", line 42, in <module>
from . api.v2 import audio
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core_api\v2\audio_init
.py", line 10, in <module>
from tensorflow.python.ops.gen_audio_ops import decode_wav
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python\ops\gen_audio_ops.py", line 9, in <module>
from tensorflow.python import pywrap_tensorflow as pywrap_tensorflow
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_init
.py", line 50, in getattr
module = self.load()
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_init
.py", line 44, in _load
module = importlib.import_module(self.name)
File "C:\Users\PCUser\anaconda3\lib\importlib_init
.py", line 127, in import_module
return _bootstrap.gcd_import(name[level:], package, level)
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python_init
.py", line 49, in <module>
from tensorflow.python import pywrap_tensorflow
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.py", line 74, in <module>
raise ImportError(msg)
ImportError: Traceback (most recent call last):
File "C:\Users\PCUser\anaconda3\lib\site-packages\IPython\core\interactiveshell.py", line 3331, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-17-44ebfe4adaa8>", line 1, in <module>
dataset = tf.keras.datasets.boston_housing
AttributeError: module 'tensorflow' has no attribute 'keras'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "C:\Users\PCUser\anaconda3\lib\site-packages\IPython\core\interactiveshell.py", line 2044, in showtraceback
stb = value.render_traceback()
AttributeError: 'AttributeError' object has no attribute 'render_traceback'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Users\PCUser\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:\Users\PCUser\anaconda3\lib\imp.py", line 242, in load_module
return load_dynamic(name, filename, file)
File "C:\Users\PCUser\anaconda3\lib\imp.py", line 342, in load_dynamic
return _load(spec)
ImportError: DLL load failed: 指定されたモジュールが見つかりません。

Failed to load the native TensorFlow runtime.

See https://www.tensorflow.org/install/errors

for some common reasons and solutions. Include the entire stack trace
above this error message when asking for help.


なにとぞよろしくお願いいたします。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

meg_

2020/05/06 09:10

tensorflowのバージョンを追記してください。
tiitoi

2020/05/06 09:12

ダウンロード以前に import tensorflow as tf で失敗しています。 GPU 版の tensorflow をインストールしているのに、そのバージョンが要求する CUDA 等のライブラリがないのが原因の可能性があります。
Taaaa3377

2020/05/06 09:29

meg_さま 失礼いたしました。バージョンは1.14.0 です。
meg_

2020/05/06 09:40

バージョンは1.14.0 で問題なくデータダウンロード部分は動作しました。 「import tensorflow as tf」の実行は成功していますか?
Taaaa3377

2020/05/06 09:57

tiitoiさま ご回答ありがとうございます。確認しましたところ、インストールしているのはCPU版でした。これまでTensorflowを使用し分類も行っているのですが、この段階でエラーが起きたのは初めてです。もう一度環境構築から見直してみます。
meg_

2020/05/06 10:17

補足ですが「バージョンは1.14.0 で問題なくデータダウンロード部分は動作しました。」のときのtensorflowはcpu版です。ご参考まで。
Taaaa3377

2020/05/06 10:22

meg_さま ご返信ありがとうございます。該当の部分を再度実行してみましたが、エラーは返ってきませんでした。。。
meg_

2020/05/06 10:30

jupyter notebookをお使いなら、一度カーネルの再起動から実行すると治るかもしれません。
Taaaa3377

2020/05/06 10:51

meg_さま ありがとうございます。一度環境構築をやり直したところ、以下のような別のエラーが出てきました。 そのため、kerasも改めてcondapromptよりインストールし直したのですが、直りませんでした。。 --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-1-2583a08ed1d5> in <module> 3 import seaborn as sns 4 import tensorflow as tf ----> 5 from tensorflow import keras 6 dataset = tf.keras.datasets.boston_housing 7 train, test = dataset.load_data() ImportError: cannot import name 'keras' from 'tensorflow' (unknown location)
meg_

2020/05/06 11:14

「import tensorflow as tf」は成功してるみたいですね。tensorflowの下にkerasがいないってエラーメッセージですが、実際にフォルダを探してみて存在していますか?
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだ回答がついていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.49%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問