我正在尝试将以下玩具片段作为 GCP ml-engine 中的作业提交:
import tensorflow as tf
import numpy as np
import scipy.misc
x = np.zeros([10, 10, 1])
y = scipy.misc.imresize(x[:, :, 0], [50, 50, 1], interp='nearest')
print(y)
print(y.shape)
作业在服务器上启动后出现以下错误:
File "/root/.local/lib/python2.7/site-packages/teste/test.py", line 6, in <module>
y = scipy.misc.imresize(x[:, :, 0], [50, 50, 1], interp='nearest')
AttributeError: 'module' object has no attribute 'imresize'
它在本地完美运行,并且根据 Cloud-ML 文档,支持 scipy 包。显然这不是模块本身的问题,因为 import 语句没有给出任何错误。