-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetworkLibrary.html
More file actions
120 lines (98 loc) · 4.91 KB
/
NetworkLibrary.html
File metadata and controls
120 lines (98 loc) · 4.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<script src="include.js"></script>
<title>Pamplemousse</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<script>
$(function(){
$("#includedContent").load("navigation.html");
});
$(function(){
$("#includedSN3Library").load("SN3-Library.html");
});
$(function(){
$("#includedSN2Library").load("SN2-Library.html");
});
$(function(){
$("#includedSN1Library").load("SN1-Library.html");
});
</script>
<div id="includedContent"></div>
<!-- Page Content -->
<div class="container">
<div class="row mt-5">
<div class="col-12 mb-5 mt-5">
<h2>Library of Pre-Trained Networks</h2>
<p>
The page contains a library of pre-trained networks (i.e. weights) that can be simply loaded as models in tensorflow.
To do this, please see the <b>Apply to Data Cube</b> example on the <a href="examples.html">examples page</a>.
Additionally, I will report the results of each pre-trained network.
</p>
<h3>
What were these networks trained on?
</h3>
<p>
For each set of data in the library, we created 30,000 synthetic SITELLE spectra using the formulation described
in the <b>Create Synthetic Data</b> example of varying resolutions. The velocity was uniformly sampled from
a distribution ranging from -500 km/s to 500 km/s. The broadening values were uniformly sampled from a distribution
ranging from 10 km/s to 200 km/s. Each section contains a pickle file containing the spectra used, the saved
CNN model, an image of the reference spectrum, and statistics on the accuracy of the method on the test set.
Click on the <i class="fas fa-download text-info"></i> icon to download the pre-trained CNN.
If you would like a pre-trained library with different specifications, please feel
free to contact us at <span class="text-info">carter.rhea@umontreal.ca</span>.
<br>
Here are the files I used to create these pre-trained networks:
<a href="Generate.py" download>Generate.py</a> &
<a href="Train.py" download>Train.py</a>
<div class="alert alert-info" role="alert">
Additional resolutions can be found in the table at the bottom of the page (coming soon).
</div>
</p>
</div>
</div>
<ul class="nav nav-tabs">
<li class="nav-item"><a data-toggle="tab" class="nav-link active" href="#sn3-library">SN3</a></li>
<li class="nav-item"><a data-toggle="tab" class="nav-link" href="#sn2-library">SN2</a></li>
<li class="nav-item"><a data-toggle="tab" class="nav-link" href="#sn1-library">SN1</a></li>
</ul>
<div class="tab-content">
<div id="sn3-library" class="tab-pane container active">
<p class="mt-2">We created pre-trained networks for the following resolutions: 2000, 2500, 3000,
3500, 4000, 4500, 5000, and 7000</p>
<div id="includedSN3Library"></div>
</div>
<div id="sn2-library" class="tab-pane container fade">
<p class="mt-2">We created pre-trained networks for the following resolutions: 600, 700, 800, 900,
1000, and 1800.</p>
<div id="includedSN2Library"></div>
</div>
<div id="sn1-library" class="tab-pane container fade">
<p class="mt-2">We created pre-trained networks for the following resolutions: 600, 700, 800, 900,
1000, and 1800.</p>
<div id="includedSN1Library"></div>
</div>
</div>
</div>
<!-- /.container -->
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white" lang='en'>Copyright © Pamplemousse</p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>