私は Caffe フレームワークに取り組んでおり、PyCaffe インターフェイスを使用しています。IPython Notebook 00-classification.ipynbを変換して取得した Python スクリプトを使用して、ImageNet のトレーニング済みモデルによる分類をテストしています。しかし、スクリプト内のget_ipython()ステートメントで次のエラーが発生しています。
$ python python/my_test_imagenet.py
Traceback (most recent call last):
File "python/my_test_imagenet.py", line 23, in <module>
get_ipython().magic(u'matplotlib inline')
スクリプトでは、次のものをインポートしています。
import numpy as np
import matplotlib.pyplot as plt
get_ipython().magic(u'matplotlib inline')
# Make sure that caffe is on the python path:
caffe_root = '/path/to/caffe/'
import sys
sys.path.insert(0, caffe_root + 'python')
import caffe
plt.rcParams['figure.figsize'] = (10, 10)
plt.rcParams['image.interpolation'] = 'nearest'
plt.rcParams['image.cmap'] = 'gray'
import os
# ... Rest of the code...
誰かがこのエラーを解決するのを手伝ってくれますか?