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
Hello,
I am facing problems with the AttackEvaluator class. When running any of the inheriting classes, it always gives back an empty dict.
I am running:
evaluators = [DataLeakageLinear(), DataLeakageMLP(), DataLeakageXGB()] for evaluator in evaluators: evaluator_name = type(evaluator).__name__ score_dict[evaluator_name] = [] for loader in loaders_syndata: score = evaluator.evaluate(X_gt=loader_cps, X_syn=loader) score_dict[evaluator_name].append(score) DataLeakage_scores = pd.DataFrame(score_dict) DataLeakage_scores = DataLeakage_scores.T DataLeakage_scores.columns = [df.name for df in gen_data] DataLeakage_scores.index.name = "Evaluator"
This produces a data frame which contains a bunch of empty dicts instead of scores.
Using the same loaders for other evaluation metrics gives me valid results, so I don't think they are the problem.
I'd be very thankful for suggestions or solutions!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I am facing problems with the AttackEvaluator class.
When running any of the inheriting classes, it always gives back an empty dict.
I am running:
This produces a data frame which contains a bunch of empty dicts instead of scores.
Using the same loaders for other evaluation metrics gives me valid results, so I don't think they are the problem.
I'd be very thankful for suggestions or solutions!
The text was updated successfully, but these errors were encountered: