前提・実現したいこと
出力結果としては
データの個数=[[0. 0. 5. 13. 9. 1. 0. 0.]
[0. 0. 13. 15. 9. 1. 0. 0.]
[0. 3. 15. 2. 0. 11. 8. 0.]
[0. 4. 12. 0. 0. 8. 8. 0.]
※中略
何の数字か=0
と表示させたいです。
発生している問題・エラーメッセージ
import sklearn.datasets
digits = sklearn.datasets.load_digits()
print("データの個数=",len(digits.image))
print("画像データ=",digits.images[0])
print("何の数字か=",digits.target[0])
とpycharmに入力すると
C:\Users\pinku\anaconda\python.exe C:/Users/pinku/PycharmProjects/pythonProject/lesson].py Traceback (most recent call last): File "C:\Users\pinku\anaconda\lib\site-packages\sklearn\utils\__init__.py", line 96, in __getattr__ return self[key] KeyError: 'image' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:/Users/pinku/PycharmProjects/pythonProject/lesson].py", line 5, in <module> print("データの個数=",len(digits.image)) File "C:\Users\pinku\anaconda\lib\site-packages\sklearn\utils\__init__.py", line 98, in __getattr__ raise AttributeError(key) AttributeError: image Process finished with exit code 1 と表示されます。 「image」がエラーの原因になっているのはわかるのですが、本に書かれているコードと見比べても何が間違っているのかがわからないため解決方法を教えていただければ幸いです。 よろしくお願いいたします!
回答1件
あなたの回答
tips
プレビュー