C# Class BuildIt.CognitiveServices.Models.RankingBuildParameters

Datei anzeigen Open project: builttoroam/BuildIt Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
RankingBuildParameters ( ) : System.Linq

Initializes a new instance of the RankingBuildParameters class.

RankingBuildParameters ( int numberOfModelIterations = default(int?), int numberOfModelDimensions = default(int?), int itemCutOffLowerBound = default(int?), int itemCutOffUpperBound = default(int?), int userCutOffLowerBound = default(int?), int userCutOffUpperBound = default(int?) ) : System.Linq

Initializes a new instance of the RankingBuildParameters class.

Method Details

RankingBuildParameters() public method

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

RankingBuildParameters() public method

Initializes a new instance of the RankingBuildParameters class.
public RankingBuildParameters ( int numberOfModelIterations = default(int?), int numberOfModelDimensions = default(int?), int itemCutOffLowerBound = default(int?), int itemCutOffUpperBound = default(int?), int userCutOffLowerBound = default(int?), int userCutOffUpperBound = default(int?) ) : System.Linq
numberOfModelIterations int The number of iterations the /// model performs. /// The higher the number, the better accuracy, but /// compute time will be higher.
numberOfModelDimensions int The number of dimensions /// relates to the number of 'features' the model will try to find /// within your data. /// Increasing the number of dimensions will allow better /// fine-tuning of the results into smaller clusters. /// However, too many dimensions will prevent the model /// from finding correlations between items.
itemCutOffLowerBound int Defines the item lower bound /// for usage condenser.
itemCutOffUpperBound int Defines the item upper bound /// for usage condenser.
userCutOffLowerBound int Defines the user lower bound /// for usage condenser.
userCutOffUpperBound int Defines the user upper bound /// for usage condenser.
return System.Linq