You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: samples/fsharp/getting-started/BinaryClassification_CreditCardFraudDetection/CreditCardFraudDetection/Program.fs
+7-15Lines changed: 7 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ type TransactionFraudPrediction = {
48
48
PredictedLabel:bool
49
49
Score:float32
50
50
Probability:float32
51
-
}
51
+
}
52
52
53
53
[<EntryPoint>]
54
54
letmain _ =
@@ -132,25 +132,17 @@ let main _ =
132
132
133
133
letpipeline=
134
134
EstimatorChain()
135
-
|>fun x -> x.Append(mlContext.Transforms.Concatenate("Features", featureColumnNames))
136
-
|>fun x -> x.Append(mlContext.Transforms.DropColumns [|"Time"|])
0 commit comments