I obtained the multi-class classification summary using Decision Tree classifier with the code below,
from sklearn.tree import DecisionTreeClassifier
classifier = DecisionTreeClassifier(random_state=17)
classifier.fit(train_x, train_Y)
pred_y = classifier.predict(test_x)
print(classification_report(test_Y,pred_y))
accuracy_score(test_Y,pred_y)
the output did not have any figure on time for testing or training the data set.
How can I get the testing time and training time of the model?