@giacbrd @tmylk While running this document classification script, the performance graph generated shows training time to be lesser than test time.
But if we look closely, the training time is actually longer than test time for all the classifier. Here is the log
I think this is not the right way to convert the result into a range of (0,1) on the same axis
training_time = np.array(training_time) / np.max(training_time)
test_time = np.array(test_time) / np.max(test_time)
@giacbrd @tmylk While running this document classification script, the performance graph generated shows training time to be lesser than test time.
But if we look closely, the training time is actually longer than test time for all the classifier. Here is the log
I think this is not the right way to convert the result into a range of (0,1) on the same axis