I am working on some content to teach ANN's to gradeschool kids. I've run across a couple good articles, most of which model a simple XOR problem, using three layers (input, 1 hidden, output).
however, this article is a little different in that it simply goes straight from inputs to outputs, with no hidden layer in between. Most other articles seem to follow the three layer approach for hello world ANN models.
Does this technically qualify as an ANN for teaching purposes, or must we have at least three layers to be an ANN? (input, 1 hidden, output). I want to use this simpler model as the first ANN in the content I am producing, but...but only if it technically qualifies as a neural net.
Thanks!