-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Combine fireTS library with neupy library for NARX network based on Levenberg Marquardt #274
Comments
Thank you for reporting the issue. I looks like a bug, at least Levenberg-Marquardt algorithm doesn't work with mini-batches. |
as a temporary solution you can either try to run mdl1.fit(x, y, batch_size=None) or modify events attribute before you do the training from neupy.algorithms.base import Events
optimizer = algorithms.LevenbergMarquardt(network)
optimizer.events = Events(network=optimizer, signals=[]) |
Hi. |
I also write to fireTS library:
|
I'm quite surprised that the second option didn't work. Do you get the same exception as before? I mean even if the same function fails I wonder if it fails in exactly the same place or if it happens elsewhere |
This is the code:
And here the error:
|
Hi.
I want to create a NARX (Nonlinear Autoregressive with exogenous variables) model based on LM (Levenberg Marquardt) method.
Since this two method are not implemented in keras, I search for the library fireTs (for NARX) and neupy (for LM).
I'm using the sample code for both libraries:
fireTS (NARX): fireTS
neupy (LM): Neupy
and I combine them:
But I'm having this error in .fit method:
Any solution?
The text was updated successfully, but these errors were encountered: