Skip to content
Snippets Groups Projects
Commit 49686d5e authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Fixed error messages.

parent 92d451a6
No related branches found
No related tags found
No related merge requests found
......@@ -465,14 +465,14 @@ namespace lib4neuro {
THROW_INVALID_ARGUMENT_ERROR("Input and output neurons have not been specified!");
}
if (this->input_neuron_indices->size() != input.size()) {
THROW_INVALID_ARGUMENT_ERROR("Error: input size != Network input size");
THROW_INVALID_ARGUMENT_ERROR("Data input size != Network input size");
}
if (this->output_neuron_indices->size() != output.size()) {
THROW_INVALID_ARGUMENT_ERROR("Error: output size != Network output size");
THROW_INVALID_ARGUMENT_ERROR("Data output size != Network output size");
}
double potential, bias;
int bias_idx;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment