Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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/
|
| 124 |
-
Page(path = "pages/
|
| 125 |
Section("Machine Learning", icon="π€"),
|
| 126 |
Page(path = "pages/machine_learning_demo.py",name = "Regression", icon = "π"),
|
| 127 |
-
Page(path = "pages/
|
| 128 |
-
Page(path = "pages/
|
| 129 |
-
Page(path = "pages/
|
| 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 |
]
|