When using a simple neural network with scikit-learn, the main goal is to see how well the model predicts new data. For classification tasks, accuracy is often used because it shows the percentage of correct predictions. However, accuracy alone can be misleading if classes are imbalanced. Therefore, precision, recall, and F1 score are important to understand the model's behavior on each class.
For regression tasks, metrics like mean squared error (MSE) or R-squared are used to measure how close predictions are to actual values.