Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add description within visualisation (#742)
This makes it easier to understand visualization. ## Before ```mermaid flowchart TB dora-microphone dora-vad dora-distil-whisper dora-rerun[/dora-rerun\] subgraph ___dora___ [dora] subgraph ___timer_timer___ [timer] dora/timer/secs/2[\secs/2/] end end dora/timer/secs/2 -- tick --> dora-microphone dora-microphone -- audio --> dora-vad dora-vad -- audio as input --> dora-distil-whisper dora-distil-whisper -- text as original_text --> dora-rerun ``` ## After ```mermaid flowchart TB dora-microphone[**dora-microphone**<hr/>*Microphone sending samples of audio data*] dora-vad[**dora-vad**<hr/>*Voice Activity Detection using Sidero model filtering audio samples into audio samples including voice.*] dora-distil-whisper[**dora-distil-whisper**<hr/>*Whisper model able to transcribe audio.*] dora-rerun[/**dora-rerun**<hr/>*Real time visualisation using Rerun.*\] subgraph ___dora___ [dora] subgraph ___timer_timer___ [timer] dora/timer/secs/2[\secs/2/] end end dora/timer/secs/2 -- tick --> dora-microphone dora-microphone -- audio --> dora-vad dora-vad -- audio as input --> dora-distil-whisper dora-distil-whisper -- text as original_text --> dora-rerun ```
- Loading branch information