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.
1 parent aca8005 commit 564dfaeCopy full SHA for 564dfae
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