mars.learn.contrib.lightgbm.LGBMRegressor#
- class mars.learn.contrib.lightgbm.LGBMRegressor(*args, **kwargs)[源代码]#
- __init__(*args, **kwargs)#
Construct a gradient boosting model.
- 参数
boosting_type (str, optional (default='gbdt')) – ‘gbdt’, traditional Gradient Boosting Decision Tree. ‘dart’, Dropouts meet Multiple Additive Regression Trees. ‘rf’, Random Forest.
num_leaves (int, optional (default=31)) – Maximum tree leaves for base learners.
max_depth (int, optional (default=-1)) – Maximum tree depth for base learners, <=0 means no limit.
learning_rate (float, optional (default=0.1)) – Boosting learning rate. You can use
callbacksparameter offitmethod to shrink/adapt learning rate in training usingreset_parametercallback. Note, that this will ignore thelearning_rateargument in training.n_estimators (int, optional (default=100)) – Number of boosted trees to fit.
subsample_for_bin (int, optional (default=200000)) – Number of samples for constructing bins.
objective (str, callable or None, optional (default=None)) – Specify the learning task and the corresponding learning objective or a custom objective function to be used (see note below). Default: ‘regression’ for LGBMRegressor, ‘binary’ or ‘multiclass’ for LGBMClassifier, ‘lambdarank’ for LGBMRanker.
class_weight (dict, 'balanced' or None, optional (default=None)) – Weights associated with classes in the form
{class_label: weight}. Use this parameter only for multi-class classification task; for binary classification task you may useis_unbalanceorscale_pos_weightparameters. Note, that the usage of all these parameters will result in poor estimates of the individual class probabilities. You may want to consider performing probability calibration (https://scikit-learn.org/stable/modules/calibration.html) of your model. The ‘balanced’ mode uses the values of y to automatically adjust weights inversely proportional to class frequencies in the input data asn_samples / (n_classes * np.bincount(y)). If None, all classes are supposed to have weight one. Note, that these weights will be multiplied withsample_weight(passed through thefitmethod) ifsample_weightis specified.min_split_gain (float, optional (default=0.)) – Minimum loss reduction required to make a further partition on a leaf node of the tree.
min_child_weight (float, optional (default=1e-3)) – Minimum sum of instance weight (Hessian) needed in a child (leaf).
min_child_samples (int, optional (default=20)) – Minimum number of data needed in a child (leaf).
subsample (float, optional (default=1.)) – Subsample ratio of the training instance.
subsample_freq (int, optional (default=0)) – Frequency of subsample, <=0 means no enable.
colsample_bytree (float, optional (default=1.)) – Subsample ratio of columns when constructing each tree.
reg_alpha (float, optional (default=0.)) – L1 regularization term on weights.
reg_lambda (float, optional (default=0.)) – L2 regularization term on weights.
random_state (int, RandomState object or None, optional (default=None)) – Random number seed. If int, this number is used to seed the C++ code. If RandomState object (numpy), a random integer is picked based on its state to seed the C++ code. If None, default seeds in C++ code are used.
n_jobs (int or None, optional (default=None)) –
Number of parallel threads to use for training (can be changed at prediction time by passing it as an extra keyword argument).
For better performance, it is recommended to set this to the number of physical cores in the CPU.
Negative integers are interpreted as following joblib’s formula (n_cpus + 1 + n_jobs), just like scikit-learn (so e.g. -1 means using all threads). A value of zero corresponds the default number of threads configured for OpenMP in the system. A value of
None(the default) corresponds to using the number of physical cores in the system (its correct detection requires either thejoblibor thepsutilutil libraries to be installed).在 4.0.0 版本发生变更.
importance_type (str, optional (default='split')) – The type of feature importance to be filled into
feature_importances_. If ‘split’, result contains numbers of times the feature is used in a model. If ‘gain’, result contains total gains of splits which use the feature.**kwargs –
Other parameters for the model. Check http://lightgbm.readthedocs.io/en/latest/Parameters.html for more parameters.
警告
**kwargs is not supported in sklearn, it may cause unexpected issues.
备注
A custom objective function can be provided for the
objectiveparameter. In this case, it should have the signatureobjective(y_true, y_pred) -> grad, hess,objective(y_true, y_pred, weight) -> grad, hessorobjective(y_true, y_pred, weight, group) -> grad, hess:- y_truenumpy 1-D array of shape = [n_samples]
The target values.
- y_prednumpy 1-D array of shape = [n_samples] or numpy 2-D array of shape = [n_samples, n_classes] (for multi-class task)
The predicted values. Predicted values are returned before any transformation, e.g. they are raw margin instead of probability of positive class for binary task.
- weightnumpy 1-D array of shape = [n_samples]
The weight of samples. Weights should be non-negative.
- groupnumpy 1-D array
Group/query data. Only used in the learning-to-rank task. sum(group) = n_samples. For example, if you have a 100-document dataset with
group = [10, 20, 40, 10, 10, 10], that means that you have 6 groups, where the first 10 records are in the first group, records 11-30 are in the second group, records 31-70 are in the third group, etc.- gradnumpy 1-D array of shape = [n_samples] or numpy 2-D array of shape = [n_samples, n_classes] (for multi-class task)
The value of the first order derivative (gradient) of the loss with respect to the elements of y_pred for each sample point.
- hessnumpy 1-D array of shape = [n_samples] or numpy 2-D array of shape = [n_samples, n_classes] (for multi-class task)
The value of the second order derivative (Hessian) of the loss with respect to the elements of y_pred for each sample point.
For multi-class task, y_pred is a numpy 2-D array of shape = [n_samples, n_classes], and grad and hess should be returned in the same format.
Methods
__init__(*args, **kwargs)Construct a gradient boosting model.
fit(X, y[, sample_weight, init_score, ...])Build a gradient boosting model from the training set (X, y).
get_params([deep])Get parameters for this estimator.
load_model(model)predict(X, **kw)Return the predicted value for each sample.
predict_proba(X, **kwargs)score(X, y[, sample_weight])Return the coefficient of determination of the prediction.
set_params(**params)Set the parameters of this estimator.
to_local()Attributes
best_iteration_The best iteration of fitted model if
early_stopping()callback has been specified.best_score_The best score of fitted model.
booster_The underlying Booster of this model.
evals_result_The evaluation results if validation sets have been specified.
feature_importances_The feature importances (the higher, the more important).
feature_name_The names of features.
n_estimators_True number of boosting iterations performed.
n_features_The number of features of fitted model.
n_features_in_The number of features of fitted model.
n_iter_True number of boosting iterations performed.
objective_The concrete objective used while fitting this model.