We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
`self.pool5 = tf.keras.layers.MaxPooling2D(3, strides=1, padding='same') # [19, 19, 512]
# fc6, => vgg backbone is finished. now they are all SSD blocks self.fc6 = tf.keras.layers.Conv2D(1024, 3, dilation_rate=6, activation='relu', padding='same') # fc7 self.fc7 = tf.keras.layers.Conv2D(1024, 1, activation='relu', padding='same')`
请问fc6为什么需要用到空洞卷积?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
`self.pool5 = tf.keras.layers.MaxPooling2D(3, strides=1, padding='same') # [19, 19, 512]
请问fc6为什么需要用到空洞卷积?
The text was updated successfully, but these errors were encountered: