Logo

dev-resources.site

for different kinds of informations.

SignLanguage - Learn ASL Practically - (MongoDB Atlas Hackathon 2022 Submission)

Published at
12/8/2022
Categories
atlashackathon22
machinelearning
mongodb
javascript
Author
narottam04
Author
10 person written this
narottam04
open
SignLanguage - Learn ASL Practically - (MongoDB Atlas Hackathon 2022 Submission)

What I built

SignLanguage now GestureAcademy is a platform where users can practically learn American Sign Language using machine learning and access videos for over 20,000+ ASL phrases.

signLanguage

Category Submission: Search No More

App Link πŸŽ‰πŸŽ‰πŸ₯³

https://gestureacademy.webdrip.in/

App Previews & Features

Homepage

The homepage displays the entire application preview. Users can look up terms for videos and alphabets, as well as play games.

Signlanguage Homepage

Phrases Dictionary

Signlanguage includes around 20,000 phrases from which users can learn ASL.

Phrases

open video

Lightning Fast Fuzzy Search

Users can search for any video from 20,000+ video using the fuzzy search feature implemented using MongoDB Atlas search in the ASL phrases dictionary.

Fuzzy Search

Fuzzy Search play video

The video below shows how quickly MongoDB can search through over 20,000 video documents.

Game Of ASL

Users can play games that have been created using mediapipe and tensorflow machine learning libraries to help them learn and validate their learning.

Learn Numbers

Learn numbers from 0-10 in chronological order with the help of artificial intelligence.

Random Numbers

Show your hands on screen and AI will try to predict the numbers from 0-10 based on your hand signs.

Link to Source Code

GitHub logo Narottam04 / SignLanguage

SignLanguage is a platform where users can practically learn American Sign Language using machine learning and access videos for over 20,000+ ASL phrases.

SignLanguage

SignLanguage is a platform where users can practically learn American Sign Language using machine learning and access videos for over 20,000+ ASL phrases.

signLanguage

App Link πŸŽ‰πŸŽ‰πŸ₯³

https://gestureacademy.webdrip.in/

App Previews & Features

Homepage

The homepage displays the entire application preview. Users can look up terms for videos and alphabets, as well as play games.

Signlanguage Homepage

Phrases Dictionary

Signlanguage includes around 20,000 phrases from which users can learn ASL.

Phrases

open video

Lightning Fast Fuzzy Search

Users can search for any video from 20,000+ video using the fuzzy search feature implemented using MongoDB Atlas search in the ASL phrases dictionary.

Fuzzy Search

Fuzzy Search play video

Game Of ASL

Users can play games that have been created using mediapipe and tensorflow machine learning libraries to help them learn and validate their learning.

Learn Numbers

Learn numbers from 0-10 in chronological order with the help of artificial intelligence.

Random Numbers

Show your hands on screen and AI will try to predict the…

Permissive License

MIT License

Background

Developing software applications or products that solve real world problem statements has always intrigued me. When I started learning ML and explored it's possibilities I thought of making a project that would be a part of something bigger than itself i.e. helping out community and reaching people in an easily accessible manner. This was my motivation for developing this app SignLanguage.

YouTube is a great source of knowledge, but its algorithm doesn't promote short videos or videos that entice users. SignLanguage solves this problem by collecting these resources and making them easily accessible through our webapp. This webapp has around 20,000+ curated video phrases and features like fuzzy Search which can help users to learn American Sign Language(ASL) with ease.

SignLanguage also has a number of games that users can play to practice their ASL fundamentals while having fun.

Tech Stack & Libraries Used

The app is basically built using eleventy js (11ty) for frontend, MongoDb Realm as a backend and mediapipe and tensorflow js for machine learning.

  • Eleventy Js
  • Mongo Db
  • Mongo Db Realm functions
  • Mongo Db Realm HTTPS Endpoints
  • Mongo Db Atlas Search
  • Tensorflow
  • Mediapipe

How I built it

Collecting 20,000+ ASL words was a difficult effort, therefore I wanted a backend that was simple and quick to set up. So, I choose Mongo Db realm as I was using Mongo Db to store my data.

Creating 20,000 Documents

The first time I saw my data, I wondered if I could even store this data into MongoDB and how difficult it would be. However, MongoDB Compass makes importing JSON data extremely easy.

Mongo Db Compass

Mongo Db Atlas Search

Creating a Search Index for my data collection was a breeze, and I was impressed with how fast and precise the results were.

atlas search

Mongo Db Realm HTTPS ENDPOINTS

After adding data and creating search index, I wanted to create an API that could be used by the frontend. Mongo DB makes creating api easy through their HTTPS ENDPOINTS & realm function services.

I built a search Index endpoint called /searchVideo which took a realm function and returns search results from atlas search.


exports = function(request,response){
  let collection = context.services.get("mongodb-atlas").db("SignLanguage").collection("videos");
  const {searchVid} = request.query

    let pipeline = [
        {
          $search: {
            index: 'searchVideos',
            text: {
              query:searchVid,
              path: {
                'wildcard': '*'
              }
            }
          }
        }
    ];

    return collection.aggregate(pipeline)
};

Enter fullscreen mode Exit fullscreen mode

I also built an simple API endpoint called videoApi and alphabetSong which returns paginated data from database.

exports = function(request,response){
  const {start} = request.query

  let data = context.services.get("mongodb-atlas").db("SignLanguage").collection("videos").find().skip(parseInt(start)).limit(12).toArray();

  return data;
};
Enter fullscreen mode Exit fullscreen mode

realm function

For creating ASL game, One of the issues I experienced was creating and gathering datasets for deep learning model. I had to personally collect the dataset because the datasets obtained on Kaggle either did not predict results correctly or were of poor quality.

Machine Learning workflow model is shown below

Image description

A brief overview of creation of classifying model is;

  • We first predict key-points on hands using the Open CV Python package and the mediapipe hands model by google.
  • Following this, a custom model is created using Tensorflow that classifies the keypoint.
  • This model is then converted to tfjs model which can be used in browser to predict hand signs.

https://media.giphy.com/media/xUPOqo6E1XvWXwlCyQ/giphy.gif

Thanks!

Hope you liked my project! if you have any feedback please feel free to comment down below.

atlashackathon22 Article's
30 articles in total
Favicon
Submit Your RFQ
Favicon
Ψ―Ψ§Ω†Ω„ΩˆΨ― Ϊ©ΨͺΨ§Ψ¨ Ψ’Ω† سوی Ω…Ψ±Ϊ― (Ψ¬Ω…Ψ§Ω„ Ψ΅Ψ§Ψ―Ω‚ΫŒ) 348 ءفحه PDF پی دی اف
Favicon
skybnb sample app - Mongo hackathon 2022
Favicon
Challenge app - MongoDB Atlas Hackathon 2022 and my first Dev Post
Favicon
MongoDB Atlas Hackathon 2022 on DEV
Favicon
MongoDB Atlas Hackathon 2022 on DEV
Favicon
Message Me
Favicon
Notely - Work Notes | Shine to you manager in 1:1's
Favicon
MongoDB Atlas Hackathon 2022 on DEV HostelMan
Favicon
Introducing easyblog - write once share to many !
Favicon
MongoDB Atlas Hackathon 2022 Winners, Announced!
Favicon
Varmomapo - MongoDB Atlas Hackathon 2022 on DEV
Favicon
Introducing OnServic: A free App to find any Service Provider
Favicon
Codify - MongoDB Atlas Hackathon 2022 on DEV
Favicon
Referrer - A Job Sharing Network of Job Seekers and Job Referrers - MongoDB & Google Cloud Machine Learning
Favicon
SignLanguage - Learn ASL Practically - (MongoDB Atlas Hackathon 2022 Submission)
Favicon
MongoDB Atlas Hackathon 2022 on DEV
Favicon
Binoculearn.ai β€” π˜“π˜¦π˜’π˜³π˜―π˜ͺ𝘯𝘨 π˜ͺ𝘯 𝘭𝘰𝘸-𝘣𝘒𝘯π˜₯𝘸π˜ͺπ˜₯𝘡𝘩 π˜ͺ𝘯𝘡𝘦𝘳𝘯𝘦𝘡 π˜™π˜¦π˜₯𝘦𝘧π˜ͺ𝘯𝘦π˜₯⚑
Favicon
Creating a puzzle game with ReactJs + MongoDB Atlas + GCP Cloud Run
Favicon
MongoDB Atlas Hackathon 2022 on DEV
Favicon
MongoDB Atlas Hackathon 2022 on DEV
Favicon
JOBPKDO- you may be the next one who gets the job through Twitter
Favicon
Mom in Tech (MongoDB Atlas Hackathon 2022 on DEV)
Favicon
MongoDB Atlas Hackathon 2022 on DEV
Favicon
Movie Database - find the perfect movie
Favicon
Techland - an e-commerce app
Favicon
Rewind - MongoDB Atlas Hackathon 2022 on DEV
Favicon
Cruddur - The not so great twitter clone using Ruby Sinatra + React + GCP CloudRun + MongoDB Atlas + Terraform
Favicon
Flight Radar (MongoDB Atlas Hackathon 2022 Submission)
Favicon
MongoDB Atlas Hackathon 2022 on DEV

Featured ones: