Skip to content
This repository has been archived by the owner on Feb 28, 2018. It is now read-only.

Comments #20

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
24 changes: 11 additions & 13 deletions examples/mnist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,25 @@
<html>

<head>
<meta charset="UTF-8">
<title>p5 Neural Network Example</title>
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<script language="javascript" type="text/javascript" src="libraries/p5.dom.js"></script>
<script language="javascript" type="text/javascript" src="../../matrix.js"></script>
<script language="javascript" type="text/javascript" src="../../nn.js"></script>
<script language="javascript" type="text/javascript" src="sketch.js"></script>
<meta charset="UTF-8">
<title>p5 Neural Network Example</title>
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<script language="javascript" type="text/javascript" src="libraries/p5.dom.js"></script>
<script language="javascript" type="text/javascript" src="../../matrix.js"></script>
<script language="javascript" type="text/javascript" src="../../nn.js"></script>
<script language="javascript" type="text/javascript" src="sketch.js"></script>

</head>

<body>
<a href="https://github.com/shiffman/Neural-Network-p5">
<a href="https://github.com/shiffman/Neural-Network-p5">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67"
alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"></a>
<h1>Neural Network built with p5</h1>
<h1>Neural Network built with p5</h1>

<p>This is a demonstration of a neural network trained to recognize digits using
the <a href="http://yann.lecun.com/exdb/mnist/">MNIST</a> database. It's based
Tariq Rashid's book <a href="http://amzn.to/2o6WqFj" target="_blank">Make Your Own Neural Network</a>.</p>
<p>This is a demonstration of a neural network trained to recognize digits using the <a href="http://yann.lecun.com/exdb/mnist/">MNIST</a> database. It's based Tariq Rashid's book <a href="http://amzn.to/2o6WqFj" target="_blank">Make Your Own Neural Network</a>.</p>


</body>

</html>
</html>