JavierGon12 commited on
Commit
5c97133
1 Parent(s): 96c3959

Change intro and add audio from microphone to speech recognition

Browse files
Files changed (2) hide show
  1. app.py +13 -11
  2. 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("Intro")
55
  with col3:
56
- st.image("logo retraced 2.png",width=150)
57
  st.write("##")
58
  st.markdown(
59
  """
60
- Welcome to **RetrAIced**, a user-friendly app that unifies a diverse array of AI models, offering a seamless platform for exploration and interaction. From natural language processing to image recognition,
61
- the app provides a comprehensive experience, showcasing real-time demonstrations of predictive analytics and the fusion of various AI technologies. \n
62
-
63
- Language models (LLMs), especially those from Hugging Face, have transformed natural language understanding and generation, becoming indispensable in today's data-driven world.
64
- RetrAIced exemplifies the collaborative potential of AI by breaking down barriers between different models, making their collective power accessible to users of all backgrounds.
65
- The app invites developers, data enthusiasts, and the curious to explore and experiment with models for tasks like Question Answering, Speech Recognition, Summarization, Text
66
- Classification, and Text Generation. This unified experience paves the way for a connected and intelligent digital world, where projects can become more versatile, efficient, and engaging.\n
67
-
68
- Join the creator on an exciting journey into the world of language models through RetrAIced, unlocking a universe of possibilities and transforming complexities into a unified and intuitive AI experience.
 
 
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'])