Closed Sowmya-R-Krishnan closed 4 years ago
In the code in utils.py, the function get_roc_score() has this line:
labels_all = np.hstack([np.ones(len(preds)), np.zeros(len(preds))])
The second argument should be np.zeros(len(preds_neg))
I was using your code to understand GVAE and found this small mistake. Thank you.
Thank you for pointing it out!
In the code in utils.py, the function get_roc_score() has this line:
labels_all = np.hstack([np.ones(len(preds)), np.zeros(len(preds))])
The second argument should be np.zeros(len(preds_neg))
I was using your code to understand GVAE and found this small mistake. Thank you.