Crates.io | favannat |
lib.rs | favannat |
version | 0.6.4 |
source | src |
created_at | 2021-05-01 15:03:46.229512 |
updated_at | 2023-08-11 21:44:11.892046 |
description | Algorithms to evaluate the function encoded in ANN-like structures. |
homepage | https://github.com/SilvanCodes/favannat |
repository | https://github.com/SilvanCodes/favannat |
max_upload_size | |
id | 391918 |
size | 71,913 |
Crate is functional but still in early development.
This crates aims to provide some semantics and data structures that allow to turn a somewhat generic description of a neural net into some executable function.
Therefore it provides the "network" termes like "node" and "edge" and a roughly sketched interface to execute nets; namely the "Fabricator" trait and the "Evaluator" trait.
Further it provides one implementation of those traits.
Only DAGs (directed, acyclic graphs) can be evaluated, which is by design. It is planned to implement logic to unroll recurrent networks into DAGs.
Any thoughts on style and correctness/usefulness are very welcome. Different implementations of the "Fabricate/Evaluate" traits are appreciated.