Joakim Martin Torsvik

Results 1 issues of Joakim Martin Torsvik

I'm trying to use the ExponentiatedGradientReduction-function for my classifier with the following code: ``` from aif360.algorithms.inprocessing import ExponentiatedGradientReduction as EGR from sklearn.linear_model import LogisticRegression as logreg clf = logreg(random_state=1) EGR(estimator=clf,...