Update pages/2_ML vs DL.py
Browse files- pages/2_ML vs DL.py +4 -4
pages/2_ML vs DL.py
CHANGED
|
@@ -2,14 +2,14 @@ import streamlit as st
|
|
| 2 |
|
| 3 |
st.markdown("""
|
| 4 |
<div style='text-align: center;'>
|
| 5 |
-
<h1 style='color:
|
| 6 |
</div>
|
| 7 |
""", unsafe_allow_html=True)
|
| 8 |
|
| 9 |
-
st.header(":
|
| 10 |
st.write(" ML involves algorithms that enable computers to learn from data and improve their performance over time without being explicitly programmed. It typically requires manual feature extraction and is suitable for structured data.Machine Learning algorithms that learn from structured data to predict outputs and discover patterns in that data.")
|
| 11 |
-
st.header(":
|
| 12 |
st.write("DL is a specialized subset of ML that uses neural networks with multiple layers (hence deep) to automatically learn and extract features from unstructured data, such as images and text. It mimics the human brain's neural structure. Deep Learning algorithms based on highly complex neural networks that mimic the way a human brain works to detect patterns in large unstructured data sets.")
|
| 13 |
-
st.header(":
|
| 14 |
st.write("ML and DL are the tools by using which we can mimic/copy Natural Intelligence where in this process of mimicing/copying we learn learning ability. Machine Learning (ML) and Deep Learning (DL) are both subsets of Artificial Intelligence (AI), but they differ significantly in their methodologies, complexity, and applications. Understanding these differences is crucial for selecting the appropriate approach for specific tasks.")
|
| 15 |
st.image("https://cdn-uploads.huggingface.co/production/uploads/66bc7901facf447e2ccaca9b/CFf7xz3YgnAArAQZK4m7h.png")
|
|
|
|
| 2 |
|
| 3 |
st.markdown("""
|
| 4 |
<div style='text-align: center;'>
|
| 5 |
+
<h1 style='color: rainbow;'>Difference between ML and DL</h1>
|
| 6 |
</div>
|
| 7 |
""", unsafe_allow_html=True)
|
| 8 |
|
| 9 |
+
st.header(":blue-background[What is Machine learning?]")
|
| 10 |
st.write(" ML involves algorithms that enable computers to learn from data and improve their performance over time without being explicitly programmed. It typically requires manual feature extraction and is suitable for structured data.Machine Learning algorithms that learn from structured data to predict outputs and discover patterns in that data.")
|
| 11 |
+
st.header(":blue-background[What is Deep learning?]")
|
| 12 |
st.write("DL is a specialized subset of ML that uses neural networks with multiple layers (hence deep) to automatically learn and extract features from unstructured data, such as images and text. It mimics the human brain's neural structure. Deep Learning algorithms based on highly complex neural networks that mimic the way a human brain works to detect patterns in large unstructured data sets.")
|
| 13 |
+
st.header(":blue-background[Difference between ML and DL:-]")
|
| 14 |
st.write("ML and DL are the tools by using which we can mimic/copy Natural Intelligence where in this process of mimicing/copying we learn learning ability. Machine Learning (ML) and Deep Learning (DL) are both subsets of Artificial Intelligence (AI), but they differ significantly in their methodologies, complexity, and applications. Understanding these differences is crucial for selecting the appropriate approach for specific tasks.")
|
| 15 |
st.image("https://cdn-uploads.huggingface.co/production/uploads/66bc7901facf447e2ccaca9b/CFf7xz3YgnAArAQZK4m7h.png")
|