pustozerov
commited on
Commit
•
24136d8
1
Parent(s):
cc0411c
Added a comment with a link to Exposit CV BU.
Browse files
app.py
CHANGED
@@ -24,6 +24,8 @@ st.title('Call Transcription demo')
|
|
24 |
st.subheader('This simple demo shows the possibilities of the ASR and NLP in the task of '
|
25 |
'automatic speech recognition and diarization. It works with mp3, ogg and wav files. You can randomly '
|
26 |
'pickup an audio file with the dialogue from the built-in database or try uploading your own files.')
|
|
|
|
|
27 |
if st.button('Try a random sample from the database'):
|
28 |
os.makedirs(FOLDER_WAV_DB, exist_ok=True)
|
29 |
shuffled_dataset = dataset.shuffle(seed=random.randint(0, 100))
|
|
|
24 |
st.subheader('This simple demo shows the possibilities of the ASR and NLP in the task of '
|
25 |
'automatic speech recognition and diarization. It works with mp3, ogg and wav files. You can randomly '
|
26 |
'pickup an audio file with the dialogue from the built-in database or try uploading your own files.')
|
27 |
+
st.write('Note: this demo shows up a reduced-performance model. To get a full-performance neural network or develop a '
|
28 |
+
'system adapted to your task – contact kirill.lozovoi@exposit.com.')
|
29 |
if st.button('Try a random sample from the database'):
|
30 |
os.makedirs(FOLDER_WAV_DB, exist_ok=True)
|
31 |
shuffled_dataset = dataset.shuffle(seed=random.randint(0, 100))
|