index.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <meta name="viewport"
  9. content="width=device-width, initial-scale=1.0">
  10. <style>
  11. .quotes{
  12. background:rgba(128, 128, 128, 0.3);
  13. border-radius: 3px;
  14. padding-left: 0.3em;
  15. padding-right: 0.3em;
  16. padding-top: 0.1em;
  17. padding-bottom: 0.1em;
  18. }
  19. </style>
  20. <link rel="stylesheet"
  21. href="simple.min.css">
  22. </head>
  23. <body>
  24. <header>
  25. <h1>Brain JS Test</h1>
  26. <p>
  27. JavaScript libray <span class="quotes">brain.js</span> for machine learning in browser.
  28. </p>
  29. </header>
  30. <main>
  31. <p>With the power of <span class="quotes">brain.js</span>,
  32. we create the following examples to test the models in the browser.</p>
  33. <h2>Neural Network</h2>
  34. <p>
  35. The <span class="quotes">Neural Network</span> is very simple in this libray.
  36. We tested with two examples:
  37. <ul>
  38. <li><a href="brain-js.test-01.html">Basic example</a></li>
  39. <li><a href="brain-js.test-04-classifier.html">Classify data</a></li>
  40. </ul>
  41. </p>
  42. <h2>Recurrent Network</h2>
  43. <p>
  44. 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.
  45. <ul>
  46. <li><a href="brain-js.test-02-RNN.html">RNN</a></li>
  47. <li><a href="brain-js.test-03-LSTM-math.html">LSTM</a></li>
  48. </ul>
  49. </p>
  50. </main>
  51. <footer>
  52. <p>Jason Xing &copy; 2023</p>
  53. <p>Powered by <a href="https://brain.js.org">brain.js</a></p>
  54. </footer>
  55. </body>
  56. <script type="text/javascript">
  57. </script>
  58. </html>