We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Chris,
I am trying to understand and adapt your code for my work on online cascade training. When you calculate positive bias there is a line that says
f = _fpos_bias(df[Y == 1], fpos, tneg)
Don't you think that this line should instead be so that the
f = _fpos_bias(df[Y == 0], fpos, tneg)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Chris,
I am trying to understand and adapt your code for my work on online cascade training. When you calculate positive bias there is a line that says
Don't you think that this line should instead be so that the
The text was updated successfully, but these errors were encountered: