-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
315 lines (267 loc) · 13.3 KB
/
index.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<!doctype html><html lang="en">
<head>
<style media="screen">
body {
padding-top: 70px;
padding-bottom: 70px;
}
h1,
h2,
h3 {
display: inline-block;
/* Ensures that the heading and the span are on the same line */
margin: 0;
/* Optional: Reset margin for better control */
position: relative;
/* Ensures that the span can be positioned relative to the heading */
}
.copy-span {
cursor: pointer;
/* Changes the cursor to a pointer when hovering over the # */
color: #81C240;
/* Sets the color of the # */
margin-left: 5px;
/* Adds some space between the heading text and the # */
font-size: 0.9em;
/* Adjusts the font size of the # to be slightly smaller relative to the heading */
visibility: hidden;
/* Initially hides the # */
}
h1:hover .copy-span,
h2:hover .copy-span,
h3:hover .copy-span,
.copy-span:hover {
visibility: visible;
text-decoration: none;
color: #81C240;
/* Makes the # visible when hovering over the heading or the span */
}
</style>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="static/css/custom_style.css?h=00853bf3">
<link rel="stylesheet" href="static/css/table_style.css?h=c677f945">
<!-- Highlight.js for syntax highlighting -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/default.min.css">
<!-- Extra meta tags: social site cards, browser icons... -->
<meta name="theme-color" content="#ffffff">
<link rel="shortcut icon" href="static/favicon.ico?h=d935d59e">
<link rel="apple-touch-icon" sizes="180x180" href="static/apple-touch-icon.png?h=2bad941d">
<link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png?h=1673bb68">
<link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png?h=089e66cb">
<title>PyMC Labs</title>
<meta name="twitter:card" content="summary">
<meta property="og:url" content="https://pymc-labs.github.io/" />
<meta property="og:type" content="website" />
<link rel="canonical" href="">
<meta property="og:title" content="PyMC Labs" />
<meta property="og:description" content="Bespoke Bayesian Modeling" />
<meta property="og:image"
content="static/images/pymc-labs-icon.png?h=77fcc5df" />
<meta name="description"
content="We are a Bayesian consulting firm specializing in data analysis and predictive modeling. Contact us today to learn how we can help your business.">
<meta name="keywords" content="Bayesian consulting, data analysis, predictive modeling">
<!-- Highlight.js for syntax highlighting -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.0/styles/default.min.css"> -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.0/highlight.min.js"></script> -->
<!-- <script>hljs.highlightAll();</script> -->
<!-- From: https://github.com/lektor/lektor-markdown-highlighter -->
<!-- We use this to do syntax highlighting -->
<link rel="stylesheet" href="static/pygments.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-F3RDLH8R8X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-F3RDLH8R8X');
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
// Base URL of the page (removing any existing fragment part)
const baseURL = window.location.href.split('#')[0];
// Select all h3 elements within elements of class 'blogpost'
const h3Elements = document.querySelectorAll('h3, h2, h1');
h3Elements.forEach((element) => {
const copyAnchor = document.createElement('a');
copyAnchor.textContent = `#`;
copyAnchor.classList.add('copy-span'); // Add a class for styling
copyAnchor.setAttribute('href', baseURL+`#${element.id}`); // Set href attribute to a placeholder
copyAnchor.setAttribute('title', 'Copy URL to clipboard'); // Tooltip text
// Insert the anchor after the <h1>, <h2>, or <h3> element
element.appendChild(copyAnchor);
});
});
</script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container">
<!-- <a class="navbar-brand" href="/">PyMC Labs</a> -->
<a class="navbar-brand" href="/"><img alt="logo" loading="eager" width="88" height="70" title="logo"
class="navbar-logo" src="static/images/pymc-labs-logo.png?h=999c3177'"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTop"
aria-controls="navbarTop" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTop">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="/what-we-do"><i class="fa fa-info-circle"
aria-hidden="true"></i>
What we do</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/products"><i class="fa fa-shopping-cart"
aria-hidden="true"></i>
Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/team"><i class="fa fa-user-friends"
aria-hidden="true"></i>
Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/clients"><i class="fa fa-microphone"
aria-hidden="true"></i>
Clients</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/workshops"><i class="fa fa-chalkboard-teacher"
aria-hidden="true"></i>
Workshops</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/blog-posts"><i class="fa fa-book-open"
aria-hidden="true"></i>
Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="py-5 mb-5">
<div class="jumbotron bg-light container-fluid">
<div class="row">
<div class="col-xl">
<img alt="logo.." loading="eager" width="50" height="50" title="logo" class="hero-image center" src="static/images/pymc_labs_home.jpeg?h=474cf061"></img>
<!--<br>-->
<!--<p class="text-center"><i>The Bayesian Consultancy</i></p>-->
</div>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Our Value</h2>
<hr>
<p>Our team works with problems where the traditional machine learning fit-predict paradigm fails.</p>
<li>We leverage Bayesian methods to answer data-driven questions. </li>
<li>We help you use your data to its fullest potential for an outsized impact on your bottom line.</li>
<li>We bring certainty about your uncertainty.</li>
</div>
<div class="col-md-8 mb-5">
<!-- See custom_styles.css for documentation URL -->
<div class="responsive-iframe-container">
<iframe class="responsive-iframe" src="https://www.youtube.com/embed/_CVEygFxFRA" title="YouTube video player" frameborder="0" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen></iframe>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>Our Mission</h2>
<hr>
<p><p>Bring Bayesian methods into wide practice.</p>
</p>
</div>
<div class="col-md-4 mb-5">
<h2>Contact Us</h2>
<hr>
<div>
<strong>Thomas Wiecki</strong>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/8cc267a9ab.js" crossorigin="anonymous"></script>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-bottom">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarBottom"
aria-controls="navbarBottom" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarBottom">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="https://twitter.com/pymc_labs"><i class="fa fa-twitter"
aria-hidden="true"></i>
Twitter</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/pymc-labs"><i class="fa fa-github"
aria-hidden="true"></i>
GitHub</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/company/pymc-labs/"><i class="fa fa-linkedin"
aria-hidden="true"></i>
LinkedIn</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.youtube.com/c/PyMCLabs"><i class="fa fa-youtube"
aria-hidden="true"></i>
YouTube</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.meetup.com/pymc-labs-online-meetup/"><i class="fa fa-meetup"
aria-hidden="true"></i>
Meetup</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/newsletter"><i class="fa fa-solid fa-bell"
aria-hidden="true"></i>
Newsletter</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/privacy-policy"><i class="fa fa-solid fa-lock"
aria-hidden="true"></i>
Privacy Policy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/impressum"><i class="fa fa-solid fa-info-circle"
aria-hidden="true"></i>
Impressum</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Mathjax for latex/equations -->
<!-- Mathjax -->
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML">
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$']]}});
</script>
</body>
</html>