|
SplitSetStatisticsCreateTModel Method
|
Create a new split-set statistics class.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public static SplitSetStatistics<TModel> Create<TModel>(
TModel model,
int size,
double value,
double variance
)
where TModel : class
Public Shared Function Create(Of TModel As Class) (
model As TModel,
size As Integer,
value As Double,
variance As Double
) As SplitSetStatistics(Of TModel)
Request Example
View SourceParameters
- model
- Type: TModel
The generated model. - size
- Type: SystemInt32
The number of samples used to compute the statistic. - value
- Type: SystemDouble
The performance statistic gathered during the run. - variance
- Type: SystemDouble
The variance of the performance statistic during the run.
Type Parameters
- TModel
Return Value
Type:
SplitSetStatisticsTModelSee Also