synadart 0.3.2 copy "synadart: ^0.3.2" to clipboard
synadart: ^0.3.2 copied to clipboard

outdated

Library for creating neural networks, with a purely Dart implementation.

synadart #

The synadart library can be used to create neural networks of any complexity, as well as learn from the source code by studying its extremely clean implementation.

Let's launch our first network #

To begin using the synadart, you must first import it like so:

import 'package:synadart/synadart.dart';

Next, we must create a network of our chosen type. Let's create an MLP ( Multi-layer Perceptron ).

final mlp = MultilayerPerceptron(layerSizes: [15, 5, 1], activationAlgorithm: ActivationAlgorithm.logistic, learningRate: 0.2);
15
likes
0
points
56
downloads

Publisher

verified publishervxern.dev

Weekly Downloads

Library for creating neural networks, with a purely Dart implementation.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

ansicolor

More

Packages that depend on synadart