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: Common/ML/include/ML/OrtInterface.h
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -91,16 +91,16 @@ class OrtModel
91
91
92
92
// Inferencing
93
93
template <classI, classO> // class I is the input data type, e.g. float, class O is the output data type, e.g. OrtDataType::Float16_t from O2/Common/ML/include/ML/GPUORTFloat16.h
AddOption(nnEvalMode, std::string, "c1:r1", "", 0, "Concatention of modes, e.g. c1:r1 (classification class 1, regression class 1)")
284
284
AddOption(nnClusterizerUseClassification, int, 1, "", 0, "If 1, the classification output of the network is used to select clusters, else only the regression output is used and no clusters are rejected by classification")
285
285
AddOption(nnClusterizerForceGpuInputFill, int, 0, "", 0, "Forces to use the fillInputNNGPU function")
286
+
AddOption(nnUseClusterErrorNetwork, int, 1, "", 0, "If 1, the cluster error network is used to parametrize the cluster errors, else a fixed parametrization is used")
287
+
AddOption(nnClusterErrorModelPath, std::string, "", "", 0, "Network for cluster error parameterization")
288
+
AddOption(dumpClusterErrorCSV, int, 0, "", 0, "Dumps the cluster errors to CSV if enabled")
289
+
AddOption(nnScaleClusterError, float, 1.0, "", 0, "Scale factor for the cluster errors predicted by the network, can be used to effectively increase or decrease the cluster errors without retraining the network")
286
290
// CCDB
287
291
AddOption(nnLoadFromCCDB, int, 0, "", 0, "If 1 networks are fetched from ccdb, else locally")
0 commit comments