// Evaluate ANN before normalization to ensure it doesn"t affect
// accuracy
if settings["evaluateANN"] and not is_stop(queue):
echo("\n")
echo("Before weight normalization:\n")
snn.evaluate_ann(X_test, Y_test)
// For memory reasons, reduce number of samples to use during
After Change
// ____________________________ LOAD DATASET _____________________________ //
(X_train, Y_train, X_test, Y_test) = load_dataset(settings["dataset_path"])
// _____________________________ LOAD MODEL ______________________________ //
// Extract architecture and weights from input model.