-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource-ai.html
123 lines (123 loc) · 5.88 KB
/
resource-ai.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AI Resources - Marketing x Data</title>
<meta name="description" content="A collection of resources to learn about Artificial Intelligence.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<!-- Bootstrap CSS-->
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome CSS-->
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css">
<!-- Google fonts - Roboto-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,300,700,400italic">
<!-- owl carousel-->
<link rel="stylesheet" href="vendor/owl.carousel/assets/owl.carousel.css">
<link rel="stylesheet" href="vendor/owl.carousel/assets/owl.theme.default.css">
<!-- theme stylesheet-->
<link rel="stylesheet" href="css/style.default.css" id="theme-stylesheet">
<!-- Custom stylesheet - for your changes-->
<link rel="stylesheet" href="css/custom.css">
<!-- Favicon-->
<link rel="shortcut icon" href="img/favicon.png">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4WHWSM8PF1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4WHWSM8PF1');
</script>
</head>
<body>
<div id="all">
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-left">
<div id="sidebar" class="col-md-3 col-lg-2 sidebar-offcanvas"></div>
<!-- *** DETAIL ***-->
<div class="col-md-8 col-lg-9 content-column white-background">
<div class="small-navbar d-flex d-md-none">
<button type="button" data-toggle="offcanvas" class="btn btn-outline-primary">
<i class="fa fa-align-left mr-2"></i>Menu
</button>
<h1 class="small-navbar-heading">
<a href="index.html">Marketing x Data</a>
</h1>
</div>
<div class="row">
<div class="col-xl-10">
<div class="content-column-content">
<h1>AI Resources</h1>
<p>Explore these valuable resources to deepen your understanding of Artificial Intelligence.</p>
<h4 class="text-uppercase">Fundamentals of AI</h4>
<ul>
<li><a href="ai.html">Artificial Intelligence Video</a>
<p>This post explains the main concepts under AI with a 5-minute YouTube video. </p></li>
<li>
<a href="https://www.kaggle.com/learn/overview" target="_blank">Kaggle Learn</a>
<p>Hands-on tutorials and exercises to practice machine learning and data science skills.</p>
</li>
<li>
<a href="https://www.deeplearning.ai/short-courses/" target="_blank">DeepLearning.AI Short Courses</a>
<p>Short courses on various AI topics, including NLP, computer vision, and AI ethics.</p>
</li>
<!-- <li>
<a href="https://www.coursera.org/specializations/deep-learning" target="_blank">Deep Learning Specialization by Andrew Ng (Coursera)</a>
<p>An in-depth course covering the foundations of deep learning, neural networks, and machine learning techniques.</p>
</li>
<li>
<a href="https://www.coursera.org/learn/nlp-sequence-models" target="_blank">Sequence Models by Andrew Ng (Coursera)</a>
<p>Learn about RNNs, LSTMs, GRUs, and how to apply them to NLP tasks.</p>
</li> -->
</ul>
<h4 class="text-uppercase">AI Ethics and Policy</h4>
<ul>
<li>
<a href="https://ai.google/education/responsible-ai-practices" target="_blank">Google's Responsible AI Practices</a>
<p>Guidelines and best practices for developing ethical AI systems.</p>
</li>
<li>
<a href="https://www.partnershiponai.org/" target="_blank">Partnership on AI</a>
<p>An organization focused on ensuring that AI benefits society, providing resources and research on AI ethics.</p>
</li>
</ul>
<h4 class="text-uppercase">AI Research and Development</h4>
<ul>
<li>
<a href="https://paperswithcode.com/" target="_blank">Papers With Code</a>
<p>A free resource combining research papers with code implementations to accelerate AI research.</p>
</li>
<li>
<a href="https://openai.com/research/" target="_blank">OpenAI Research</a>
<p>Access cutting-edge research papers and articles from OpenAI.</p>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- *** END DETAIL ***-->
</div>
</div>
</div>
<!-- JavaScript files-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/popper.js/umd/popper.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="vendor/jquery.cookie/jquery.cookie.js"></script>
<script src="vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="vendor/masonry-layout/masonry.pkgd.min.js"></script>
<script src="js/front.js"></script>
<script src="js/custom.js"></script>
<script src="js/dynamic-sidebar.js"></script>
</body>
<footer>
<div class="footer col-lg-12">
<div class="copyright text-center">
<p class="margin-top">©2025 Marketing x Data</p>
</div>
</div>
</footer>
</html>