how does ravel work in a model? even though I know the concept of numpy.ravel, is to reshape the array, but I can't find any documentation for me to learn below.
ML_model.fit(features_train,labels_train.values.ravel())
Thanks
I just realize something from the documentation, np.revel(a) is the same as a.revel(), I can break down the code
labels_train.values.ravel()
, then I understand now