This class is a container for arrays and values that are computed during computation of a lasso fit. It also contains the final weights of features.
@author Yasser Ganjisaffar (http://www.ics.uci.edu/~yganjisa/)
This class is a container for arrays and values that are computed during computation of a lasso fit. It also contains the final weights of features.
@author Yasser Ganjisaffar (http://www.ics.uci.edu/~yganjisa/)
01 Syntax
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| toNumericTable | 1 | 将 LASSO 的正则化路径导出为统一的二维表对象 NumericTable: 1. |
| getWeights | 1 | |
| ToString | 1 | |
| toDataFrame | 1 |
03 Properties
| Name | Overloads | Summary |
|---|---|---|
| numberOfLambdas | 1 | Number of lambda values |
| intercepts | 1 | Intercepts |
| compressedWeights | 1 | Compressed weights for each solution |
| indices | 1 | Pointers to compressed weights |
| numberOfWeights | 1 | Number of weights for each solution |
| nonZeroWeights | 1 | Number of non-zero weights for each solution |
| lambdas | 1 | The value of lambdas for each solution |
| rsquared | 1 | R^2 value for each solution |
| numberOfPasses | 1 | Total number of passes over data |
| numFeatures | 1 | number of the data features that input from the training data |
| featureNames | 1 |
04 Members
String())将 LASSO 的正则化路径导出为统一的二维表对象 NumericTable:
rsquared、lambdas、Df 与 numberOfWeights 这几个路径指标| Name | Type | Description |
|---|---|---|
featureNames | String() | 特征列的名称。为空的时候使用 LassoFit.featureNames 属性; 数量不匹配的时候自动生成 |
Number of lambda values
Intercepts
Compressed weights for each solution
Pointers to compressed weights
Number of weights for each solution
Number of non-zero weights for each solution
The value of lambdas for each solution
R^2 value for each solution
Total number of passes over data
number of the data features that input from the training data
Int32)