-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Q: Implement YOLACT compatible with a big DNN framework API (tensorflow,..?) #300
Comments
It would be interesting to join forces with open-mmlab/mmdetection#1230 |
I'm at risk of announcing this prematurely, but we have a YOLACT implementation ready to be merged into mmdetection. We're just waiting on a couple more experiments to verify performance and for the mmdetection team to let us know how they want to merge. I'm not going to make a keras, caffee, or tensorflow implementation, since that would be a lot of work for not much gain, but what's the problem with Pytorch? Caffee has now been merged with pytorch so it's at least as big >.> |
Wow, this is great news! 💯 |
No, I was not suggesting that the internals for YOLACT were rewritten in another framework, I wanted to make yolact Model a (better-fitting) part of a framework (pytorch?) I'm not that well versed in pytorch and what its But my suggestion is intended for So can pytorch do similar functionality? And then we should adhere (implement more completely) its API so people can treat Yolact as any other the goal is to
|
@breznak Yeah, Pytorch has similar functionality that I just wasn't aware of at the time. The LR scheduling and likely early stopping can be done through the optimizer, so I'm planning on switching the hard-coded stuff out for that as you suggested in another issue. @abhigoku10, @breznak Even though YOLACT will be offered in mmdetect, I won't stop maintaning this repo because I can perform exploratory stuff here that I couldn't on some super polished repo like mmdetect. |
@dbolya this was just my perceptive , it would good if this repo can grow better than darknet , since YOLACT address the problem of both accuracy and performance , we can add other backbones like ghostnet , mixnet , shufflenet and new augmentations techniques like cutout mixup , new ideas like adding orientation of teh object , depth feature and so on is it possible to list out the improvements and people in the community can work on it ?? |
@abhigoku10 That's a good idea. I'd like to clean up the code first though, since there are a bunch of settings in |
@dbolya sure please do clean up the code and let us knw i want to work on few things with collaboration from others too @breznak @fanyix
|
With regards to #299 and problem with early stopping #298 ,
would you agree to add API compatibility to YOLACT with some of the large DNN frameworks (tensorflow, caffee, keras,..?)
Motivation is that this would
a) make Yolact more widespread, easy to use,
b) better experience using yolact, since all the "side" problems (training, evaluation, persistency, visualization) are already covered by the frameworks
This would be a lot of work, so I'd like to know if @dbolya thinks this is a good idea and if someone wants to join forces on this?
The text was updated successfully, but these errors were encountered: