themeetjani commited on
Commit
79a4ff7
β€’
1 Parent(s): 7d95217

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -5
app.py CHANGED
@@ -54,6 +54,20 @@ add_logo("logoo.png")
54
  st.markdown("<h2 style='text-align: center; color: black;'>This is the demo for the usecases we've worked on.</h1>", unsafe_allow_html=True)
55
 
56
  st.markdown("<h3 style='text-align: center; color: black;'>Select a demo from the sidebar to see some examples of what we can do!!! </h2>", unsafe_allow_html=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  footer="""<style>
58
  a:link , a:visited{
59
  color: blue;
@@ -120,13 +134,13 @@ show_pages(
120
  Page("pages/topic_classification.py", "Topic Classification", "πŸ“ˆ"),
121
  Section("Deep Learning", icon="πŸ€–"),
122
  Page(path = "pages/deep_learning_demo.py", name = "Image Analytics", icon = "πŸ“ˆ"),
123
- Page(path = "pages/deep_learning_demo.py",name = "Video Analytics", icon ="πŸ“ˆ"),
124
- Page(path = "pages/deep_learning_demo.py",name = "Speech Recognization", icon = "πŸ“ˆ"),
125
  Section("Machine Learning", icon="πŸ€–"),
126
  Page(path = "pages/machine_learning_demo.py",name = "Regression", icon = "πŸ“ˆ"),
127
- Page(path = "pages/machine_learning_demo.py",name = "Forecasting", icon = "πŸ“ˆ"),
128
- Page(path = "pages/machine_learning_demo.py",name = "Clustering", icon = "πŸ“ˆ"),
129
- Page(path = "pages/machine_learning_demo.py",name = "Optimization", icon ="πŸ“ˆ")
130
 
131
 
132
  ]
 
54
  st.markdown("<h2 style='text-align: center; color: black;'>This is the demo for the usecases we've worked on.</h1>", unsafe_allow_html=True)
55
 
56
  st.markdown("<h3 style='text-align: center; color: black;'>Select a demo from the sidebar to see some examples of what we can do!!! </h2>", unsafe_allow_html=True)
57
+
58
+ paragraph = """
59
+ As a data AI team, our capabilities are demonstrated through the functionalities showcased on our demo site.
60
+ The team has developed a diverse set of applications that leverage artificial intelligence and machine learning techniques.
61
+ The "Home" page serves as a central hub, providing access to various sections.
62
+ Within the "GenAI" section, we showcase advanced technologies such as an AI Chatbot, auto code generation, report generation, and score generation.
63
+ The "Deep Learning" section features demonstrations in image analytics, video analytics, and speech recognition.
64
+ In the "Machine Learning" section, we exhibit our proficiency in regression, forecasting, clustering, and optimization.
65
+ Our team's expertise lies in delivering innovative solutions that harness the power of data and AI, addressing a wide range of challenges and applications.
66
+ """
67
+
68
+ # Display the paragraph within a Streamlit HTML element
69
+ st.markdown(paragraph, unsafe_allow_html=True)
70
+
71
  footer="""<style>
72
  a:link , a:visited{
73
  color: blue;
 
134
  Page("pages/topic_classification.py", "Topic Classification", "πŸ“ˆ"),
135
  Section("Deep Learning", icon="πŸ€–"),
136
  Page(path = "pages/deep_learning_demo.py", name = "Image Analytics", icon = "πŸ“ˆ"),
137
+ Page(path = "pages/deep_learning_demo2.py",name = "Video Analytics", icon ="πŸ“ˆ"),
138
+ Page(path = "pages/deep_learning_demo3.py",name = "Speech Recognization", icon = "πŸ“ˆ"),
139
  Section("Machine Learning", icon="πŸ€–"),
140
  Page(path = "pages/machine_learning_demo.py",name = "Regression", icon = "πŸ“ˆ"),
141
+ Page(path = "pages/machine_learning_demo2.py",name = "Forecasting", icon = "πŸ“ˆ"),
142
+ Page(path = "pages/machine_learning_demo3.py",name = "Clustering", icon = "πŸ“ˆ"),
143
+ Page(path = "pages/machine_learning_demo4.py",name = "Optimization", icon ="πŸ“ˆ")
144
 
145
 
146
  ]