summaryrefslogtreecommitdiff
path: root/javascript_network/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'javascript_network/index.html')
-rw-r--r--javascript_network/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/javascript_network/index.html b/javascript_network/index.html
new file mode 100644
index 0000000..20e2fb5
--- /dev/null
+++ b/javascript_network/index.html
@@ -0,0 +1,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>