gpt4 book ai didi

python - 类型错误 : 'Keyword argument not understood:' , 'padding'

转载 作者:行者123 更新时间:2023-11-28 21:42:27 26 4
gpt4 key购买 nike

我正在尝试执行以下 python 代码,但出现以下错误。谁能帮帮我?

from keras.models import Sequential
from keras.constraints import maxnorm
from keras.layers.convolutional import Convolution2D

# Create the model
model = Sequential()
model.add(Convolution2D(32, 3, 3, input_shape=(3, 32, 32), activation='relu', padding='same', kernel_constraint=maxnorm(3)))

我得到的错误:

File "C:\Users\Lenovo\Anaconda2\envs\example_env\lib\site-packages\keras\layers\convolutional.py", line 388, in init super(Convolution2D, self).init(**kwargs)

File "C:\Users\Lenovo\Anaconda2\envs\example_env\lib\site-packages\keras\engine\topology.py", line 323, in init raise TypeError('Keyword argument not understood:', kwarg)

TypeError: ('Keyword argument not understood:', 'padding')

最佳答案

您似乎完全混合使用 Keras 2 API 和 Keras 1,并且您似乎安装了 Keras 1(因为您正在使用 Convolution2D)。

在Keras 1中,控制padding的参数不是padding,而是border_mode

但无论如何,不​​要将 Keras 2 代码与 Keras 1 混合使用,请注意阅读的文档。

关于python - 类型错误 : 'Keyword argument not understood:' , 'padding',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43556979/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com