-
Notifications
You must be signed in to change notification settings - Fork 118
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
How to use both AUCPR and AUC as metric for 'deeptable.fit' #81
Comments
Hi @Jwenyi , DeepTables/deeptables/tests/models/deeptable_test.py Lines 235 to 258 in d1f3999
For the second question, you can really set validation data in this way. |
Hi there,
I'm trying to use AUCPR and AUC as metrics, so I defined the param of ModelConfig like
metrics=[keras.metrics.AUC(name="AUCPR", curve='PR', num_thresholds=1000),keras.metrics.AUC(name="AUC", curve='ROC', num_thresholds=1000)]
. However, it did not work and raised a error 'AttributeError: 'AUC' object has no attribute 'name''.Besides, I would like to know how to input pre-defined validation data to
DeepTable.fit
. I read its source code and found no related description. Is it correct if I setvalidation_data = (val_x, val_y)
?I would be grateful for any suggestions!
Best,
Wenyi Jin
The text was updated successfully, but these errors were encountered: