-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojectml.html
190 lines (173 loc) · 11.2 KB
/
projectml.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/favicon.ico">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@200&family=Roboto+Mono:wght@600&family=Sacramento&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<title>Anshul Chaudhary | Machine Learning</title>
</head>
<body>
<div class="top-container">
<img class="top-cloud" src="img/cloud.png" alt="cloud-image">
<h1 class="front-text-h1">Machine Learning</h1>
<h2>Projects</h2>
<img class="bottom-cloud" src="img/cloud.png" alt="cloud-image">
<img class="mountain-img" src="img/mountain.png" alt="mountain-image">
</div>
<div class="mlproject">
<div class="card">
<div class="card-image1"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Driver Drowsiness Detection</h2>
<p>The majority of accidents happen due to the drowsiness of the driver. So, to prevent these accidents a
system is
build using Python, OpenCV, and Keras which will detect if the driver is sleepy.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="https://github.com/anschy/Driver-Drowsiness-Detection">Click here to know more</a>
</div>
</div>
</div>
<div class="card">
<div class="card-image2"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Cyclone Detection Deployed</h2>
<p>Tropical Coastal areas in the part of Odisha, India suffers cyclones and associated storm regularly and thus
do a lot of damage, therefore with the help of this model we can easily predict cyclone.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="https://github.com/anschy/Cyclone-Detection-Deployed-model">Click here to know more</a>
</div>
</div>
</div>
<div class="card">
<div class="card-image3"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Covid Detection using Cough</h2>
<p>This model can simply predict whether the end user is effected with the covid or not within the matter of seconds when the network is fed with the
sound of the 3 second of cough in an mp3 audio format.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="https://share.streamlit.io/ashish-arya-cs/covdetec/main/CovDetec.py">Click here to know more</a>
</div>
</div>
</div>
<div class="card">
<div class="card-image4"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Image based Pothole Detection for Intelligent</h2>
<p>Every year lot of cars bear hefty damage because of potholes in the road. this model prediction the
Potholes with the help of the camera in real time and thus can warn the driver regarding the same.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="#">Click here to know more</a>
</div>
</div>
</div>
<div class="card">
<div class="card-image5"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Prediction of the Heart Attack</h2>
<p>This model helps to classify whether a person with certain features and attribute such as age, sex, chest pain (4 values) type and number of major vessels might suffer from Heart-
Attack or not.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="https://www.kaggle.com/anshulchaudhary/heart-attack-prediction-using-deep-learning-ann">Click here to know more</a>
</div>
</div>
</div>
<div class="card">
<div class="card-image6"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Accident Detection From CCTV Footage</h2>
<p>The datasets contains frames from Videos involving accidents. Implementing an CNN
architecture to capture the features and predict if the images fall under Accident classification or Nonaccidental
classification.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="#">Click here to know more</a>
</div>
</div>
</div>
<div class="card">
<div class="card-image7"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Predicting and Plotting Google Stock Price</h2>
<p>This model helps in prediction of the stock prices using LSTM (Long - Short Term Memory). The visualization
is also done to compare the original and the predicted trend in Stocks prices.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="https://github.com/anschy/Predicting-and-Plotting-Stock-Price-using-LSTM">Click here to know more</a>
</div>
</div>
</div>
<div class="card">
<div class="card-image8"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Face-detection using SSD</h2>
<p>Unlike simple haarcascade this project can detect faces with high confidence with the help of a pre-trained defined Caffe and SSD (single shot
detector) model on an image or a webcam.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="https://github.com/anschy/Face-detection-using-SDD">Click here to know more</a>
</div>
</div>
</div>
<div class="card">
<div class="card-image9"></div>
<div class="card-text">
<span class="date">ML</span>
<h2>Instagram account spam classifier</h2>
<p>The
Algorithm used in this model will be able to predict whether the given account with it's username, followers,
follows, and some other details is classified as spam or genuine account.</p>
</div>
<div class="card-stats">
<div class="card-stats-link">
<a target="_blank" href="#">Click here to know more</a>
</div>
</div>
</div>
<div class="navbar">
<a href="index.html">Home</a>
<br>
<a href="projectweb.html">Web projects</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/anshul-chaudhary-2001/" target="_blank">LinkedIn <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg></a>
<a class="footer-link" href="https://github.com/anschy" target="_blank">Github <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg></a>
<a class="footer-link" href="https://anschy.github.io/">Website <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-globe" viewBox="0 0 16 16">
<path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855A7.97 7.97 0 0 0 5.145 4H7.5V1.077zM4.09 4a9.267 9.267 0 0 1 .64-1.539 6.7 6.7 0 0 1 .597-.933A7.025 7.025 0 0 0 2.255 4H4.09zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a6.958 6.958 0 0 0-.656 2.5h2.49zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5H4.847zM8.5 5v2.5h2.99a12.495 12.495 0 0 0-.337-2.5H8.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5H4.51zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5H8.5zM5.145 12c.138.386.295.744.468 1.068.552 1.035 1.218 1.65 1.887 1.855V12H5.145zm.182 2.472a6.696 6.696 0 0 1-.597-.933A9.268 9.268 0 0 1 4.09 12H2.255a7.024 7.024 0 0 0 3.072 2.472zM3.82 11a13.652 13.652 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5H3.82zm6.853 3.472A7.024 7.024 0 0 0 13.745 12H11.91a9.27 9.27 0 0 1-.64 1.539 6.688 6.688 0 0 1-.597.933zM8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855.173-.324.33-.682.468-1.068H8.5zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.65 13.65 0 0 1-.312 2.5zm2.802-3.5a6.959 6.959 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5h2.49zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7.024 7.024 0 0 0-3.072-2.472c.218.284.418.598.597.933zM10.855 4a7.966 7.966 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4h2.355z" />
</svg></a>
<p class="footer-p">© 2021 Anshul Chaudhary.</p>
</div>
</body>
</html>