Which statement should I use to replace (???,???) in the cod…

Which statement should I use to replace (???,???) in the code below to evaluate the performance of the model?# trainingNBmodel.fit(training_x, training_c)y_pred_NB = NBmodel.predict(testing_x)# evaluationacc_NB = accuracy_score(???, ???)print(“Naive Bayes model Accuracy:: {:.2f}%”.format(acc_NB*100))