Posts by rriccilopes • 136 points
3 posts
-
0
votes1
answer64
viewsA: Valueerror: Classification Metrics can’t Handle a mix of multilabel-Indicator and Binary targets
The error indicates that you are passing more than one label per sample (for example, a list or array with more than one element). Compare the values being provided in fit in the variable classe (of…
-
0
votes1
answer155
viewsA: Convergencewarning in the Lasso CV method - What can I do to solve the problem?
The Warning happens by the nonconvergence of the technique. This can happen depending on the data. Apply a standard scaling instead of normalization. from sklearn.preprocessing import StandardScaler…
-
2
votes3
answers2247
viewsA: Typeerror: Object of type 'Nonetype' has no Len()
Its function display_topics() does not have a return. You need to add one return to her with the list to be returned.