-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcertifications.html
More file actions
136 lines (115 loc) · 4.36 KB
/
Copy pathcertifications.html
File metadata and controls
136 lines (115 loc) · 4.36 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
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
---
layout: default
title: "Certifications"
permalink: /certifications/
---
<section id="certifications" style="padding: 60px 20px; background-color: #1f1f1f; color: #fff;">
<h1 style="text-align: center; color: #4CAF50;">🎓 AI & Data Science Certifications</h1>
<p style="text-align: center; max-width: 800px; margin: auto; font-size: 1.1em; color: #ccc;">
Explore industry-recognized certifications that boost your career in data science, AI, and machine learning.
</p>
<div class="cert-grid">
<!-- General Data Science -->
<div class="cert-card">
<h3>📊 Certified Analytics Professional (CAP)</h3>
<p>Validate your ability to turn data into valuable insights.</p>
<a href="https://www.informs.org/Certification" target="_blank">Learn More →</a>
</div>
<div class="cert-card">
<h3>📈 DASCA Certifications</h3>
<p>Includes SDS, PDS, and ABDE for data professionals.</p>
<a href="https://www.dasca.org/" target="_blank">Explore DASCA →</a>
</div>
<div class="cert-card">
<h3>🤖 IBM Data Science Certificate</h3>
<p>10-course program with real-world labs and projects.</p>
<a href="https://www.coursera.org/professional-certificates/ibm-data-science" target="_blank">View on Coursera →</a>
</div>
<!-- AI Certifications -->
<div class="cert-card">
<h3>📚 Stanford AI Graduate Certificate</h3>
<p>Learn AI theory, ML, and robotics from Stanford.</p>
<a href="https://scpd.stanford.edu/public/category/courseCategoryCertificateProfile.do?method=load&certificateId=12408407" target="_blank">Stanford SCPD →</a>
</div>
<div class="cert-card">
<h3>📘 MIT Applied Data Science</h3>
<p>Applied machine learning, analytics, and storytelling.</p>
<a href="https://professional.mit.edu/programs/short-programs/applied-data-science-program" target="_blank">MIT Program →</a>
</div>
<div class="cert-card">
<h3>🧠 NVIDIA Deep Learning Institute</h3>
<p>Certs in LLMs, diffusion models, MLOps, and more.</p>
<a href="https://www.nvidia.com/en-us/training/" target="_blank">Go to NVIDIA DLI →</a>
</div>
<!-- Platform-Specific -->
<div class="cert-card">
<h3>📊 Tableau Desktop Specialist</h3>
<p>Master dashboard building and data visualization.</p>
<a href="https://www.tableau.com/learn/certification/desktop-specialist" target="_blank">Tableau Cert →</a>
</div>
<div class="cert-card">
<h3>☁️ Azure AI Fundamentals</h3>
<p>Understand machine learning and cognitive services.</p>
<a href="https://learn.microsoft.com/en-us/certifications/azure-ai-fundamentals/" target="_blank">Microsoft Learn →</a>
</div>
<div class="cert-card">
<h3>🌐 Google Data Engineer</h3>
<p>Design and deploy scalable data pipelines on GCP.</p>
<a href="https://cloud.google.com/certification/data-engineer" target="_blank">Google Cloud Cert →</a>
</div>
<!-- Miscellaneous -->
<div class="cert-card">
<h3>📚 DataCamp AI Fundamentals</h3>
<p>Great for beginners learning AI with Python.</p>
<a href="https://www.datacamp.com/certification/ai-fundamentals" target="_blank">Start at DataCamp →</a>
</div>
<div class="cert-card">
<h3>🛠️ CertNexus AI Practitioner</h3>
<p>Focus on building & managing enterprise AI solutions.</p>
<a href="https://certnexus.com/certification/certified-artificial-intelligence-practitioner-caip/" target="_blank">CertNexus →</a>
</div>
</div>
</section>
<style>
.cert-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
margin-top: 40px;
max-width: 1100px;
margin-left: auto;
margin-right: auto;
}
.cert-card {
background-color: #2c2c2c;
padding: 20px;
border-radius: 10px;
text-align: left;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cert-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.cert-card h3 {
color: #00BFFF;
margin-top: 0;
font-size: 1.2rem;
}
.cert-card p {
font-size: 0.95rem;
color: #ccc;
}
.cert-card a {
display: inline-block;
margin-top: 10px;
color: #4CAF50;
font-weight: bold;
text-decoration: none;
}
.cert-card a:hover {
text-decoration: underline;
color: #76ff91;
}
</style>