All Versions
71
Latest Version
Avg Release Cycle
1 days
Latest Release
-

Changelog History
Page 2

  • v2.2.6.e Changes

    ๐Ÿš€ See release

    ๐Ÿ”„ Changes

    • โž• added example testing grunt task
    • ๐Ÿ›  minor fixes
  • v2.2.6.d Changes

    ๐Ÿš€ See release

    โœ‚ Removed dependencies

  • v2.2.6.b Changes

    ๐Ÿš€ See release

    ๐Ÿ›  Fix

    • ๐Ÿ›  fixed @fast-csv dependency problem.
  • v2.2.5.b Changes

    ๐Ÿš€ See release

    • ๐Ÿ›  fixes Matrix.log
  • v2.2.4 Changes

    ๐Ÿš€ See release

    ๐Ÿ”„ Changes:

    • โž• Added static function for dann Dann.createFromModel(data) which takes a dannData object generated by yourmodel.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 */
    }