Hi, @maryam_nourmand !
NN's are dependent more on the size of the training data set - particularly when it's small. They also generally have a random number generator built into them as part of the training process. I'd suggest three things:
First - set the random seed (that will make your NN reproducible on the same data set). The seed can be any number you choose - just put something in that field in the dialog.
Second - make sure you're setting up your validation strategy correctly for your data set. There are lots of discussions around how to do this on the community.
Third - ensure that you're using a large enough data set. I've seen a lot of suggestions around this, but one I like is 10-20 measurements for every factor the NN is considering in both the training and validation sets. So, if you have 10 factors - that would be between 200 and 400 measurements.
Hope that helps!
Best,
M