Click or drag to resize
sqx

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)
Syntax
C#
public 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]
Remarks
F-score function (Confusion Matrix F-score).
See Also