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
Implement experiments with a synthetic dataset + model for a baseline/quick way to vary a lot of parameters.
E.g. something like
from random import random n = 1000 imbalance = 0.1 labels = [1 if random() < imbalance else 0 for _ in range(n)]
pos_err_rate = 0.1 neg_err_rate = 0.2 err_rate = pos_err_rate if label == 1 else neg_err_rate pred = label if random() > err_rate else 1 - label
Need to figure out:
The text was updated successfully, but these errors were encountered:
jack89roberts
No branches or pull requests
Implement experiments with a synthetic dataset + model for a baseline/quick way to vary a lot of parameters.
E.g. something like
Data
Model
Need to figure out:
The text was updated successfully, but these errors were encountered: