146 lines
5.0 KiB
HTML
146 lines
5.0 KiB
HTML
<!--
|
|
Automatically generated HTML file from DocOnce source
|
|
(https://github.com/hplgit/doconce/)
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="generator" content="DocOnce: https://github.com/hplgit/doconce/" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Data Analysis and Machine Learning: Autoencoders">
|
|
|
|
<title>Data Analysis and Machine Learning: Autoencoders</title>
|
|
|
|
<!-- Bootstrap style: bootstrap -->
|
|
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- not necessary
|
|
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
|
|
-->
|
|
|
|
<style type="text/css">
|
|
|
|
/* Add scrollbar to dropdown menus in bootstrap navigation bar */
|
|
.dropdown-menu {
|
|
height: auto;
|
|
max-height: 400px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Adds an invisible element before each target to offset for the navigation
|
|
bar */
|
|
.anchor::before {
|
|
content:"";
|
|
display:block;
|
|
height:50px; /* fixed header height for style bootstrap */
|
|
margin:-50px 0 0; /* negative fixed header height */
|
|
}
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
<!-- tocinfo
|
|
{'highest level': 2,
|
|
'sections': [('Autoencoders: Overarching view', 2, None, '___sec0'),
|
|
('Simple examples of Autoencoders', 2, None, '___sec1')]}
|
|
end of tocinfo -->
|
|
|
|
<body>
|
|
|
|
|
|
<!-- Bootstrap navigation bar -->
|
|
<div class="navbar navbar-default navbar-fixed-top">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="Autoencoders-bs.html">Data Analysis and Machine Learning: Autoencoders</a>
|
|
</div>
|
|
|
|
<div class="navbar-collapse collapse navbar-responsive-collapse">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li class="dropdown">
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Contents <b class="caret"></b></a>
|
|
<ul class="dropdown-menu">
|
|
<!-- navigation toc: --> <li><a href="#___sec0" style="font-size: 80%;">Autoencoders: Overarching view</a></li>
|
|
<!-- navigation toc: --> <li><a href="._Autoencoders-bs002.html#___sec1" style="font-size: 80%;">Simple examples of Autoencoders</a></li>
|
|
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div> <!-- end of navigation bar -->
|
|
|
|
<div class="container">
|
|
|
|
<p> </p><p> </p><p> </p> <!-- add vertical space -->
|
|
|
|
<a name="part0001"></a>
|
|
<!-- !split -->
|
|
|
|
<h2 id="___sec0" class="anchor">Autoencoders: Overarching view </h2>
|
|
|
|
<p>
|
|
Autoencoders are artificial neural networks capable of learning
|
|
efficient representations of the input data (these representations are called codings) without
|
|
any supervision (i.e., the training set is unlabeled). These codings
|
|
typically have a much lower dimensionality than the input data, making
|
|
autoencoders useful for dimensionality reduction.
|
|
|
|
<p>
|
|
More importantly, autoencoders act as powerful feature detectors, and
|
|
they can be used for unsupervised pretraining of deep neural networks.
|
|
|
|
<p>
|
|
Lastly, they are capable of randomly generating new data that looks
|
|
very similar to the training data; this is called a generative
|
|
model. For example, you could train an autoencoder on pictures of
|
|
faces, and it would then be able to generate new faces. Surprisingly,
|
|
autoencoders work by simply learning to copy their inputs to their
|
|
outputs. This may sound like a trivial task, but we will see that
|
|
constraining the network in various ways can make it rather
|
|
difficult. For example, you can limit the size of the internal
|
|
representation, or you can add noise to the inputs and train the
|
|
network to recover the original inputs. These constraints prevent the
|
|
autoencoder from trivially copying the inputs directly to the outputs,
|
|
which forces it to learn efficient ways of representing the data. In
|
|
short, the codings are byproducts of the autoencoder’s attempt to
|
|
learn the identity function under some constraints.
|
|
|
|
<p>
|
|
<p>
|
|
<!-- navigation buttons at the bottom of the page -->
|
|
<ul class="pagination">
|
|
<li><a href="._Autoencoders-bs000.html">«</a></li>
|
|
<li><a href="._Autoencoders-bs000.html">1</a></li>
|
|
<li class="active"><a href="._Autoencoders-bs001.html">2</a></li>
|
|
<li><a href="._Autoencoders-bs002.html">3</a></li>
|
|
<li><a href="._Autoencoders-bs002.html">»</a></li>
|
|
</ul>
|
|
<!-- ------------------- end of main content --------------- -->
|
|
|
|
</div> <!-- end container -->
|
|
<!-- include javascript, jQuery *first* -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
|
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
|
|
|
|
<!-- Bootstrap footer
|
|
<footer>
|
|
<a href="http://..."><img width="250" align=right src="http://..."></a>
|
|
</footer>
|
|
-->
|
|
|
|
|
|
<center style="font-size:80%">
|
|
<!-- copyright only on the titlepage -->
|
|
</center>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|