summaryrefslogtreecommitdiff
path: root/javascript_network/index.html
blob: 20e2fb5f953c75694db298e1d2963c186e076208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
  <head>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.js"></script>

    <script src="neuron.js"></script>
    <script src="layer.js"></script>
    <script src="network.js"></script>
    <script src="sketch.js"></script>
    <style> body {padding: 0; margin: 0;} </style>
  </head>
  <body>
    <form action="upload.php" method="post" enctype="multipart/form-data">
    Select file to upload:
    <input type="file" name="fileToUpload" id="fileToUpload">
    <input type="submit" value="Upload .nn config file" name="submit">
</form>

</body>
  </body>
</html>