Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Args to Conv3D were given in incorrect format. #72

Open
Shankar203 opened this issue Oct 12, 2021 · 1 comment
Open

Args to Conv3D were given in incorrect format. #72

Shankar203 opened this issue Oct 12, 2021 · 1 comment

Comments

@Shankar203
Copy link

x = keras.layers.Conv3D(64, (7, 7), strides=(2, 2), use_bias=False, name="conv1")(x)

x = keras.layers.MaxPooling3D((3, 3), strides=(2, 2), padding="same", name="pool1")(x)

Kernel_size of a Conv3D can be a single integer or a tuple of 3 integers!

And similarly with the strides too.

@adavaria
Copy link

That's true; please fix this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants