소스 검색

Merge branch 'feature-readme' of xing/BrainJS-examples into develop

Jason Xing 3 년 전
부모
커밋
75fada2787
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      Readme.md

+ 17 - 0
Readme.md

@@ -2,3 +2,20 @@
 
 
 
+[Brain.js](https://github.com/BrainJS/brain.js) support browser GPU to run Neural Network. Based on the example from its document, here are some example to show how to use it in local browser.
+
+## 1 - Neural Network 
+
+A basic example to solve XOR operation by neural network to show how simple can be to use brain.js for this function. 
+
+## 2 - RNN
+
+The same XOR operation with much complex configuration of RNN structure with additional configuration to show how to set the options and change network structure. 
+
+## 3 - LSTM
+
+Long-short time memory network is good solve linguistic problems. Here is use add operation to simulate them. The LSTM will guess the last half char by input to build the formula. 
+
+However, the result is not perfect. The error rate is still very high. 
+
+Additionaly, in this case, configuration is also complex. Small change of the setting will make result with huge different.