
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
gesture-classifying-model
Advanced tools
To use, first create GestureClassifier object::
>>> predictor = GestureClassifier()
This may take a while as model is being downloaded and loaded (approx. 86 MB of weights).
After creation, you can use the predictor, by passing tensor of frames to transform function. Numpy array of passed images should have same number of channels, same width and height. GestureClassifier receives tensor in following shape (None, 64, 64, 3). By that I mean::
>>> input_tensor.shape
>>> (any_num, 64, 64, 3),
where 'any_num' is any number of frames passed. Images should be in range of values 0-255.
You can finally predict probabilities of frame of cropped hands (letters are indexed in order shown below)::
>>> predictor.transform(input_tensor_of images)
Letters order::
'abcdefghiklmnopqrstuvwxy' # alphabetical order for indices from 1 to 24 without letters requiring movement, like 'z' and 'j'
FAQs
Classifying model for Sign Language Recognition System
We found that gesture-classifying-model demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.