Question 1
Consider following code snippet:
from sklearn.utils.multiclass import type_of_targetimport numpy as npprint(type_of_target(np.array([['horror','fantasy'], ['adventure','fantasy'], ['adventure','fantasy']])))print(type_of_target([72, 17.89, 63.00]))print(type_of_target([0, 1, 1, 0]))What will be the output of the above code snippet in the correct sequence?
