Discussion of article "Neural Networks Made Easy" - page 9

 
Can anyone tell me why this code is used in the article?:
" if(!CheckPointer(neuron)!=POINTER_INVALID) "
I think there are unnecessary exclamation marks
It is probably easier to write it like this:
if(CheckPointer(neuron)==POINTER_INVALID)
return false;
 
It's very frustrating when you start reading an article with 50 or so parts and right away you get a compilation error.


Please, Professor, could you solve this problem?
Can anyone?
 

I have the same error, what should I do?

Auto-translation applied by moderator

 
@Rustam Ayupov #: I have the same error, what should I do?

Auto-translation applied by moderator

On the English forum, please write in English. Either use the automatic translation tool, or post in one of the other language forums.
 
Hello, thank you for the article. Can you explain what kind of input data should be entered into the NN? actually, how should it be done? 
 
Wilson Ferraz Rabelo Filho #:
It's very frustrating when you start reading an article with 50 or so parts and it immediately gives you a compilation error.


Please professor, could you solve this problem?
Can anyone solve it?

Remove the "const" from these statements and it will compile normally

 
Hello, Thx for so instructive article, has anyone been able to actually get this to work?
 
Do we need a variable for bias?