-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·136 lines (111 loc) · 7.89 KB
/
index.html
File metadata and controls
executable file
·136 lines (111 loc) · 7.89 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Deep Learning Tutorial using Keras">
<meta name="author" content="Lindsey M Kitchell">
<title>Intro to Deep Learning</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/simple-sidebar.css" rel="stylesheet">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700&display=swap" rel="stylesheet">
</head>
<body>
<div class="d-flex" id="wrapper">
<!-- Sidebar -->
<div class="bg-light border-right" id="sidebar-wrapper">
<div class="sidebar-heading">Deep Learning With Keras</div>
<div class="list-group list-group-flush">
<a href="1introtodeeplearning.html" class="list-group-item list-group-item-action bg-light">1. Intro to Deep Learning</a>
<a href="2introtokeras.html" class="list-group-item list-group-item-action bg-light">2. Intro to Keras</a>
<a href="3mlpsinkeras.html" class="list-group-item list-group-item-action bg-light">3. MLPs in Keras</a>
<a href="4cnnsinkeras.html" class="list-group-item list-group-item-action bg-light">4. CNNs in Keras</a>
<a href="5activationfunctions.html" class="list-group-item list-group-item-action bg-light">5. Activation Functions</a>
<a href="6otherkerasfunctions.html" class="list-group-item list-group-item-action bg-light">6. Other Useful Keras Functions</a>
<a href="7lossfunctionsoptimizers.html" class="list-group-item list-group-item-action bg-light">7. Loss Functions and Optimizers</a>
<a href="8evaluatingnns.html" class="list-group-item list-group-item-action bg-light">8. Evaluating Neural Networks</a>
<a href="9datapreprocessing.html" class="list-group-item list-group-item-action bg-light">9. Data Preprocessing</a>
<a href="10regularization.html" class="list-group-item list-group-item-action bg-light">10. Regularization</a>
<a href="11hyperparametertuning.html" class="list-group-item list-group-item-action bg-light">11. Hyperparameter Tuning</a>
</div>
</div>
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper">
<nav class="navbar navbar-expand-lg navbar-light bg-light border-bottom">
<button class="btn btn-primary" id="menu-toggle">Toggle Menu</button>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto mt-2 mt-lg-0">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://lindseykitchell.weebly.com/">About the Author</a>
</li>
<!--
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
-->
</ul>
</div>
</nav>
<div class="container-fluid">
<h1>Introduction to Deep Learning with Keras</h1>
<hr>
<p>This tutorial focuses on a basic introduction to deep learning and how to get started using the python library Keras.
Some experience with python and machine learning is assumed. Experience using the python library
sci-kit-learn will also be very helpful. </p>
<p>It is recommended that you follow the tutorial in order. To begin, click on the first menu item on the left
<a href=1introtodeeplearning.html>1. Intro to Deep Learning</a></p>
<p>The content of this tutorial was created by <a href="https://lindseykitchell.weebly.com/">Lindsey Kitchell</a>
in the summer of 2018 as part of her qualifying exams for her Ph.D. in the department of <a href="https://psych.indiana.edu/">Psychological and
Brain Sciences</a> and the <a href="http://www.cogs.indiana.edu/">Program of Cognitive Science</a> at Indiana University. </p>
<h3 id="sources-and-useful-resources">Sources and Useful Resources</h1>
<p>For learning about machine learning in general, I recommend this <a href="https://www.udacity.com/course/intro-to-machine-learning--ud120">free introductory course from udacity</a>. It will get you up and running with machine learning in python very quickly. </p>
<p>I also recommend this book by the creator of Keras (the python library used in this tutorial): <a href="https://www.manning.com/books/deep-learning-with-python">Deep Learning with Python</a>. It has a lot of detailed information about deep learning in general and how to implement it with Keras. </p>
<p>The following links were very helpful in the creation of this tutorial:</p>
<ul>
<li><a href="https://www.youtube.com/watch?v=FrkYu2zVUyM">https://www.youtube.com/watch?v=FrkYu2zVUyM</a></li>
<li><a href="https://github.com/leriomaggio/deep-learning-keras-tensorflow/tree/pydata-london2017">https://github.com/leriomaggio/deep-learning-keras-tensorflow/tree/pydata-london2017</a></li>
<li><a href="https://machinelearningmastery.com/tutorial-first-neural-network-python-keras/">https://machinelearningmastery.com/tutorial-first-neural-network-python-keras/</a></li>
<li><a href="https://elitedatascience.com/keras-tutorial-deep-learning-in-python#step-7">https://elitedatascience.com/keras-tutorial-deep-learning-in-python#step-7</a></li>
<li><a href="https://github.com/keras-team/keras/tree/master/examples">https://github.com/keras-team/keras/tree/master/examples</a></li>
<li><a href="https://github.com/leriomaggio/deep-learning-keras-tensorflow/blob/euroscipy2017/1%20Multi-layer%20Fully%20Connected%20Networks.ipynb">https://github.com/leriomaggio/deep-learning-keras-tensorflow/blob/euroscipy2017/1%20Multi-layer%20Fully%20Connected%20Networks.ipynb</a></li>
<li><a href="http://neuralnetworksanddeeplearning.com/chap1.html">http://neuralnetworksanddeeplearning.com/chap1.html</a></li>
<li><a href="https://www.youtube.com/channel/UC9OeZkIwhzfv-_Cb7fCikLQ">https://www.youtube.com/channel/UC9OeZkIwhzfv-_Cb7fCikLQ</a></li>
<li><a href="https://machinelearningmastery.com/applied-deep-learning-in-python-mini-course/">https://machinelearningmastery.com/applied-deep-learning-in-python-mini-course/</a></li>
<li><a href="https://github.com/fchollet/keras-resources">https://github.com/fchollet/keras-resources</a></li>
</ul>
<p>This tutorial was originally created as a <a href="https://github.com/kitchell/DeepLearningTutorial_LBspectrum">github repository</a>.</p>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
</script>
</body>
</html>