index.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Brain JS Test</title>
  5. <meta charset="utf-8" />
  6. <meta http-equiv="Content-Type"
  7. content="text/html; charset=utf-8" />
  8. <style>
  9. .quotes{
  10. background:rgba(128, 128, 128, 0.3);
  11. border-radius: 3px;
  12. padding-left: 0.3em;
  13. padding-right: 0.3em;
  14. padding-top: 0.1em;
  15. padding-bottom: 0.1em;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <h1>Brain JS Test</h1>
  21. <p>
  22. The JavaScript libray <span class="quotes">brain.js</span> is a machine learning program in Javascript.
  23. </p>
  24. <p>With the power of <span class="quotes">brain.js</span>,
  25. we create the following examples to test the models in the browser.</p>
  26. <h2>Neural Network</h2>
  27. <p>
  28. The <span class="quotes">Neural Network</span> is very simple in this libray.
  29. We tested with two examples:
  30. <ul>
  31. <li><a href="brain-js.test-01.html">Basic example</a></li>
  32. <li><a href="brain-js.test-04-classifier.html">Classify data</a></li>
  33. </ul>
  34. </p>
  35. <h2>Recurrent Network</h2>
  36. <p>
  37. The brain.js support <span class="quotes">RNN</span>, <span class="quotes">LSTM</span> and <span class="quotes">GRU</span>. We noticed that the data format of these models are different to Neural netowrk. In recurrent network, the data must be array.
  38. <ul>
  39. <li><a href="brain-js.test-02-RNN.html">RNN</a></li>
  40. <li><a href="brain-js.test-03-LSTM-math.html">LSTM</a></li>
  41. </ul>
  42. </p>
  43. </body>
  44. <script type="text/javascript">
  45. </script>
  46. </html>