ai 0.1.10 ai: ^0.1.10 copied to clipboard
Library that help construct neural networks (AI) with Dart.
0.1.10 #
- Add
resources
directory withstructure.json
file (for example). - Fix typos in README.
0.1.9 #
- Small fixes in classes.
- Fix problems related to upgrade of
extended_math
package.
0.1.8+1 #
- Fix problems related to upgrade of
extended_math
package.
0.1.8 #
- Remove
InputNeuron
andNeuronBase
. - Change signature of
Layer
class. - Add 4 properties to
Structure
class. - Change
MLP
andAE
classes to set up with more properties. - Complement README.
0.1.7 #
- Add visualization (MSE) to network's training.
0.1.6 #
- Change
MLP.withLayers()
constructor toMLP()
. - Add
Layer.construct
constructor. - Add
AE
neural network. - Edit README.
- Change examples.
0.1.5 #
- Remove
NetworkBase
class. - Add
Structure
,MlpStructure
entities. - Rename
MultilayerPerceptron
toMLP
. - Add
MLP.fromStructure()
constructor and createMLP.withLayers()
constructor. - Fix
train()
method ofMLP
class. - Implroved README.
- Fix bug in example.
0.1.4 #
- Downgrade required Dart SDK to
2.1.0-dev.9.4
.
0.1.3 #
- Fix internal
createFile()
method for...Memory
class. - Change docs in
ShortMemory
class.
0.1.2 #
- Fix
expected
parameter oftrain()
method ofMultilayerPerceptron
to accept list of expected output.
0.1.1 #
- Add
MemoryBase
class. - Add description to package.
0.1.0 #
- Initial release.
- Implement
MultilayerPerseptron
class.