Skip to content

Commit 424712e

Browse files
authored
unsuprvised learning
1 parent ca62d01 commit 424712e

File tree

4 files changed

+343
-1
lines changed

4 files changed

+343
-1
lines changed
58.4 KB
Loading

machine-learning.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,20 @@ <h2>Machine learning</h2>
197197
</div>
198198
</div>
199199

200+
<div class="col-lg-4 col-md-6 portfolio-item filter-python">
201+
<div class="tooltip-container">
202+
<a href="unsupervised_learning.html">
203+
<div class="portfolio-wrap">
204+
<img src="assets/img/data-engineering/ML-rg-0.png" class="img-fluid" alt="" style="width: 65%; height: auto;">
205+
<p class="portfolio-title">3. Unsupervised Algorithms</p>
206+
</div>
207+
<div class="tooltip-text">
208+
Machine learning algorithms that learn from labeled training data to make predictions or decisions, such as linear regression, decision trees, and support vector machines.
209+
</div>
210+
</a>
211+
</div>
212+
</div>
213+
200214
<!-- Portfolio items for 'ML' category -->
201215
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-ML">
202216
<a href="Linear-reg.html" title="An optimization technique used to minimize the loss function by iteratively adjusting model parameters in the direction of the steepest descent.">

supervised.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8">
66
<meta content="width=device-width, initial-scale=1.0" name="viewport">
77

8-
<title>Regression models</title>
8+
<title>Supervised Learning algorithms</title>
99
<meta content="" name="description">
1010
<meta content="" name="keywords">
1111

unsupervised_learning.html

Lines changed: 328 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,328 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta content="width=device-width, initial-scale=1.0" name="viewport">
7+
8+
<title>Unsupervised Learning</title>
9+
<meta content="" name="description">
10+
<meta content="" name="keywords">
11+
12+
<!-- Favicons -->
13+
<link href="assets/img/Favicon-1.png" rel="icon">
14+
<link href="assets/img/Favicon-1.png" rel="apple-touch-icon">
15+
16+
<!-- Google Fonts -->
17+
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
18+
19+
<!-- Vendor CSS Files -->
20+
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
21+
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
22+
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
23+
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
24+
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
25+
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
26+
<!-- Creating a python code section-->
27+
<link rel="stylesheet" href="assets/css/prism.css">
28+
<script src="assets/js/prism.js"></script>
29+
30+
<!-- Template Main CSS File -->
31+
<link href="assets/css/style.css" rel="stylesheet">
32+
33+
<!-- To set the icon, visit https://fontawesome.com/account-->
34+
<script src="https://kit.fontawesome.com/5d25c1efd3.js" crossorigin="anonymous"></script>
35+
<!-- end of icon-->
36+
37+
<!-- =======================================================
38+
* Template Name: iPortfolio
39+
* Updated: Sep 18 2023 with Bootstrap v5.3.2
40+
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
41+
* Author: BootstrapMade.com
42+
* License: https://bootstrapmade.com/license/
43+
======================================================== -->
44+
</head>
45+
46+
<body>
47+
48+
<!-- ======= Mobile nav toggle button ======= -->
49+
<i class="bi bi-list mobile-nav-toggle d-xl-none"></i>
50+
51+
<!-- ======= Header ======= -->
52+
<header id="header">
53+
<div class="d-flex flex-column">
54+
55+
<div class="profile">
56+
<img src="assets/img/myphoto.jpeg" alt="" class="img-fluid rounded-circle">
57+
<h1 class="text-light"><a href="index.html">Arun</a></h1>
58+
<div class="social-links mt-3 text-center">
59+
<a href="https://www.linkedin.com/in/arunp77/" target="_blank" class="linkedin"><i class="bx bxl-linkedin"></i></a>
60+
<a href="https://github.com/arunp77" target="_blank" class="github"><i class="bx bxl-github"></i></a>
61+
<a href="https://twitter.com/arunp77_" target="_blank" class="twitter"><i class="bx bxl-twitter"></i></a>
62+
<a href="https://www.instagram.com/arunp77/" target="_blank" class="instagram"><i class="bx bxl-instagram"></i></a>
63+
<a href="https://arunp77.medium.com/" target="_blank" class="medium"><i class="bx bxl-medium"></i></a>
64+
</div>
65+
</div>
66+
67+
<nav id="navbar" class="nav-menu navbar">
68+
<ul>
69+
<li><a href="index.html#hero" class="nav-link scrollto active"><i class="bx bx-home"></i> <span>Home</span></a></li>
70+
<li><a href="index.html#about" class="nav-link scrollto"><i class="bx bx-user"></i> <span>About</span></a></li>
71+
<li><a href="index.html#resume" class="nav-link scrollto"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
72+
<li><a href="index.html#portfolio" class="nav-link scrollto"><i class="bx bx-book-content"></i> <span>Portfolio</span></a></li>
73+
<li><a href="index.html#skills-and-tools" class="nav-link scrollto"><i class="bx bx-wrench"></i> <span>Skills and Tools</span></a></li>
74+
<li><a href="index.html#language" class="nav-link scrollto"><i class="bi bi-menu-up"></i> <span>Languages</span></a></li>
75+
<li><a href="index.html#awards" class="nav-link scrollto"><i class="bi bi-award-fill"></i> <span>Awards</span></a></li>
76+
<li><a href="index.html#professionalcourses" class="nav-link scrollto"><i class="bx bx-book-alt"></i> <span>Professional Certification</span></a></li>
77+
<li><a href="index.html#publications" class="nav-link scrollto"><i class="bx bx-news"></i> <span>Publications</span></a></li>
78+
<li><a href="index.html#extra-curricular" class="nav-link scrollto"><i class="bx bx-rocket"></i> <span>Extra-Curricular Activities</span></a></li>
79+
<!-- <li><a href="#contact" class="nav-link scrollto"><i class="bx bx-envelope"></i> <span>Contact</span></a></li> -->
80+
</ul>
81+
</nav><!-- .nav-menu -->
82+
</div>
83+
</header><!-- End Header -->
84+
85+
<main id="main">
86+
87+
<!-- ======= Breadcrumbs ======= -->
88+
<section id="breadcrumbs" class="breadcrumbs">
89+
<div class="container">
90+
91+
<div class="d-flex justify-content-between align-items-center">
92+
<h2></h2>
93+
<ol>
94+
<li><a href="machine-learning.html" class="clickable-box">Content section</a></li>
95+
<li><a href="index.html#portfolio" class="clickable-box">Portfolio section</a></li>
96+
</ol>
97+
</div>
98+
99+
</div>
100+
</section><!-- End Breadcrumbs -->
101+
102+
<!------ right dropdown menue ------->
103+
<div class="right-side-list">
104+
<div class="dropdown">
105+
<button class="dropbtn"><strong>Shortcuts:</strong></button>
106+
<div class="dropdown-content">
107+
<ul>
108+
<li><a href="cloud-compute.html"><i class="fas fa-cloud"></i> Cloud</a></li>
109+
<li><a href="AWS-GCP.html"><i class="fas fa-cloud"></i> AWS-GCP</a></li>
110+
<li><a href="amazon-s3.html"><i class="fas fa-cloud"></i> AWS S3</a></li>
111+
<li><a href="ec2-confi.html"><i class="fas fa-server"></i> EC2</a></li>
112+
<li><a href="Docker-Container.html"><i class="fab fa-docker" style="color: rgb(29, 27, 27);"></i> Docker</a></li>
113+
<li><a href="Jupyter-nifi.html"><i class="fab fa-python" style="color: rgb(34, 32, 32);"></i> Jupyter-nifi</a></li>
114+
<li><a href="snowflake-task-stream.html"><i class="fas fa-snowflake"></i> Snowflake</a></li>
115+
<li><a href="data-model.html"><i class="fas fa-database"></i> Data modeling</a></li>
116+
<li><a href="sql-basics.html"><i class="fas fa-table"></i> QL</a></li>
117+
<li><a href="sql-basic-details.html"><i class="fas fa-database"></i> SQL</a></li>
118+
<li><a href="Bigquerry-sql.html"><i class="fas fa-database"></i> Bigquerry</a></li>
119+
<li><a href="scd.html"><i class="fas fa-archive"></i> SCD</a></li>
120+
<li><a href="sql-project.html"><i class="fas fa-database"></i> SQL project</a></li>
121+
<!-- Add more subsections as needed -->
122+
</ul>
123+
</div>
124+
</div>
125+
</div>
126+
127+
<!-- ======= Portfolio Details Section ======= -->
128+
<section id="portfolio-details" class="portfolio-details">
129+
<div class="container">
130+
<div class="row gy-4">
131+
<div class="col-lg-8">
132+
<h1>Machine learning: Unsupervised Learning</h1>
133+
<div class="portfolio-details-slider swiper">
134+
<div class="swiper-wrapper align-items-center">
135+
136+
<figure>
137+
<img src="assets/img/machine-ln/unsupervised_learning.png" alt="" style="max-width: 50%; max-height: 50%;">
138+
<figcaption></figcaption>
139+
</figure>
140+
141+
</div>
142+
<div class="swiper-pagination"></div>
143+
</div>
144+
</div>
145+
146+
<div class="col-lg-4 grey-box">
147+
148+
<div class="section-title">
149+
<h3>Content</h3>
150+
<ol>
151+
<li><a href="#introduction">Introduction</a>
152+
<ul>
153+
<li><a href="#what-is-supervised-learning">Types of Supervised Learning</a></li>
154+
<li><a href="#common-sla">Common Supervised Learning Algorithms</a></li>
155+
</ul>
156+
</li>
157+
158+
<li><a href="#reference">Reference</a></li>
159+
</ol>
160+
</div>
161+
</div>
162+
</div>
163+
164+
<section id="introduction">
165+
<h2>Introduction</h2>
166+
<p>
167+
Unsupervised learning is a branch of machine learning where the model learns from <strong>unlabeled data</strong>.
168+
Unlike supervised learning, it does not require labeled inputs or outputs. Instead, it focuses on discovering
169+
hidden patterns, groupings, or structures within the data. It’s especially useful in exploratory data analysis,
170+
clustering, anomaly detection, and dimensionality reduction.
171+
</p>
172+
173+
<div class="section" id="core-idea">
174+
<h2>Core Idea</h2>
175+
<p>
176+
In unsupervised learning:
177+
</p>
178+
<ul>
179+
<li>There are <strong>no target labels</strong></li>
180+
<li>The model tries to learn the <strong>structure or distribution</strong> of the data</li>
181+
<li>It discovers <strong>clusters, associations, or anomalies</strong></li>
182+
</ul>
183+
<p>
184+
Key components often include:
185+
</p>
186+
<ul>
187+
<li><strong>Input:</strong> Unlabeled dataset (X)</li>
188+
<li><strong>Goal:</strong> Find hidden patterns or reduce complexity</li>
189+
<li><strong>Output:</strong> Groups, compressed representations, or flagged outliers</li>
190+
</ul>
191+
</div>
192+
193+
<div class="section" id="types">
194+
<h2>Key Types of Unsupervised Algorithms</h2>
195+
196+
<h3>1. Clustering Algorithms</h3>
197+
<ul>
198+
<li><strong>K-Means:</strong> Partitions data into <code>K</code> groups by minimizing intra-cluster distances. Fast and scalable.</li>
199+
<li><strong>Hierarchical Clustering:</strong> Creates a nested tree of clusters using a bottom-up (agglomerative) or top-down approach. Doesn’t require K.</li>
200+
<li><strong>DBSCAN:</strong> Groups densely packed points. Great for detecting noise and arbitrary shapes.</li>
201+
<li><strong>Gaussian Mixture Models (GMM):</strong> Soft clustering using a probabilistic approach with Gaussian distributions.</li>
202+
</ul>
203+
204+
<h3>2. Dimensionality Reduction</h3>
205+
<ul>
206+
<li><strong>PCA:</strong> Projects data into a lower-dimensional space while preserving variance.</li>
207+
<li><strong>t-SNE:</strong> Non-linear technique for 2D/3D visualization by preserving local relationships.</li>
208+
<li><strong>UMAP:</strong> Similar to t-SNE but faster and better at preserving global structure.</li>
209+
</ul>
210+
211+
<h3>3. Anomaly Detection</h3>
212+
<ul>
213+
<li><strong>One-Class SVM:</strong> Learns a decision boundary around the normal data points.</li>
214+
<li><strong>Isolation Forest:</strong> Randomly splits data—anomalies are isolated faster with fewer splits.</li>
215+
<li><strong>Local Outlier Factor (LOF):</strong> Detects outliers by comparing local density to neighbors.</li>
216+
</ul>
217+
218+
<h3>4. Association Rule Learning</h3>
219+
<ul>
220+
<li><strong>Apriori Algorithm:</strong> Finds frequent itemsets and derives association rules (e.g., market basket analysis).</li>
221+
<li><strong>Eclat Algorithm:</strong> A vertical layout-based alternative to Apriori, faster for large datasets.</li>
222+
</ul>
223+
</div>
224+
225+
<div class="section" id="use-cases">
226+
<h2>Use Cases</h2>
227+
<table>
228+
<thead>
229+
<tr>
230+
<th>Task</th>
231+
<th>Common Algorithm</th>
232+
</tr>
233+
</thead>
234+
<tbody>
235+
<tr>
236+
<td>Customer Segmentation</td>
237+
<td>K-Means, GMM</td>
238+
</tr>
239+
<tr>
240+
<td>Document Topic Modeling</td>
241+
<td>LDA (Latent Dirichlet Allocation)</td>
242+
</tr>
243+
<tr>
244+
<td>Anomaly Detection in Logs</td>
245+
<td>Isolation Forest, LOF</td>
246+
</tr>
247+
<tr>
248+
<td>Recommender Systems</td>
249+
<td>Association Rules (Apriori, Eclat)</td>
250+
</tr>
251+
<tr>
252+
<td>High-Dimensional Data Visualization</td>
253+
<td>t-SNE, UMAP, PCA</td>
254+
</tr>
255+
</tbody>
256+
</table>
257+
</div>
258+
</section>
259+
260+
261+
<!-------Reference ------->
262+
<section id="reference">
263+
<h2>References</h2>
264+
<ul>
265+
<li>My github Repositories on Remote sensing <a href="https://github.com/arunp77/Machine-Learning/" target="_blank">Machine learning</a></li>
266+
</ul>
267+
</section>
268+
269+
<hr>
270+
271+
<div style="background-color: #f0f0f0; padding: 15px; border-radius: 5px;">
272+
273+
<h3>Some other interesting things to know:</h3>
274+
<ul style="list-style-type: disc; margin-left: 30px;">
275+
<li>Visit my website on <a href="sql-project.html">For Data, Big Data, Data-modeling, Datawarehouse, SQL, cloud-compute.</a></li>
276+
<li>Visit my website on <a href="Data-engineering.html">Data engineering</a></li>
277+
</ul>
278+
</div>
279+
<p></p>
280+
281+
<div class="navigation">
282+
<a href="index.html#portfolio" class="clickable-box">
283+
<span class="arrow-left">Portfolio section</span>
284+
</a>
285+
286+
<a href="machine-learning.html" class="clickable-box">
287+
<span class="arrow-right">Content</span>
288+
</a>
289+
</div>
290+
</div>
291+
</div>
292+
</section><!-- End Portfolio Details Section -->
293+
</main><!-- End #main --
294+
295+
<!-- ======= Footer ======= -->
296+
<footer id="footer">
297+
<div class="container">
298+
<div class="copyright">
299+
&copy; Copyright <strong><span>Arun</span></strong>
300+
</div>
301+
</div>
302+
</footer><!-- End Footer -->
303+
304+
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
305+
306+
<!-- Vendor JS Files -->
307+
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
308+
<script src="assets/vendor/aos/aos.js"></script>
309+
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
310+
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
311+
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
312+
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
313+
<script src="assets/vendor/typed.js/typed.umd.js"></script>
314+
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
315+
<script src="assets/vendor/php-email-form/validate.js"></script>
316+
317+
<!-- Template Main JS File -->
318+
<script src="assets/js/main.js"></script>
319+
320+
<script>
321+
document.addEventListener("DOMContentLoaded", function () {
322+
hljs.initHighlightingOnLoad();
323+
});
324+
</script>
325+
326+
</body>
327+
328+
</html>

0 commit comments

Comments
 (0)