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
In example1.c I changed output to:
const double output[4] = {3, 4, 5, 6};
Compiled and re-run example1 and I still see only 1 and 0 as a result.
The text was updated successfully, but these errors were encountered:
Sigmoid activation, used by default, can return only values from 0 to 1.
You could try something like
const double output[4] = {0.3, 0.4, 0.5, 0.6};
to bring the training data in range, or you could change the output activation to genann_act_linear which will allow it to hit those higher values.
genann_act_linear
Sorry, something went wrong.
No branches or pull requests
In example1.c I changed output to:
const double output[4] = {3, 4, 5, 6};
Compiled and re-run example1 and I still see only 1 and 0 as a result.
The text was updated successfully, but these errors were encountered: