Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Releases: matiasvlevi/Dann

v2.1.7b

30 Dec 06:22
Compare
Choose a tag to compare

Fix about the Dann.log( ) details options.

Dann is now p5js free

29 Dec 20:53
Compare
Choose a tag to compare

Dannjs is now p5js free, it now relies on mathjs which is automatically included in the html file..

v2.1.6d

28 Dec 18:59
Compare
Choose a tag to compare

minor error handling fixes

Readme changes

27 Dec 21:54
Compare
Choose a tag to compare
v2.1.6c

Version Update

v2.1.6b

24 Dec 23:14
Compare
Choose a tag to compare

minor fixes

.log(); Update

24 Dec 22:47
Compare
Choose a tag to compare

Dann.log(); now has options.

-It uses an option object with specific settings as properties. (mostly boolean options).
-Documentation will be coming on the website.
-If the options argument is left empty, nothing changes, it is still good old Dann.log();

details

.log({ details:true });
this would log all details about the model

Log individual information.

.log({ gradients:true }); or .log({ weights:true , misc:true });
You can then specify one of the detailed elements individually.
Here is a temporary list of these settings.
-biases
-weights
-struct
-gradients
-errors
-misc

Specify Decimals

.log({ decimals:4 });
You can specify the number of decimals your logged data will be rounded to. This is especially useful when logging matrices, for clarity purposes. If this value is not specified, it will be set to 3 by default.

Table or Standard Log

.log({ table:true });
This is to specify if we want to print our matrices in the form of a table or simply by logging the Matrix object.

v2.1.5b

24 Dec 05:51
Compare
Choose a tag to compare

-Fixed bugs regarding the optional option argument for feedForward() and backpropagate() functions.
Documentation is coming.

v2.1.5

24 Dec 05:20
Compare
Choose a tag to compare
init

v2.1.4c

23 Dec 22:54
Compare
Choose a tag to compare

-Added more Error handling.

v2.1.4b

23 Dec 22:23
Compare
Choose a tag to compare
init