我正在运行下面的代码来加载VGG 16模型,但是我一直收到错误输入未定义。有什么想法吗?
# load model and specify a new input shape for images and avg pooling output
new_input = Input(shape=(640, 480, 3))
model = VGG16(include_top=False, input_tensor=new_input, pooling='avg')
错误消息 NameError追溯(最近一次通话) 在 1#加载模型并为图像和平均池输出指定新的输入形状 ----> 2个new_input =输入(shape =(640,480,3)) 3模型= VGG16(include_top = False,input_tensor = new_input,pooling ='avg')
NameError:未定义名称“输入”