Coverage of bootstrapped curves doesn't match nominal coverage at edges [statistical issue] · Issue #20 · rdturnermtl/mlpaper · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The nominal coverage of precision recall curves doesn't match the 95% specified level in boot_test.py. We must set x_grid = np.linspace(0.05, 0.95, DEFAULT_NGRID) to get the tests to pass. We should get the nominal coverage on the whole [0,1] line. The ROC curve doesn't match nominal coverage at the edges either with class imbalance. Currently, we test at a 0.5 class balance to get the tests to pass, but the class balance should be randomized too.
The text was updated successfully, but these errors were encountered:
The nominal coverage of precision recall curves doesn't match the 95% specified level in boot_test.py. We must set
x_grid = np.linspace(0.05, 0.95, DEFAULT_NGRID)
to get the tests to pass. We should get the nominal coverage on the whole [0,1] line. The ROC curve doesn't match nominal coverage at the edges either with class imbalance. Currently, we test at a 0.5 class balance to get the tests to pass, but the class balance should be randomized too.The text was updated successfully, but these errors were encountered: