-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
why multi_label=True? #24
Comments
Hi, |
Hi, |
Hi, Sorry for missing this comment. Per cell AUC quantifies whether the model can distinguish accessibility across different genomic regions. Per peak AUC quantifies whether the model can distinguish accessibility across different cell types. They quantify different properties of the model. |
model.compile(loss=loss_fn, optimizer=optimizer,
metrics=[tf.keras.metrics.AUC(curve='ROC', multi_label=True),
tf.keras.metrics.AUC(curve='PR', multi_label=True)])
I would like to ask if multi_label=True is used in the optimization of the model, which is equivalent to calculating AUC per cell and optimizing it? And then calculated the per peak and per cell AUC of the test dataset directly with the optimized model? And the subsequent analysis is using this per cell AUC optimized model? (Why not set multi_label=False to optimize, that is, calculate the overall AUC of all samples, or optimize with the AUC of per peak?)
The text was updated successfully, but these errors were encountered: