Spaces:
Build error
Build error
Update pages/introds.py
Browse files- pages/introds.py +16 -12
pages/introds.py
CHANGED
|
@@ -66,7 +66,6 @@ st.markdown(
|
|
| 66 |
<li>Techniques Used: Graph algorithms, optimization techniques</li>
|
| 67 |
</ul>
|
| 68 |
</div>
|
| 69 |
-
|
| 70 |
<div class="division">
|
| 71 |
<h2>Key Steps in Data Science</h2>
|
| 72 |
<p>Data Science involves several steps, such as:</p>
|
|
@@ -81,14 +80,19 @@ st.markdown(
|
|
| 81 |
""",
|
| 82 |
unsafe_allow_html=True
|
| 83 |
)
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
<li>Techniques Used: Graph algorithms, optimization techniques</li>
|
| 67 |
</ul>
|
| 68 |
</div>
|
|
|
|
| 69 |
<div class="division">
|
| 70 |
<h2>Key Steps in Data Science</h2>
|
| 71 |
<p>Data Science involves several steps, such as:</p>
|
|
|
|
| 80 |
""",
|
| 81 |
unsafe_allow_html=True
|
| 82 |
)
|
| 83 |
+
|
| 84 |
+
# Header section for Deep Learning
|
| 85 |
+
st.markdown("<h1>Welcome to Deep Learning</h1>", unsafe_allow_html=True)
|
| 86 |
+
|
| 87 |
+
# Main content for Deep Learning
|
| 88 |
+
st.markdown(
|
| 89 |
+
"""
|
| 90 |
+
<p style='font-size: 16px; color: blue; font-style: italic;'>
|
| 91 |
+
Deep learning is an artificial intelligence (AI) method that teaches computers to process data in a way inspired by the human brain.
|
| 92 |
+
Deep learning models can recognize complex patterns in images, text, sounds, and other data to produce accurate insights and predictions.
|
| 93 |
+
You can use deep learning methods to automate tasks that typically require human intelligence,
|
| 94 |
+
such as describing images or transcribing a sound file into text.
|
| 95 |
+
</p>
|
| 96 |
+
""",
|
| 97 |
+
unsafe_allow_html=True
|
| 98 |
+
)
|