C# Class BuildIt.CognitiveServices.Models.PrecisionMetric

Datei anzeigen Open project: builttoroam/BuildIt

Private Properties

Property Type Description

Public Methods

Method Description
PrecisionMetric ( ) : System.Linq

Initializes a new instance of the PrecisionMetric class.

PrecisionMetric ( int k = default(int?), double percentage = default(double?), int usersInTest = default(int?), int usersConsidered = default(int?), int usersNotConsidered = default(int?) ) : System.Linq

Initializes a new instance of the PrecisionMetric class.

Method Details

PrecisionMetric() public method

Initializes a new instance of the PrecisionMetric class.
public PrecisionMetric ( ) : System.Linq
return System.Linq

PrecisionMetric() public method

Initializes a new instance of the PrecisionMetric class.
public PrecisionMetric ( int k = default(int?), double percentage = default(double?), int usersInTest = default(int?), int usersConsidered = default(int?), int usersNotConsidered = default(int?) ) : System.Linq
k int The value K used to calculate the metric /// values.
percentage double Precision@K percentage.
usersInTest int The total number of users in the test /// dataset.
usersConsidered int A user is only considered if the /// system recommended at least K items based on the model generated /// using the training dataset.
usersNotConsidered int Any users not considered; the /// users that did not receive at least K recommended items.
return System.Linq