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

merge layer 产生多个网络分支问题 #16

Closed
KwangKa opened this issue Jul 26, 2018 · 1 comment
Closed

merge layer 产生多个网络分支问题 #16

KwangKa opened this issue Jul 26, 2018 · 1 comment

Comments

@KwangKa
Copy link

KwangKa commented Jul 26, 2018

AdvancedEAST/network.py

Lines 65 to 70 in ba78824

inside_score = Conv2D(1, 1, padding='same', name='inside_score'
)(self.g(cfg.feature_layers_num))
side_v_code = Conv2D(2, 1, padding='same', name='side_vertex_code'
)(self.g(cfg.feature_layers_num))
side_v_coord = Conv2D(4, 1, padding='same', name='side_vertex_coord'
)(self.g(cfg.feature_layers_num))

这几行代码,会生成三个不同的feature merge layer网络分支,这是预期的结果吗?

可不可以这样直接生成7个output map:
Conv2D(7, 1, padding='same', name='output_all')(self.g(cfg.feature_layers_num))

@huoyijie
Copy link
Owner

huoyijie commented Aug 23, 2018

不好意思一直比较忙没有查看,这个确实是一个早期没发现的bug......

非常感谢!

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