All Versions
71
Latest Version
Avg Release Cycle
1 days
Latest Release
-
Changelog History
Page 2
Changelog History
Page 2
-
v2.2.6.d Changes
๐ See release
โ Removed dependencies
-
v2.2.5.b Changes
๐ See release
- ๐ fixes
Matrix.log
- ๐ fixes
-
v2.2.4 Changes
๐ See release
๐ Changes:
- โ Added static function for dann
Dann.createFromModel(data)
which takes a dannData object generated byyourmodel.dataObject();
and creates a Dann model from it. ex: ```js const nn = new Dann(4,4); nn.addHiddenLayer(16,'sigmoid'); nn.makeWeights();
const modeldata = nn.dataObject();
const newNN = Dann.createFromObject(modeldata); newNN.log();
<br/> * ๐ป You can now select an Id of an html element when using `yourmodel.load()` when working in the browser. If the id is not specified, the input element is going to be placed in `<body>` Html: ```html <body> <div id="div1"></div> </body>
Javascript:
let nn = new Dann(); nn.load('nn','div1',function(err) { if (err) { console.log('Failed to load the model.'); } else { console.log('Succesfully loaded the model.'); } nn.log(); });
To add styling to the
<input>
element you can reference it like so:#div1 { /* <input> element styling here */ }
- โ Added static function for dann