├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Images │ ├── Alpha_Sign.png │ ├── Model.png │ ├── TeachableMachine.png │ ├── Tutorials.jpg │ ├── code1.png │ ├── code2.png │ ├── code3.png │ └── code4.png ├── STL-100.jpg ├── Sign Language Translator Report.pdf ├── Sign.pptx ├── Thumbnail.jpeg ├── Videos │ ├── SLT-Practice-GIF.gif │ └── training-demo.gif ├── loading.gif └── logo.png ├── index.html ├── model.weights.bin ├── static ├── ISL_Gifs │ ├── 0-address.gif │ ├── 1-ahemdabad.gif │ ├── 10-banglore.gif │ ├── 11-be-careful.gif │ ├── 12-bridge.gif │ ├── 13-cat.gif │ ├── 14-christmas.gif │ ├── 15-church.gif │ ├── 16-cilinic.gif │ ├── 17-dasara.gif │ ├── 18-december.gif │ ├── 19-did-you-finish-homework.gif │ ├── 2-all.gif │ ├── 20-do-you-have-money.gif │ ├── 21-do-you-want-something-to-drink.gif │ ├── 22-do-you-watch-TV.gif │ ├── 23-dont-worry.gif │ ├── 24-flower-is-beautiful.gif │ ├── 25-good-afternoon.gif │ ├── 26-good-morning.gif │ ├── 27-good-question.gif │ ├── 28-grapes.gif │ ├── 29-hello.gif │ ├── 3-any-questions.gif │ ├── 30-hindu.gif │ ├── 31-hyderabad.gif │ ├── 32-i-am-a-clerk.gif │ ├── 33-i-am-fine.gif │ ├── 34-i-am-sorry.gif │ ├── 35-i-am-thinking.gif │ ├── 36-i-am-tired.gif │ ├── 37-i-go-to-a-theatre.gif │ ├── 38-i-had-to-say-something-but-I-forgot.gif │ ├── 39-i-like-pink-colour.gif │ ├── 4-are-you-angry.gif │ ├── 40-i-love-to-shop.gif │ ├── 41-job.gif │ ├── 42-july.gif │ ├── 43-june.gif │ ├── 44-karnataka.gif │ ├── 45-kerala.gif │ ├── 46-krishna.gif │ ├── 47-lets-go-for-lunch.gif │ ├── 48-mango.gif │ ├── 49-may.gif │ ├── 5-are-you-hungry.gif │ ├── 50-mile.gif │ ├── 51-mumbai.gif │ ├── 52-nagpur.gif │ ├── 53-nice-to-meet-you.gif │ ├── 54-open-the-door.gif │ ├── 55-pakistan.gif │ ├── 56-please-call-me-later.gif │ ├── 57-police-station.gif │ ├── 58-post-office.gif │ ├── 59-pune.gif │ ├── 6-assam.gif │ ├── 60-punjab.gif │ ├── 61-saturday.gif │ ├── 62-shall-I-help-you.gif │ ├── 63-shall-we-go-together-tommorow.gif │ ├── 64-shop.gif │ ├── 65-sign-language-interpreter.gif │ ├── 66-sit-down.gif │ ├── 67-stand-up.gif │ ├── 68-take-care.gif │ ├── 69-temple.gif │ ├── 7-august.gif │ ├── 70-there-was-traffic-jam.gif │ ├── 71-thursday.gif │ ├── 72-toilet.gif │ ├── 73-tomato.gif │ ├── 74-tuesday.gif │ ├── 75-usa.gif │ ├── 76-village.gif │ ├── 77-wednesday.gif │ ├── 78-what-is-the-problem.gif │ ├── 79-what-is-today's-date.gif │ ├── 8-banana.gif │ ├── 80-what-is-your-father-do.gif │ ├── 81-what-is-your-name.gif │ ├── 82-whats-up.gif │ ├── 83-where-is-the-bathroom.gif │ ├── 84-where-is-the-police-station.gif │ ├── 85-you-are-wrong.gif │ └── 9-banaras.gif ├── PageNotFound.gif ├── images │ ├── sign-default.png │ └── sign.jpg ├── js │ └── sketch.js ├── letters │ ├── a.gif │ ├── b.gif │ ├── c.gif │ ├── d.gif │ ├── e.gif │ ├── f.gif │ ├── g.gif │ ├── h.gif │ ├── i.gif │ ├── j.gif │ ├── k.gif │ ├── l.gif │ ├── m.gif │ ├── n.gif │ ├── o.gif │ ├── p.gif │ ├── q.gif │ ├── r.gif │ ├── s.gif │ ├── t.gif │ ├── u.gif │ ├── v.gif │ ├── w.gif │ ├── x.gif │ ├── y.gif │ └── z.gif ├── mystyle.css ├── photos │ ├── A.jpg │ ├── b.jpg │ ├── c.png │ ├── d.jpg │ ├── d.png │ ├── e.png │ ├── f.png │ ├── g.png │ ├── h.jpg │ ├── l.jpg │ ├── o.jpg │ ├── p.png │ ├── v.jpg │ ├── w.jpg │ └── y.png └── style.css ├── temp ├── Model │ ├── Model.html │ ├── model.json │ ├── model.weights.bin │ └── sketch.js ├── references.txt └── scripts │ ├── Filename.py │ └── main.py └── templates ├── About.html ├── Model.html ├── PageNotFound.html ├── Training.html ├── js ├── main.js ├── train.js └── tutorial.js ├── model.json ├── model.weights.bin └── sketch.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/README.md -------------------------------------------------------------------------------- /docs/Images/Alpha_Sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Images/Alpha_Sign.png -------------------------------------------------------------------------------- /docs/Images/Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Images/Model.png -------------------------------------------------------------------------------- /docs/Images/TeachableMachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Images/TeachableMachine.png -------------------------------------------------------------------------------- /docs/Images/Tutorials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Images/Tutorials.jpg -------------------------------------------------------------------------------- /docs/Images/code1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Images/code1.png -------------------------------------------------------------------------------- /docs/Images/code2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Images/code2.png -------------------------------------------------------------------------------- /docs/Images/code3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Images/code3.png -------------------------------------------------------------------------------- /docs/Images/code4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Images/code4.png -------------------------------------------------------------------------------- /docs/STL-100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/STL-100.jpg -------------------------------------------------------------------------------- /docs/Sign Language Translator Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Sign Language Translator Report.pdf -------------------------------------------------------------------------------- /docs/Sign.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Sign.pptx -------------------------------------------------------------------------------- /docs/Thumbnail.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Thumbnail.jpeg -------------------------------------------------------------------------------- /docs/Videos/SLT-Practice-GIF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Videos/SLT-Practice-GIF.gif -------------------------------------------------------------------------------- /docs/Videos/training-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/Videos/training-demo.gif -------------------------------------------------------------------------------- /docs/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/loading.gif -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/docs/logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/index.html -------------------------------------------------------------------------------- /model.weights.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/model.weights.bin -------------------------------------------------------------------------------- /static/ISL_Gifs/0-address.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/0-address.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/1-ahemdabad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/1-ahemdabad.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/10-banglore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/10-banglore.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/11-be-careful.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/11-be-careful.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/12-bridge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/12-bridge.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/13-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/13-cat.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/14-christmas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/14-christmas.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/15-church.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/15-church.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/16-cilinic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/16-cilinic.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/17-dasara.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/17-dasara.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/18-december.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/18-december.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/19-did-you-finish-homework.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/19-did-you-finish-homework.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/2-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/2-all.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/20-do-you-have-money.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/20-do-you-have-money.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/21-do-you-want-something-to-drink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/21-do-you-want-something-to-drink.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/22-do-you-watch-TV.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/22-do-you-watch-TV.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/23-dont-worry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/23-dont-worry.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/24-flower-is-beautiful.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/24-flower-is-beautiful.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/25-good-afternoon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/25-good-afternoon.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/26-good-morning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/26-good-morning.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/27-good-question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/27-good-question.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/28-grapes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/28-grapes.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/29-hello.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/29-hello.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/3-any-questions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/3-any-questions.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/30-hindu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/30-hindu.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/31-hyderabad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/31-hyderabad.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/32-i-am-a-clerk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/32-i-am-a-clerk.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/33-i-am-fine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/33-i-am-fine.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/34-i-am-sorry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/34-i-am-sorry.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/35-i-am-thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/35-i-am-thinking.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/36-i-am-tired.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/36-i-am-tired.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/37-i-go-to-a-theatre.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/37-i-go-to-a-theatre.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/38-i-had-to-say-something-but-I-forgot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/38-i-had-to-say-something-but-I-forgot.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/39-i-like-pink-colour.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/39-i-like-pink-colour.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/4-are-you-angry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/4-are-you-angry.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/40-i-love-to-shop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/40-i-love-to-shop.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/41-job.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/41-job.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/42-july.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/42-july.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/43-june.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/43-june.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/44-karnataka.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/44-karnataka.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/45-kerala.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/45-kerala.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/46-krishna.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/46-krishna.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/47-lets-go-for-lunch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/47-lets-go-for-lunch.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/48-mango.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/48-mango.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/49-may.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/49-may.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/5-are-you-hungry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/5-are-you-hungry.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/50-mile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/50-mile.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/51-mumbai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/51-mumbai.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/52-nagpur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/52-nagpur.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/53-nice-to-meet-you.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/53-nice-to-meet-you.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/54-open-the-door.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/54-open-the-door.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/55-pakistan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/55-pakistan.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/56-please-call-me-later.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/56-please-call-me-later.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/57-police-station.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/57-police-station.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/58-post-office.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/58-post-office.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/59-pune.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/59-pune.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/6-assam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/6-assam.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/60-punjab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/60-punjab.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/61-saturday.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/61-saturday.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/62-shall-I-help-you.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/62-shall-I-help-you.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/63-shall-we-go-together-tommorow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/63-shall-we-go-together-tommorow.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/64-shop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/64-shop.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/65-sign-language-interpreter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/65-sign-language-interpreter.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/66-sit-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/66-sit-down.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/67-stand-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/67-stand-up.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/68-take-care.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/68-take-care.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/69-temple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/69-temple.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/7-august.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/7-august.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/70-there-was-traffic-jam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/70-there-was-traffic-jam.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/71-thursday.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/71-thursday.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/72-toilet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/72-toilet.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/73-tomato.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/73-tomato.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/74-tuesday.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/74-tuesday.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/75-usa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/75-usa.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/76-village.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/76-village.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/77-wednesday.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/77-wednesday.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/78-what-is-the-problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/78-what-is-the-problem.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/79-what-is-today's-date.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/79-what-is-today's-date.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/8-banana.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/8-banana.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/80-what-is-your-father-do.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/80-what-is-your-father-do.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/81-what-is-your-name.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/81-what-is-your-name.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/82-whats-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/82-whats-up.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/83-where-is-the-bathroom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/83-where-is-the-bathroom.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/84-where-is-the-police-station.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/84-where-is-the-police-station.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/85-you-are-wrong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/85-you-are-wrong.gif -------------------------------------------------------------------------------- /static/ISL_Gifs/9-banaras.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/ISL_Gifs/9-banaras.gif -------------------------------------------------------------------------------- /static/PageNotFound.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/PageNotFound.gif -------------------------------------------------------------------------------- /static/images/sign-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/images/sign-default.png -------------------------------------------------------------------------------- /static/images/sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/images/sign.jpg -------------------------------------------------------------------------------- /static/js/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/js/sketch.js -------------------------------------------------------------------------------- /static/letters/a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/a.gif -------------------------------------------------------------------------------- /static/letters/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/b.gif -------------------------------------------------------------------------------- /static/letters/c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/c.gif -------------------------------------------------------------------------------- /static/letters/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/d.gif -------------------------------------------------------------------------------- /static/letters/e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/e.gif -------------------------------------------------------------------------------- /static/letters/f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/f.gif -------------------------------------------------------------------------------- /static/letters/g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/g.gif -------------------------------------------------------------------------------- /static/letters/h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/h.gif -------------------------------------------------------------------------------- /static/letters/i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/i.gif -------------------------------------------------------------------------------- /static/letters/j.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/j.gif -------------------------------------------------------------------------------- /static/letters/k.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/k.gif -------------------------------------------------------------------------------- /static/letters/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/l.gif -------------------------------------------------------------------------------- /static/letters/m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/m.gif -------------------------------------------------------------------------------- /static/letters/n.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/n.gif -------------------------------------------------------------------------------- /static/letters/o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/o.gif -------------------------------------------------------------------------------- /static/letters/p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/p.gif -------------------------------------------------------------------------------- /static/letters/q.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/q.gif -------------------------------------------------------------------------------- /static/letters/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/r.gif -------------------------------------------------------------------------------- /static/letters/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/s.gif -------------------------------------------------------------------------------- /static/letters/t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/t.gif -------------------------------------------------------------------------------- /static/letters/u.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/u.gif -------------------------------------------------------------------------------- /static/letters/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/v.gif -------------------------------------------------------------------------------- /static/letters/w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/w.gif -------------------------------------------------------------------------------- /static/letters/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/x.gif -------------------------------------------------------------------------------- /static/letters/y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/y.gif -------------------------------------------------------------------------------- /static/letters/z.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/letters/z.gif -------------------------------------------------------------------------------- /static/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/mystyle.css -------------------------------------------------------------------------------- /static/photos/A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/A.jpg -------------------------------------------------------------------------------- /static/photos/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/b.jpg -------------------------------------------------------------------------------- /static/photos/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/c.png -------------------------------------------------------------------------------- /static/photos/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/d.jpg -------------------------------------------------------------------------------- /static/photos/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/d.png -------------------------------------------------------------------------------- /static/photos/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/e.png -------------------------------------------------------------------------------- /static/photos/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/f.png -------------------------------------------------------------------------------- /static/photos/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/g.png -------------------------------------------------------------------------------- /static/photos/h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/h.jpg -------------------------------------------------------------------------------- /static/photos/l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/l.jpg -------------------------------------------------------------------------------- /static/photos/o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/o.jpg -------------------------------------------------------------------------------- /static/photos/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/p.png -------------------------------------------------------------------------------- /static/photos/v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/v.jpg -------------------------------------------------------------------------------- /static/photos/w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/w.jpg -------------------------------------------------------------------------------- /static/photos/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/photos/y.png -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/static/style.css -------------------------------------------------------------------------------- /temp/Model/Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/temp/Model/Model.html -------------------------------------------------------------------------------- /temp/Model/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/temp/Model/model.json -------------------------------------------------------------------------------- /temp/Model/model.weights.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/temp/Model/model.weights.bin -------------------------------------------------------------------------------- /temp/Model/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/temp/Model/sketch.js -------------------------------------------------------------------------------- /temp/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/temp/references.txt -------------------------------------------------------------------------------- /temp/scripts/Filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/temp/scripts/Filename.py -------------------------------------------------------------------------------- /temp/scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/temp/scripts/main.py -------------------------------------------------------------------------------- /templates/About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/About.html -------------------------------------------------------------------------------- /templates/Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/Model.html -------------------------------------------------------------------------------- /templates/PageNotFound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/PageNotFound.html -------------------------------------------------------------------------------- /templates/Training.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/Training.html -------------------------------------------------------------------------------- /templates/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/js/main.js -------------------------------------------------------------------------------- /templates/js/train.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/js/train.js -------------------------------------------------------------------------------- /templates/js/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/js/tutorial.js -------------------------------------------------------------------------------- /templates/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/model.json -------------------------------------------------------------------------------- /templates/model.weights.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/model.weights.bin -------------------------------------------------------------------------------- /templates/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elysian01/Sign-Language-Translator/HEAD/templates/sketch.js --------------------------------------------------------------------------------