-
Notifications
You must be signed in to change notification settings - Fork 7
/
template.html
37 lines (34 loc) · 1.92 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>MIDeL: </title>
<meta charset="utf-8">
<meta name="theme-color" content="#68ACC6">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="./assets/css/main.css" rel="stylesheet">
<link href="./assets/css/index.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/js/custom/main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QD6MB5R106"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QD6MB5R106');
</script>
</head>
<body>
<div id="top_menu"></div>
<div class="container">
<div class="row justify-content-center">
<div class="col col-12 col-md-9 fs-5 text-center mb-5">
We specifically focus on the MONAI framework, as it provides many nice functions that work well with medical images. This means that you will need to use Python and the PyTorch framework. If that sounds intimidating don't worry – the first few chapters provide background on programming, as well as the math and medical image fundamentals that some of you may lack. If you know this already great – feel free to skip forward to the chapters where you encounter material that you are not familiar with...
</div>
</div>
</div>
<footer class="col-12 text-center bg-light text-muted mt-5"></footer>
</body>
</html>