-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (64 loc) · 3.58 KB
/
index.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
<!Doctype html>
<html lang="en-US">
<head>
<meta charset="Utf-8"/>
<title>Portfolio Website</title>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<header>
<h1><b>Portfolio Website</b></h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">BIO</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contacts</a></li>
</ul>
</nav>
</header>
<div>
<main>
<article>
<section>
<h3>Introduction</h3>
<p>Hello! I'm Saikat from India,an aspiring Data Scientist from west bengal kolkata.I have extensive experience in ML,computer vision.</p>
</section>
<section>
<h3>Education</h3>
<p>I've done B.Sc. in Mathematics from Calcutta University and currently pursuing M.Sc. in Datascience from <a href="https://rkmvu.ac.in/">RKMVERI</a>.</p>
</section>
<section>
<h3>Experience</h3>
<p>Regarding experience ,I've experience of more than two years in this field along with extensive background in mathematics and statistics.</p>
</section>
<section>
<h3 id="projects">Projects</h3>
<ul>
<li><h4><b>Exploratory data analysis on Indian trade:</b><br></h4>
<p>In this project I've done statistical analysis of Indian export import for FY2021-22 &FY2022-23.To know more about it please click <a href="EDA_Indian_Trade\main.html">here</a></p>
</li>
<li>
<h4><b>Bengali Handwritten Characters Recognition(OCR):</b><br></h4>
<p>This project was about classifying handwritten bengali characters from different individuals.To know more about it click <a href="Bengali_Handwritten_Character_recognition\main.html">here</a></p>
</li>
<li>
<h4><b>Zomato Delivery Time Prediction using Sparkling Water Distrbuted Computing Framework.</b></h4>
<p>In this project we have used pyspark+H2O to create a multinode cluster and thus analysed the zomato dataset.To know more about this project click <a href="https://github.com/ghoshsaikat2024/Delivery-Time-Prediction-Using-Sparkling-Water-Distributed-Computing-Pyspark-H2O-">here</a>.</p>
</li>
</ul>
</section>
</article>
</main>
<aside>
<img src="IMG-20210207-WA0000.jpg" width="200" height="300"/>
</aside>
</div>
<footer>
<h3 id="contact">Contact Details</h3>
<p> Email:[email protected]</p>
<p> Linkdin:<a href="www.linkedin.com/in/saikat-ghosh-0340551ba"> www.linkedin.com/in/saikat-ghosh-0340551ba</a></p>
<p>Github:<a href="https://github.com/ghoshsaikat2024/ghoshsaikat2024">https://github.com/ghoshsaikat2024/ghoshsaikat2024</a></p>
</footer>
</body>
</html>