-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEXPERIENCE.html
More file actions
67 lines (62 loc) · 2.16 KB
/
EXPERIENCE.html
File metadata and controls
67 lines (62 loc) · 2.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Guhan K.B | Publications</title>
<link rel="stylesheet" href="publications.css" />
</head>
<body>
<header class="main-header">
<div class="nav-container container">
<div class="nav-logo">MY EXPERIENCE</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="EXPERIENCE.html">Experience</a></li>
<li> <a href="certificates.html"> Certifications</a></li>
<li><button id="darkModeToggle">🌙</button></li>
</ul>
</div>
</header>
<section class="container publication-list">
<div class="pub-card">
<h2>Hanuven</h2>
<h6>Sep 2024 - PRESENT</h6>
<p>Hanuven healthcare is an Ayurvedic startup currently producing
Perchins Haircare Oil and Hanuvam Skincare Oil
As an Intern my duty is to mange team, documentation ,testing and
creating an chatbot for the company.
In further days we will be working on prediction of sales.
</p>
</div>
<div class="pub-card">
<h2>Metadata</h2>
<h6>Oct 2024 - PRESENT</h6>
<p>This product development initiative focuses on experimental model
analysis for statistics, machine learning, and deep learning.
Worked in creating a deep neural description tree model and
developing a chatbot for the complete product, along with full
documentation</p>
</div>
<div class="pub-card">
<h2>Atma yoga</h2>
<h6>Jan 2024 - PRESENT</h6>
<p>The product initiative aims to help people manage stress and
tension by assisting them in performing yoga asanas designed for
stress relief.
Working in creating the dataset of performing the yoga asana
currently</p>
</div>
</section>
<footer>
<p> Guhan K.B | Portfolio</p>
</footer>
<script>
document.getElementById("darkModeToggle").addEventListener("click", () => {
document.body.classList.toggle("dark");
});
</script>
</body>
</html>