Spaces:
Sleeping
Sleeping
Sathwikchowdary
commited on
Update pages/Intro_DS.py
Browse files- pages/Intro_DS.py +23 -5
pages/Intro_DS.py
CHANGED
@@ -65,17 +65,35 @@ st.markdown("<p style='font-size: 16px; color: Blue; font-style: italic;'>"
|
|
65 |
"</p>",
|
66 |
unsafe_allow_html=True)
|
67 |
st.markdown("<h3 style='text-align: left; color: Black;'>Types of Machine Learning </h3>", unsafe_allow_html=True)
|
68 |
-
st.markdown("
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
"Semi-Supervised Learning")
|
73 |
st.markdown("<h3 style='text-align: left; color: Black;'>Examples of ML </h3>",unsafe_allow_html=True)
|
74 |
st.markdown("<p style='font-size: 16px; color: Blue; font-style: italic;'>"
|
75 |
"Recommendation Systems (Netflix, YouTube, and Amazon):How It Works: Machine learning models use your previous behaviour (e.g., what you viewed or purchased) to propose new content or goods that you might enjoy.For example, Netflix recommends episodes based on what you've viewed, while Amazon sells things based on your browsing history."
|
76 |
"Fraud detection (banking and credit cards),How it works: Machine learning algorithms examine transaction data for unexpected patterns that might signal fraud.For example, credit card firms utilise machine learning to detect potentially fraudulent transactions in real time, such as a card being used in two different places within minutes."
|
77 |
"</p>",
|
78 |
unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
|
81 |
|
|
|
65 |
"</p>",
|
66 |
unsafe_allow_html=True)
|
67 |
st.markdown("<h3 style='text-align: left; color: Black;'>Types of Machine Learning </h3>", unsafe_allow_html=True)
|
68 |
+
st.markdown("1.Supervised Learning")
|
69 |
+
st.markdown("2Unsupervised Learning")
|
70 |
+
st.markdown("3.Reinforcement Learning")
|
71 |
+
st.markdown("4.Semi-Supervised Learning")
|
|
|
72 |
st.markdown("<h3 style='text-align: left; color: Black;'>Examples of ML </h3>",unsafe_allow_html=True)
|
73 |
st.markdown("<p style='font-size: 16px; color: Blue; font-style: italic;'>"
|
74 |
"Recommendation Systems (Netflix, YouTube, and Amazon):How It Works: Machine learning models use your previous behaviour (e.g., what you viewed or purchased) to propose new content or goods that you might enjoy.For example, Netflix recommends episodes based on what you've viewed, while Amazon sells things based on your browsing history."
|
75 |
"Fraud detection (banking and credit cards),How it works: Machine learning algorithms examine transaction data for unexpected patterns that might signal fraud.For example, credit card firms utilise machine learning to detect potentially fraudulent transactions in real time, such as a card being used in two different places within minutes."
|
76 |
"</p>",
|
77 |
unsafe_allow_html=True)
|
78 |
+
st.markdown("<h2 style='text-align: left; color: Black;'>Deep Learning (AI) </h2>", unsafe_allow_html=True)
|
79 |
+
st.markdown("<p style='font-size: 16px; color: Blue; font-style: italic;'>"
|
80 |
+
"Deep learning models are made up of several layers of artificial neurones, each of which gradually modifies the data. These layers are organised into a neural network, and the network's internal parameters (weights) are adjusted during training to reduce prediction error. Backpropagation is a common way for accomplishing this."
|
81 |
+
"</p>", unsafe_allow_html=True)
|
82 |
+
st.markdown("<h3 style='text-align: left; color: Black;'>Types of Deep Learning </h3>", unsafe_allow_html=True)
|
83 |
+
st.markdown("1.Feedforward Neural Networks (FNN)")
|
84 |
+
st.markdown("2.Convolutional Neural Networks (CNN)")
|
85 |
+
st.markdown("3.Recurrent Neural Networks (RNN)")
|
86 |
+
st.markdown("4.Long Short-Term Memory (LSTM) Networks")
|
87 |
+
st.markdown("5.Generative Adversarial Networks (GANs")
|
88 |
+
st.markdown("6.Generative Adversarial Networks (GANs")
|
89 |
+
st.markdown("<h3 style='text-align: left; color: Black;'>Examples of DL </h3>", unsafe_allow_html=True)
|
90 |
+
st.markdown("<p style='font-size: 16px; color: Blue; font-style: italic;'>"
|
91 |
+
"IMage Recognition (Computer Vision):Convolutional Neural Networks (CNNs) are utilised in face recognition systems, self-driving cars, and even medical imaging (tumour identification in X-rays or MRI scans).Real-World Applications: Instagram and Facebook utilise deep learning to automatically tag individuals in images."
|
92 |
+
"</p>", unsafe_allow_html=True)
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
|
98 |
|
99 |
|