-
Notifications
You must be signed in to change notification settings - Fork 86
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
hope support mobilenetv3 small #28
Comments
Not quite sure what you mean, deeplab v3 is already based on mobilenet v3? Or do you have a link for the specific network you want to support? |
Ah, interesting. First thing you would need is the actual model file in |
Deeplab v3 is exactly what my project here already uses: https://github.com/floe/deepbacksub/blob/master/deeplabv3_257_mv_gpu.tflite The only difference I can see is that the one you just posted is trained on Cityscapes, which won't help a lot with person segmentation. The one from Google Meet would be much more interesting, because it is specifically optimized for person segmentation, but you would need to find the specific |
Floe, |
Right now, it seems you can download the models from https://meet.google.com/_/rtcvidproc/release_1wttl/345264209/segm_full_v679.tflite and https://meet.google.com/_/rtcvidproc/release_1wttl/345264209/segm_lite_v681.tflite - and according to the model card they should be licensed with Apache 2.0, so you should in theory be allowed to re-use them. I'll give it a try and see if these can be integrated. |
Floe, |
Hello Floe, |
Got something may be useful |
I've just copied the relevant custom op from MediaPipe for now. See latest commit (306da1b) for a implementation that's somewhat working (still some sort of synchronization error between capture thread and network evaluation happening here, though). |
Great! I will try. |
I'm closing this for now, thanks for pointing me to the Google Meet segmentation model. Please open a new issue if something is still wonky. |
Hello, I am trying to run google meet model on windows. But I still don't have any idea how to integrate the custom op from mediapipe. I cannot load the model using normal runtime because it doesn't have the custom operation. |
You need |
Mediapipe officially released selfie segmentation support. You might want to update your app. |
hello Floe,
Could you tell me how to add the support of mobilenetv3 small?
The text was updated successfully, but these errors were encountered: