Skip to main content
Adrian B's user avatar
Adrian B's user avatar
Adrian B's user avatar
Adrian B
  • Member for 3 years, 3 months
  • Last seen more than 2 years ago
awarded
Loading…
comment
Taxonomy of train-test split approaches
Are you able to provide a dataset you had in mind or is this a generic question?
Loading…
awarded
awarded
comment
Why does my mean average precision metric show as 0.000e+00?
@NevMthw this is because average_precision_score is expecting binary labels for classification. If you have 100 classes then you need to one-hot encode them to give something like this: y_pred =np.array([[1,0,0],[1,0,0],[1,0,0],[0,1,0],[0,0,1]]) y_truth = np.array([[1,0,0],[0,1,0],[1,0,0],[0,1,0],[0,0,1]]) average_precision_score(y_pred, y_truth)
revised
Loading…
answered
Loading…
awarded
awarded
revised
Loading…
Loading…
Loading…
comment
Using the results of clustering to retrain a neural network
You are definitely correct about UMAP / tsne, I did my own exploration in TSNE and discovered an outlier cluster of melanoma. See the images in the main cluster of raw.githubusercontent.com/adbandy/data_files/main/… compared to the rogue cluster of raw.githubusercontent.com/adbandy/data_files/main/… for instance if you were curious
revised
Loading…
Loading…
Loading…
awarded