-
Notifications
You must be signed in to change notification settings - Fork 533
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
A bug that edge image size will change after EdgeModel
#4
Comments
@youyuge34 This is because of Let's keep this issue open; @CVDLBOT, @eshn any thoughts on this? |
@knazeri Yes, you are right. |
@CVDLBOT I was thinking maybe we could force the input dimensions to be even by adding |
can you run it? i have a problem, may i have your qq or wechart? |
@yuxiaoleipeng I have solved it temporarily using P.S. This solvement is not totally perfect so I didn't merge it into this project. |
i must download the 105g dataset? i only download the maskdata before..... i hvae a mistake? |
@yuxiaoleipeng If u just want to test, just download the pre-trained weights files and optional maskdata. |
@yuxiaoleipeng It's a really cool application you created 👍 If you are using |
@knazeri I added this function in
|
@youyuge34 I see, only the output of the model is going to be off by several pixels which is ok in most cases. |
thank you, i want to train the module, look forward to your Chinese manual |
@yuxiaoleipeng I have completed a detailed training manual, here. Make sure u have firstly read my README.md. |
@youyuge34 It's a very cool interactive tool you have created. I was going to create a web-based one but is ok with you if we include your work here? |
@knazeri Sure,include my work to your And at first I was going to create a web-based one too. But pytorch build-in webpage maybe not that easy as |
Thanks, @youyuge34 About the interactive tool, the |
@knazeri I am afraid it can't work standalone. I changed |
@youyuge34 No worries, I'll read it through later to see how compatible it is! |
你好,我最近也在跑这个代码。可以加你交流一下吗?我的微信:loveanshen 我的QQ:519838354 我的邮箱:[email protected] 非常期待你百忙中的回复 |
In the testing phase, I found a new cryptic bug that the edge output size of
EdgeModel
will dismatch with the input image size.For instance, sizes of input images and masks are both
[256,265]
, but handled by theEdgeModel
, the edges output size will turn into[256,264]
, which I guess the odd number265
is the key of problem. Maybe we can add aresize()
in thetest()
function.The text was updated successfully, but these errors were encountered: