It seems like you are training on an "outside" concept. If I told you when you were out of a box, how does that help you get back in the box?
It is possible to write the x and y cases seperately as your problem space has two bounds. Ignore Y for now and repeat X to handle that later. Deal with the one dimensional case of a point on a line.
The one dimensional problem is still pretty difficult as there are two directions to be out of bounds.
Lets imagine we had a black box. You pass the black box your X coordinate, and it tells you which direction to aim in:
float input (X) > float direction (-1 left to 1 right). Calling it a float just means we have a continuous numberline.
So now you can generate lots of test cases for your robot (input > output):
10 > 1
699 > -1
4000 > -1
Train your Neural net brain on those situations, and it should figure out whether to go left or right given the input. Or rather, it should have an idea of what output is expected given a particular input. Make sure your network is multilayer (1,2,1) or (1,4,1) maybe.
That is likely to lead to a system which is really boring and homes in on the center of the screen, staying there or wobbling about that central point. To make it more interesting, you could make the neural net output a random chance of pointing towards the center of the screen at any point in time. So maybe we should only check the gps at random, or maybe when we check it, it has a certain chance of being wrong, so 69% of the time it will point in the correct direction. You can do that by treating the sign as the direction and the absolute value as the chance.
In ye olden days, I made a virtual robot which had three input sensors for distance lasers and from that decided the outputs of the motors and explored a maze.. Then I trained its behaviour further in different mazes. Think about what behavior (outputs) you want from your stimulus (inputs), or give a network inputs and see what it can do!
In moths, there is a sensory response to the air from the beat of a bat's wing that goes to the output of flying off course.. All of this is hardwired and runs outside the brain. Suddenly a very confused moth isnt dinner anymore..
