https://github.com/gunjanmimo/hand-gesture-recognition
https://github.com/gunjanmimo/hand-gesture-recognition
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gunjanmimo/hand-gesture-recognition
- Owner: gunjanmimo
- Created: 2020-11-03T03:43:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-03T03:50:12.000Z (over 4 years ago)
- Last Synced: 2025-01-01T06:42:45.758Z (6 months ago)
- Language: Jupyter Notebook
- Size: 382 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hand Gesture Recognition using Keras Nural Network and Keras Subclassing API
Model subclassing is fully-customizable and enables you to implement your own custom forward-pass of the model.
Sequential model does not allow you much flexibility to create your models. Functional API also only has a little of customization available for you. But you may create your own fully-customizable models in Keras. This is done by subclassing the Model class and implementing a call method.