 | ConfusionMatrixFScore Method |
Function [float] FScore([float] B, [bigint] TP, [bigint] FP, [bigint] FN)
(Confusion Matrix)
Namespace:
sqx
Assembly:
SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntaxpublic static SqlDouble FScore(
SqlDouble B,
SqlInt64 TP,
SqlInt64 FP,
SqlInt64 FN
)
Parameters
- B
- Type: System.Data.SqlTypesSqlDouble
[float] - TP
- Type: System.Data.SqlTypesSqlInt64
[bigint] - FP
- Type: System.Data.SqlTypesSqlInt64
[bigint] - FN
- Type: System.Data.SqlTypesSqlInt64
[bigint]
Return Value
Type:
SqlDouble[float]
RemarksF-score function (Confusion Matrix F-score).
See Also