저는 파이썬에서 비디오 용 Keras 라이브러리를 사용하고 있습니다. 내 Keras 버전은 2.0.2Keras : TypeError : ('키워드 인수를 알 수 없음 :', 'nb_depth')
kernel_size=3
model = Sequential()
model.add(Convolution3D(nb_filters[0], kernel_size,nb_depth=nb_conv[0], nb_row=nb_conv[0],
nb_col=nb_conv[0],input_shape=(1, img_rows, img_cols, patch_size),
activation='relu'))
나는 다음과 같은 오류를 얻고있다.
Using Theano Backened
Traceback (most recent call last):
File "F:/Project/codes/foreg.py", line 131, in <module>
input_shape=(1, img_rows, img_cols, patch_size), activation='relu'))
File "C:\Users\lenov\Anaconda3\envs\3dcnn\lib\site-packages\keras\legacy\interfaces.py", line 88, in wrapper
return func(*args, **kwargs)
File "C:\Users\lenov\Anaconda3\envs\3dcnn\lib\site-packages\keras\layers\convolutional.py", line 580, in __init__
**kwargs)
File "C:\Users\lenov\Anaconda3\envs\3dcnn\lib\site-packages\keras\layers\convolutional.py", line 100, in __init__
super(_Conv, self).__init__(**kwargs)
File "C:\Users\lenov\Anaconda3\envs\3dcnn\lib\site-packages\keras\engine\topology.py", line 277, in __init__
raise TypeError('Keyword argument not understood:', kwarg)
TypeError: ('Keyword argument not understood:', 'nb_depth')
이 오류와 관련하여 도움을주십시오. 오류 메시지가 적혀
kernel_size: An integer or tuple/list of 3 integers, specifying the width and height of the 3D convolution window. Can be a single integer to specify the same value for all spatial dimensions.
커널 크기를 지정하면 위의 오류가 발생합니다. 내가 변경했습니다 –
"nb_depth"와 같은 인수 또는 다른 키워드를 넘겨서는 안됩니다. 다음 키워드에 해당하는 인수 만 전달할 수 있습니다 : strides, padding, data_format, dilation_rate, 활성화, use_bias, kernel_initializer, bias_initializer, kernel_regularizer, bias_regularizer, activity_regularizer, kernel_constraint, bias_constraint. – michetonu