We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c4388dc + e7f9daf commit 9218375Copy full SHA for 9218375
src/Microsoft.ML.Fairlearn/Reductions/UtilityParity.cs
@@ -122,7 +122,7 @@ public override DataFrame Gamma(PrimitiveDataFrameColumn<float> yPred/* Maybe ch
122
dfNeg["sign"].FillNulls("-", inPlace: true);
123
124
// stack the temp dataframe dfNeg to the bottom dataframe that we want to return
125
- dfNeg.Rows.ToList<DataFrameRow>().ForEach(row => { gSigned.Append(row, inPlace: true); });
+ gSigned.Append(dfNeg.Rows, inPlace: true);
126
127
return gSigned;
128
}
0 commit comments