MahmudulAlam / Unified-Gesture-and-Fingertip-Detection

Unified learning approach for egocentric hand gesture recognition and fingertip detection.

Home Page:https://www.sciencedirect.com/science/article/pii/S0031320321003824

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can use mobilenet and run on mobile devices?

mmxuan18 opened this issue · comments

Hi @mlinxiang
Using mobilenet in the network will be straight forward. In the model() function change the VGG16 with mobilenet.

from keras.applications import MobileNetV2
model = MobileNetV2(include_top=False, input_shape=(128, 128, 3))

Then just train the model.