A personal diary of DataFrame munging over the years.
Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)
| """ | |
| An example to check the AUC score on a validation set for each 10 epochs. | |
| I hope it will be helpful for optimizing number of epochs. | |
| """ | |
| # -*- coding: utf-8 -*- | |
| import logging | |
| from sklearn.metrics import roc_auc_score | |
| from keras.callbacks import Callback |
A personal diary of DataFrame munging over the years.
Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)