https://github.com/briancairl/narx_net
A NARX Network library for C/C++ which utilizes FANN
https://github.com/briancairl/narx_net
Last synced: 2 months ago
JSON representation
A NARX Network library for C/C++ which utilizes FANN
- Host: GitHub
- URL: https://github.com/briancairl/narx_net
- Owner: briancairl
- Created: 2015-02-16T23:43:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-06T06:42:33.000Z (about 9 years ago)
- Last Synced: 2025-02-13T04:31:11.151Z (4 months ago)
- Language: HTML
- Size: 378 KB
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NARX_Net
A NARX Network library for C/C++ which utilizes FANN# Description
This library is a C/C++ implementation of the recurrent NARX neural
network for time series predicition and nonlinear system characterization. The network is trained via an intcremental BPTT rotuine with configuratbale learning rate adaptions, making it suitable for use with on-line learning tasks. The implementation utilizes the "FANN" C-libraries for the network's base feed-forward components, which have been included in this repoNetworks can be configured for use in both parallel and series-parallel mode, which can be switched on the fly.
# Todo
- More comments on usage to come
- More general organization things