Spaces:
Build error
Build error
Update pages/DIFFERENCES_BETWEEN_ML&DL.py
Browse files
pages/DIFFERENCES_BETWEEN_ML&DL.py
CHANGED
|
@@ -64,3 +64,20 @@ st.markdown(
|
|
| 64 |
""",
|
| 65 |
unsafe_allow_html=True
|
| 66 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
""",
|
| 65 |
unsafe_allow_html=True
|
| 66 |
)
|
| 67 |
+
# Content for Deep Learning
|
| 68 |
+
st.markdown(
|
| 69 |
+
"""
|
| 70 |
+
<div class="division">
|
| 71 |
+
<h2>Key Points in Deep Leraning</h2>
|
| 72 |
+
<ul>
|
| 73 |
+
<li><strong>Data Points:</strong> Machine Learning models csan be trained on larger dataset.</li>
|
| 74 |
+
<li><strong>Hardware for Training:</strong> Training can be done on GPUs.</li>
|
| 75 |
+
<li><strong>Training Time:</strong> Requires more time due to larger dataset sizes and bigger algorithms.</li>
|
| 76 |
+
<li><strong>Algorithm Complexity:</strong> Deep learning algorithms are based on artificial neural networks that consist of multiple layers and nodes..</li>
|
| 77 |
+
<li><strong>Analysis Complexity:</strong>Uses complex neural networks with multiple layers to analyze more intricate patterns and relationships.</li>
|
| 78 |
+
<li><strong>Application Areas:</strong> Deep learning is mostly used for complex tasks such as image and speech recognition, natural language processing, and autonomous systems.</li>
|
| 79 |
+
</ul>
|
| 80 |
+
</div>
|
| 81 |
+
""",
|
| 82 |
+
unsafe_allow_html=True
|
| 83 |
+
)
|