-
Notifications
You must be signed in to change notification settings - Fork 153
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
detach during salient mode #74
Comments
During jointly training with edge, we try to use the edge features
extracted from the edge branch to help refine the details around the edge
areas of the salient features.
By detaching the edge features, we can avoid the influence caused by the
supervision information from the salient branch, as the edge branch aims to
learn all possible edge areas while the salient branch only cares the
salient objects.
fdengmark <[email protected]> 于2020年11月27日周五 下午10:15写道:
… Hi:
Nice Work.
I notice that you detach the backprop after block layers when training
your joint_poolnet with mode == 1, which is the salient mode. So the
deeppool layer and your backbone only gets update during the edge mode. Can
you explain the reason behind it?
Thank you.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#74>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABYO2OBDKBKXAWYHIGT6RHDSR6YAXANCNFSM4UE6V2TQ>
.
--
From BackSeason-刘姜江
Major in Computer Science and Technology
Nankai University, Tianjin,300350
P.R.China
[email protected] <[email protected]>
|
I understand your idea, but all the parameters of backbone/convert_layers/deep_pool_layers will not be updated from salinet branch right? The objective of this network is salient object segmentation, and the majority of the parameters of the network will not be update from salinet obj segmentation task. I'm still confused by this |
It will be updated by this line
https://github.com/backseason/PoolNet/blob/16b77d9e9f85bbd862d2f9be43d9d6f2eb9c8e95/networks/joint_poolnet.py#L193
.
fdengmark <[email protected]> 于2020年11月30日周一 下午4:53写道:
… I understand your idea, but all the parameters of
backbone/convert_layers/deep_pool_layers will not be updated from salinet
branch right? The objective of this network is salient object segmentation,
and the majority of the parameters of the network will not be update from
salinet obj segmentation task. I'm still confused by this
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#74 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABYO2OC7PW5JRGK26VQNPC3SSNMPVANCNFSM4UE6V2TQ>
.
--
From BackSeason-刘姜江
Major in Computer Science and Technology
Nankai University, Tianjin,300350
P.R.China
[email protected] <[email protected]>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi:
Nice Work.
I notice that you detach the backprop after block layers when training your joint_poolnet with mode == 1, which is the salient mode. So the deeppool layer and your backbone only gets update during the edge mode. Can you explain the reason behind it?
Thank you.
The text was updated successfully, but these errors were encountered: