-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05_Projects.htm
65 lines (59 loc) · 3.44 KB
/
05_Projects.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suraj's Portfolio - Projects</title>
<link rel="icon" href="/images/faviconnew.jpg">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="05_Projects.css">
<script src="linked.js"></script>
</head>
<body oncontextmenu="return false">
<div class="head">
<button class="name">Suraj Sanganbhatla</button> <br>
<ul>
<li><a href="/index.htm">Home </a></li>
<li> <a href="/02_Education.htm"> Education </a> </li>
<li> <a href="/03_Skills.htm"> Skills </a> </li>
<li> <a href="/04_Scholastic.htm"> Scholastic </a> </li>
<li class="active"> <button> Projects </button> </li>
<li> <a href="/06_Contact.htm"> Contact </a> </li>
</ul>
</div>
<div class="container">
<ol>
<li> <b> <a href="https://github.com/iamssuraj/Phished-URL-Detection-System" target="_blank"> Phished URL
Detection System (Apr 23 - May 23)</a></b> </li> Developed a Phished URL detection system using
a model architecture consisting of 1D CNN and LSTM layers achieving an accuracy of around 95%.
<hr>
<li> <b> <a href="https://github.com/iamssuraj/Interactive-Lung-Cancer-Detection-System"
target="_blank">Lung Cancer Detection
(Sept 2022)</a></b> </li>
Built an interactive data-driven lung cancer detection system by using multiple Machine Learning algorithms
such as Logistic Regression, Decision Tree, SVM, KNN, Random Forest, and Naive Bayes and ANN on a dataset
from Kaggle, achieving a combined accuracy of 94.6183%, using python modules such as numpy, pandas,
matplotlib, scikit learn, streamlit and tensorflow (keras).
<hr>
<li> <b> <a href="https://iamssuraj.netlify.app/" target="_blank">Portfolio Website (Jan 2022)</a></b> </li>
This is the website that you are looking at. 😂Designed and developed this responsive portfolio
website that highlights my education, experience, projects,
and skills. Used HTML, CSS, a little JavaScript and Bootstrap.
<hr>
<li><b><a href="https://flamesbysuraj.netlify.app/" target="_blank">Flames Website (Dec 2021)</a></b> </li>
Designed and developed a responsive website to demonstrate the ’FLAMES’ game, which predicts a hypothetical
relationship between two people, using HTML, CSS and JavaScript.
<hr>
<span> Note : You can click on Project title to view it.</span>
</ol>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"></script>
</body>
</html>