mateuszbuda/ml-stat-util

method for calculating p-value

chenypic opened this issue · 4 comments

Thank you so much for your ml-stat-util.
I want to know the method you compute the p-value. Is it the same as the DeLong test?

Hi @chenypic. This repo implements bootstrapping. Based on a quick research, I don't think it's equivalent to the DeLong test.

@mateuszbuda Is there any reference or statistical justification behind your implementation? Usually bootstrapping is used on the training set to account for model uncertainty, which is computationally expensive when training large models. Bootstrapping the predicted probabilities is much faster but I haven't found any statistical proof on this method.

@mateuszbuda Thank you for the reply. I'll take a look at the references.