Posts by StaLLoNe_CoBRa • 13 points
2 posts
-
0
votes0
answers17
viewsQ: Isolation Forest with Cross Validation
how can I use a One Class classifier, such as Isolation Forest, with Cross Validation? I’m trying to do it this way: columns = data.columns.tolist() columns = [c for c in columns if c not in…
-
0
votes1
answer38
viewsQ: How do I convert string values or items from an object column into binary with pandas?
I’m trying to convert a column into a data set where there is 'negative' and 'positive' for binaries or numeric items like 0 and 1, but I don’t know if I’m doing it right with the Pandas library.…