-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlops.html
50 lines (50 loc) · 1.78 KB
/
mlops.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
<title>Portfolio Site</title>
</head>
<body>
<div class="banner-container">
<div class="banner-inner">
<div class="intro-div">
<h2>Agnes Olorundare</h2>
<h3>Cloud/DevOps Engineer</h3>
</div>
<div class="nav-btn-div">
<div><a href="about.html">About Me</a></div>
<div><a href="devops.html">DevOps Projects</a></div>
<div><a href="cloud.html">Cloud Projects</a></div>
<div><a href="mlops.html">MLOps Projects</a></div>
</div>
</div>
</div>
<div class="cloud-body">
<h2>MLOPS PROJECTS</h2>
<div class="hr-div"><hr></div>
<div class="projects-container">
<div class="projects-left">
<div class="project-card">
<h3>Online Course Completion Prediction</h3>
<p>Python, Flask, MLFlow, Prefect, Monitoring, Docker, Kubernetes, AWS</p>
<a href="https://github.com/Agnes4Him/online-course-completion-prediction" target="_blank">View</a>
</div>
</div>
<div class="projects-right">
</div>
</div>
<div class="devops-link">
<a href="cloud.html">Cloud Projects</a>
<a href="devops.html">DevOps Projects</a>
</div>
</div>
<footer>
<a href="https://www.linkedin.com/in/agnes-olorundare-446055b8/" target="_blank">LinkedIn</a>
<div>
<small>© 2024. All Rights Reserved</small>
</div>
</footer>
</body>
</html>