Azuremis commited on
Commit
c3166eb
1 Parent(s): 1396bef

Add project details to README

Browse files
Files changed (1) hide show
  1. README.md +26 -1
README.md CHANGED
@@ -10,4 +10,29 @@ pinned: false
10
  license: mit
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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)