Property | Type | Description |
---|
Method | Description | |
---|---|---|
BuildDataStatistics ( ) : System.Linq |
Initializes a new instance of the BuildDataStatistics class.
|
|
BuildDataStatistics ( int numberOfCatalogItems = default(int?), int numberOfCatalogItemsInUsage = default(int?), int numberOfUsers = default(int?), int numberOfUsageRecords = default(int?), double catalogCoverage = default(double?), int numberOfCatalogItemsInBuild = default(int?), int numberOfUsersInBuild = default(int?), int numberOfUsageRecordsInBuild = default(int?), double catalogCoverageInBuild = default(double?) ) : System.Linq |
Initializes a new instance of the BuildDataStatistics class.
|
public BuildDataStatistics ( int numberOfCatalogItems = default(int?), int numberOfCatalogItemsInUsage = default(int?), int numberOfUsers = default(int?), int numberOfUsageRecords = default(int?), double catalogCoverage = default(double?), int numberOfCatalogItemsInBuild = default(int?), int numberOfUsersInBuild = default(int?), int numberOfUsageRecordsInBuild = default(int?), double catalogCoverageInBuild = default(double?) ) : System.Linq | ||
numberOfCatalogItems | int | Number of items in the /// catalog. |
numberOfCatalogItemsInUsage | int | Number of unique items /// from usage data (which are present in catalog). |
numberOfUsers | int | Number of unique users in usage data /// before any pruning. |
numberOfUsageRecords | int | Total number of usage points /// before any pruning, and after removing duplicate user id / item /// id records. |
catalogCoverage | double | NumberOfCatalogItemsForModeling/ /// NumberOfCatalogItems /// This property indicates what part of the catalog can /// be modelled with usage data. The rest of the items will need /// content-based features. |
numberOfCatalogItemsInBuild | int | Number of unique items /// from usage data that are used for training (which are present in /// catalog). |
numberOfUsersInBuild | int | Number of unique users in usage /// data that are used for training. |
numberOfUsageRecordsInBuild | int | Total number of usage /// points that are used for training |
catalogCoverageInBuild | double | NumberOfCatalogItemsInBuild/ /// NumberOfCatalogItems /// This property indicates what part of the catalog will /// be modeled with usage data. The rest of the items will need /// content-based features. |
return | System.Linq |