Spaces:
Runtime error
Runtime error
Commit
·
8ccf3a8
1
Parent(s):
1c1444e
App description
Browse files
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.title("Transcribe AI :pencil2:")
|
4 |
+
st.write(
|
5 |
+
"""
|
6 |
+
This is a Transcription App for Learn Languages. It uses 2 models,
|
7 |
+
a Generative Transformer, a Text to Speech Model, and a Text comparison algorithm
|
8 |
+
that shows if you are making a mistake so you can learn to write in the desired
|
9 |
+
language.
|
10 |
+
"""
|
11 |
+
)
|