返回来一个给定形状和类型的用0填充的数组

model =keras.applications.resnet50.ResNet50(weights = weight, input_shape = (input_shape[0], input_shape[1], input_shape[2]), pooling = pooling, include_top = False)
model.predict(np.zeros((1, 224, 224 , 3)))
model.predict

输入测试数据,输出预测结果