-
Notifications
You must be signed in to change notification settings - Fork 2
/
course.html
139 lines (130 loc) · 5.49 KB
/
course.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap Imports -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/aos@2.3.4/dist/aos.css" />
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./infostyle.css" />
<link rel="stylesheet" href="panelstyle.css" />
<link rel="stylesheet" href="./course.css" />
<link rel="icon" href="./logos/eq.ico" type="image/x-icon" />
<script src="svg-inject.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<meta property="og:site_name" content="equadratures" />
<meta property="og:type" content="website" />
<link rel="image_src" href="logos/figure.png" />
<meta property="og:image" content="logos/figure.png" />
<meta property="og:image:url" content="logos/figure.png" />
<meta property="og:image:secure_url" content="logos/figure.png" />
<meta property="twitter:image" content="logos/figure.png" />
<meta property="og:url" content="https://equadratures.org/" />
<meta
property="og:title"
content="Learn continuous structure | equadratures"
/>
<meta
property="og:description"
content="equadratures is a model development platform. The models built in equadratures are explainable, robust, and do not require large cloud infrastructure to train. Additionally, equadratures’ models can audit themselves as well as audit models built from other platforms — ushering a new era in artificial intelligence."
/>
<meta property="og:image" content="./icons/logo_new.png" />
<meta property="og:image:url" content="./icons/logo_new.png" />
<meta property="og:image:secure_url" content="./icons/logo_new.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:description"
content="equadratures is an open-source python framework for fitting models to data. It may be used for polynomial regression, sparse polynomial approximation, subspace-based dimension reduction, polynomial chaos, and more recently for kernel-based learning. Underneath the hood it leverages numerical quadrature and orthogonal polynomials."
/>
<meta name="twitter:site" content="@equadratures" />
<meta
name="twitter:title"
content="Learn continuous structure | equadratures"
/>
<meta name="twitter:creator" content="@equadratures" />
<meta name="twitter:url" content="https://twitter.com/equadratures" />
<title>About us | equadratures</title>
<meta
name="description"
content="equadratures is an open-source python framework for fitting models to data. It may be used for polynomial regression, sparse polynomial approximation, subspace-based dimension reduction, polynomial chaos, and more recently for kernel-based learning. Underneath the hood it leverages numerical quadrature and orthogonal polynomials."
/>
<meta
name="keywords"
content="data science, machine learning, polynomial chaos, uncertainty quantification, model auditing, Pranay Seshadri"
/>
</head>
<body class="body light-mode">
<div id="header"></div>
<main data-aos="fade-up">
<div class="d-flex justify-content-center p-4">
<h1>Course</h1>
</div>
<div
class="col d-flex flex-column justify-content-center align-items-center"
>
<h2 class="row text-center text-wrap px-4">
A gentle introduction to equadratures.
</h2>
<div
class="d-flex flex-column align-items-center px-5 py-2"
style="width: 100%; height: 100%"
>
<div class="speakerdeck-container">
<iframe
width="100%"
height="100%"
frameborder="0"
src="https://speakerdeck.com/player/0732309ef01d4fe0a44e2dd083129b52"
title="A Short Course"
allowfullscreen="true"
mozallowfullscreen="true"
webkitallowfullscreen="true"
style="position: absolute; top: 0; left: 0"
>
</iframe>
</div>
</div>
<div
class="d-flex flex-column align-items-center px-5 pt-2 pb-5"
style="width: 100%; height: 100%"
>
<div class="speakerdeck-container">
<iframe
width="100%"
height="100%"
frameborder="0"
src="https://speakerdeck.com/player/39b3cbf85dfc4274b0fdf2fdd23dbdc5"
title="Dimension Reduction"
allowfullscreen="true"
mozallowfullscreen="true"
webkitallowfullscreen="true"
style="position: absolute; top: 0; left: 0"
>
</iframe>
</div>
</div>
</div>
<div id="footer"></div>
</main>
<!-- partial -->
<script src="https://unpkg.com/aos@2.3.4/dist/aos.js"></script>
<script src="./script.js"></script>
<script>
loadHeader();
loadFooter();
</script>
</body>
</html>