Spaces:
Build error
Build error
Add project details to README
Browse files
README.md
CHANGED
|
@@ -10,4 +10,29 @@ pinned: false
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# Speech to Braille translator
|
| 14 |
+
|
| 15 |
+
## Overview
|
| 16 |
+
This project can be found [here](https://github.com/Azuremis/speech_to_braille_translator) on my github.
|
| 17 |
+
|
| 18 |
+
The app currently translates English speech into Braille.
|
| 19 |
+
|
| 20 |
+
The speech-text translation is done using OpenAI's [Whisper](https://openai.com/blog/whisper/) [model](https://github.com/openai/whisper). The text-braille translation is done using
|
| 21 |
+
the [PyBraille](https://pypi.org/project/pybraille/) library.
|
| 22 |
+
|
| 23 |
+
## How to use
|
| 24 |
+
1. Go to the [demo](https://huggingface.co/spaces/Azuremis/Speech2Braille) page
|
| 25 |
+
2. Click the record button and accept the browswer request for microphone access
|
| 26 |
+
3. Speak a few sentences then click the stop button when done.
|
| 27 |
+
4. Click the submit button to see both the English trascript and the Braille translation
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
## Disclaimer
|
| 31 |
+
This is a portfolio project so I don't advise using it for any serious purpose!
|
| 32 |
+
|
| 33 |
+
## Credits
|
| 34 |
+
|
| 35 |
+
Thank you to [Dave](https://twitter.com/azezezaaa), I used his [RememberThis](https://github.com/azezezaaa/rememberthis_OpenAIWhisperHackathon) code to help me grok
|
| 36 |
+
how to use the OpenAI's whisper. I also found LabLab's Whisper [guides](https://lablab.ai/tech/whisper) really helpful.
|
| 37 |
+
|
| 38 |
+
You can check out the configuration reference [here](https://huggingface.co/docs/hub/spaces-config-reference)
|