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

关于SSD卷积代替全连接层的请教 #131

Open
junnyin opened this issue Sep 16, 2021 · 0 comments
Open

关于SSD卷积代替全连接层的请教 #131

junnyin opened this issue Sep 16, 2021 · 0 comments

Comments

@junnyin
Copy link

junnyin commented Sep 16, 2021

`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为什么需要用到空洞卷积?

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

1 participant