Daniel Bolya
Daniel Bolya
Thanks for the suggestion! I don't have much experience with OpenImages, so would it be possible for you to implement a dataset driver for it as a pull request? You...
You can use `--score_threshold=0.05` to reduce the file size. As for the first bug, that's an oversight on my part. For now you can comment it out. I'll try to...
You can do this by following the fine tuning procedure (#36) and then here: https://github.com/dbolya/yolact/blob/f54b0a5b17a7c547e92c4d7026be6542f43862e7/yolact.py#L628 replace that with ```py p = pred_layer(pred_x.detach()) ```
*Oof* While I was implementing this, I considered writing it in a way that would also support running it on the CPU. However, pretty early on I decided that in...
See #59. You'll have to put some elbow grease in if you want to get YOLACT traceable (i.e., exportable to ONNX) since I use a lot of pythonic code. I...
Yolact does not support conversion to ONNX, which is why you get an error. You'd need to change a lot of things to get conversion to ONNX to work, as...
Do you mean through Pytorch 1.0 script? Doing so would essentially require a total rewrite though, as I use too complex python to be able to easily swap it out...
Ah I see. Like I said, porting all of Yolact to torchscript would require rewriting almost everything. You might find more luck with tracing, but I think it requires you...
Sorry, can you go over exactly what your training procedure was, what data you're using, and what your parameters are?
I mean what kind of dataset, what's your dataset config look like, and what training command did you use? That low mAP might indicate that you set something up wrong.