Evaluate a TIBCO Patterns Learn Model with the given vector of feature values.
Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function rleval( _ ByVal rlModelName As String, _ ByVal featurevec As Double() _ ) As Double _ Implements INetricsServerInterface.rleval |
C# |
---|
public double rleval( string rlModelName, double[] featurevec ) |
C++ |
---|
public: double rleval( String rlModelName, array<double>^ featurevec ) sealed |
J# |
---|
public double rleval( string rlModelName, double[] featurevec ) |
JScript |
---|
public
function rleval( rlModelName : String, featurevec : double[] ) : double |
Parameters
- rlModelName
- The name of the model to use in the evaluation.
- featurevec
- An array of double feature values (from 0.0 to 1.0) which will be evaluated by the model. The number of features in this array must be the same as the model was created and trained with.
Implements
INetricsServerInterface.rleval
Exceptions
Exception Type | Condition |
---|---|
NetricsException | If the server indicates that an error has occured (Possible errors - NORLINKMODEL, RLINKMODELNOTFOUND, NOFEATUREVEC, NUMFEATURESMISMATCH, FEATURESET, IOERROR, PARAMVAL) |