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
Modelling Player Impact on English Premier League
added 22 characters in body
Loading…
Loading…
awarded
awarded
revised
Encoding Colour Output for a Sequential Neural Network
deleted 2 characters in body
Loading…
answered
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
What actually is model size scaling and how do i globally apply to every model?
added 381 characters in body
Loading…
Loading…
awarded