We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi. There is a critical bug in the function checkRobust in the NN.m file. Line 372 is currently
R = outputSet(s).toStar;
But it should be
R(s) = outputSet(s).toStar;
because the former is ignoring all but the last output set in the case there are multiple output sets.
The text was updated successfully, but these errors were encountered:
Thanks for catching that, it has been fixed in #232
Sorry, something went wrong.
No branches or pull requests
Hi. There is a critical bug in the function checkRobust in the NN.m file. Line 372 is currently
R = outputSet(s).toStar;
But it should be
R(s) = outputSet(s).toStar;
because the former is ignoring all but the last output set in the case there are multiple output sets.
The text was updated successfully, but these errors were encountered: