Spaces:
Runtime error
Runtime error
JavierGon12
commited on
Commit
•
5c97133
1
Parent(s):
96c3959
Change intro and add audio from microphone to speech recognition
Browse files- app.py +13 -11
- pages/Speech Recognition.py +1 -0
app.py
CHANGED
@@ -51,21 +51,23 @@ show_pages(
|
|
51 |
|
52 |
col1,col2,col3=st.columns(3)
|
53 |
with col1:
|
54 |
-
st.header("
|
55 |
with col3:
|
56 |
-
st.image("logo retraced 2.png",width=150)
|
57 |
st.write("##")
|
58 |
st.markdown(
|
59 |
"""
|
60 |
-
Welcome to **RetrAIced**,
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
|
|
|
|
69 |
|
70 |
"""
|
71 |
, unsafe_allow_html=True)
|
|
|
51 |
|
52 |
col1,col2,col3=st.columns(3)
|
53 |
with col1:
|
54 |
+
st.header("RetrAIced")
|
55 |
with col3:
|
56 |
+
st.image("logo retraced 2.png",width=150,caption = "retrAIced logo generated by Text to Image model")
|
57 |
st.write("##")
|
58 |
st.markdown(
|
59 |
"""
|
60 |
+
Welcome to **RetrAIced**, the cool app that brings together a bunch of AI models in one place.
|
61 |
+
It's like a playground for exploring all kinds of AI stuff, from understanding language to recognizing images.
|
62 |
+
You can see real-time demos of predictive analytics and how different AI technologies work together.
|
63 |
+
Everyone can jump in and play around with models for things like answering questions, recognizing speech, summarizing text, and creating more text.
|
64 |
+
It's like entering a smart digital space where projects get a boost to be more flexible, efficient, and enjoyable.\n
|
65 |
+
|
66 |
+
RetrAIced is powered by models from ***Hugging Face***, a key player in the language model world.
|
67 |
+
Language models (LLMs), especially those from Hugging Face, have transformed natural language understanding and generation,
|
68 |
+
becoming indispensable in today's data-driven world. RetrAIced exemplifies the collaborative potential of AI by breaking down barriers between different models, making their collective power accessible to users of all backgrounds. \n
|
69 |
+
|
70 |
+
Come along on a fun ride into the language model world with RetrAIced! You'll uncover a bunch of possibilities and see how things can get way easier and more intuitive with AI.
|
71 |
|
72 |
"""
|
73 |
, unsafe_allow_html=True)
|
pages/Speech Recognition.py
CHANGED
@@ -19,6 +19,7 @@ if option == "Microphone":
|
|
19 |
st.write("Please start the recording in the box above")
|
20 |
else:
|
21 |
st.audio(audio["bytes"])
|
|
|
22 |
|
23 |
elif option == "Upload file":
|
24 |
audio = st.file_uploader(label="Upload your audio file here",type=["wav",'mp3'])
|
|
|
19 |
st.write("Please start the recording in the box above")
|
20 |
else:
|
21 |
st.audio(audio["bytes"])
|
22 |
+
audio = audio['bytes']
|
23 |
|
24 |
elif option == "Upload file":
|
25 |
audio = st.file_uploader(label="Upload your audio file here",type=["wav",'mp3'])
|