소스 검색

modifed for blog

Jason Xing 3 년 전
부모
커밋
e65b7b700f
6개의 변경된 파일47개의 추가작업 그리고 28개의 파일을 삭제
  1. 3 1
      brain-js.test-01.html
  2. 3 1
      brain-js.test-02-RNN.html
  3. 3 0
      brain-js.test-03-LSTM-math.html
  4. 3 0
      brain-js.test-04-classifier.html
  5. 35 26
      index.html
  6. 0 0
      simple.min.css

+ 3 - 1
brain-js.test-01.html

@@ -4,7 +4,8 @@
     <title>Brain JS Test</title>
     <meta charset="utf-8" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
+    <meta name="viewport"
+          content="width=device-width, initial-scale=1.0">
     <style>
       #network {
         background: #ccc;
@@ -13,6 +14,7 @@
         height: 480px;
       }
     </style>
+    <link rel="stylesheet" href="simple.min.css">
   </head>
 
   <body>

+ 3 - 1
brain-js.test-02-RNN.html

@@ -4,7 +4,8 @@
     <title>Brain JS Test</title>
     <meta charset="utf-8" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
+    <meta name="viewport"
+          content="width=device-width, initial-scale=1.0">
     <style>
       #network {
         background: #ccc;
@@ -13,6 +14,7 @@
         height: 480px;
       }
     </style>
+    <link rel="stylesheet" href="simple.min.css">
   </head>
 
   <body>

+ 3 - 0
brain-js.test-03-LSTM-math.html

@@ -6,6 +6,8 @@
     <meta charset="utf-8" />
     <meta http-equiv="Content-Type"
           content="text/html; charset=utf-8" />
+    <meta name="viewport"
+          content="width=device-width, initial-scale=1.0">
     <style>
         #network {
         background: #ccc;
@@ -14,6 +16,7 @@
         height: 480px;
       }
     </style>
+    <link rel="stylesheet" href="simple.min.css">
 </head>
 
 <body>

+ 3 - 0
brain-js.test-04-classifier.html

@@ -6,6 +6,8 @@
     <meta charset="utf-8" />
     <meta http-equiv="Content-Type"
           content="text/html; charset=utf-8" />
+    <meta name="viewport"
+          content="width=device-width, initial-scale=1.0">
     <style>
         #network {
         background: #ccc;
@@ -14,6 +16,7 @@
         height: 480px;
       }
     </style>
+    <link rel="stylesheet" href="simple.min.css">
 </head>
 
 <body>

+ 35 - 26
index.html

@@ -6,6 +6,8 @@
     <meta charset="utf-8" />
     <meta http-equiv="Content-Type"
           content="text/html; charset=utf-8" />
+    <meta name="viewport"
+          content="width=device-width, initial-scale=1.0">
     <style>
         .quotes{
           background:rgba(128, 128, 128, 0.3);
@@ -16,35 +18,42 @@
           padding-bottom: 0.1em;
         }
     </style>
+    <link rel="stylesheet"
+          href="simple.min.css">
 </head>
 
 <body>
-    <h1>Brain JS Test</h1>
-    <p>
-        The JavaScript libray <span class="quotes">brain.js</span> is a machine learning program in Javascript.
-    </p>
-    <p>With the power of <span class="quotes">brain.js</span>,
-        we create the following examples to test the models in the browser.</p>
-
-    <h2>Neural Network</h2>
-    <p>
-      The <span class="quotes">Neural Network</span> is very simple in this libray.
-      We tested with two examples:
-      <ul>
-        <li><a href="brain-js.test-01.html">Basic example</a></li>
-        <li><a href="brain-js.test-04-classifier.html">Classify data</a></li>
-      </ul>
-    </p>
-
-    <h2>Recurrent Network</h2>
-    <p>
-      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.
-
-      <ul>
-        <li><a href="brain-js.test-02-RNN.html">RNN</a></li>
-        <li><a href="brain-js.test-03-LSTM-math.html">LSTM</a></li>
-      </ul>
-    </p>
+    <header>
+        <h1>Brain JS Test</h1>
+        <p>
+            JavaScript libray <span class="quotes">brain.js</span> for machine learning in browser.
+        </p>
+    </header>
+    <main>
+        <p>With the power of <span class="quotes">brain.js</span>,
+            we create the following examples to test the models in the browser.</p>
+        <h2>Neural Network</h2>
+        <p>
+            The <span class="quotes">Neural Network</span> is very simple in this libray.
+            We tested with two examples:
+            <ul>
+                <li><a href="brain-js.test-01.html">Basic example</a></li>
+                <li><a href="brain-js.test-04-classifier.html">Classify data</a></li>
+            </ul>
+        </p>
+        <h2>Recurrent Network</h2>
+        <p>
+            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.
+            <ul>
+                <li><a href="brain-js.test-02-RNN.html">RNN</a></li>
+                <li><a href="brain-js.test-03-LSTM-math.html">LSTM</a></li>
+            </ul>
+        </p>
+    </main>
+    <footer>
+        <p>Jason Xing &copy; 2023</p>
+        <p>Powered by <a href="https://brain.js.org">brain.js</a></p>
+    </footer>
 </body>
 <script type="text/javascript">
 </script>

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
simple.min.css


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.