Neural Tree
Neural-network tree hybrids.
- class modeva.models.MoNeuralTreeRegressor(name: str = None, estimator: MoGLMTreeBoostRegressor = None, val_ratio=0.2, verbose=False, device=None, random_state=0, feature_names=None, nn_temperature=0.0001, nn_lr=0.0001, nn_max_epochs=200, nn_n_epoch_no_change=10, nn_batch_size=200, reg_mono=0.1, mono_sample_size=1000, mono_increasing_list=(), mono_decreasing_list=(), **kwargs)[source]
A neural network-based regression model that combines GLM trees with monotonicity constraints.
This model first fits a depth-1 boosted GLMTree, converts it to an equivalent neural network, and then fine-tunes the network parameters. It supports monotonicity constraints and provides interpretability through feature effects analysis.
- Parameters:
- namestr, default=None
Custom identifier for the model instance.
- estimatorMoGLMTreeBoostRegressor, default=None
Pre-fitted or unfitted GLMTree regressor for initialization. If None, creates a new instance.
- feature_nameslist of str, default=None
Names of input features for interpretability.
- val_ratiofloat, default=0.2
Proportion of data used for validation during training (0 to 1).
- devicestr, default=None
Computing device for training (‘cpu’, ‘cuda’, etc.).
- verbosebool, default=False
If True, prints training progress and statistics.
- random_stateint, default=0
Seed for reproducible random operations.
- nn_temperaturefloat, default=0.0001
Smoothing parameter for neural network activation.
- nn_lrfloat, default=0.001
Learning rate for neural network optimization.
- nn_max_epochsint, default=200
Maximum number of training epochs.
- nn_batch_sizeint, default=200
Number of samples per training batch.
- nn_n_epoch_no_changeint, default=10
Early stopping patience - number of epochs without improvement.
- reg_monofloat, default=0.1
Strength of monotonicity regularization.
- mono_sample_sizeint, default=1000
Number of random samples for monotonicity regularization.
- mono_increasing_listtuple of str, default=()
Features that should have monotonically increasing relationships.
- mono_decreasing_listtuple of str, default=()
Features that should have monotonically decreasing relationships.
- **kwargs
Additional parameters passed to MoGLMTreeBoostRegressor.
- Attributes:
- net_object
The internal Pytorch network object.
- calibrate_interval(X, y, alpha=0.1, max_depth: int = 5)
Fit a conformal prediction model to the given data.
This method computes the model’s prediction interval calibrated to the given data.
If the model is a regressor, splits the data with 50% for fitting lower (alpha / 5) and upper (1 - alpha / 2) gradient boosting trees-based quantile regression to the model’s residual; and 50% for calibration.
If the model is a binary classifiers, it computes the calibration quantile based on predicted probabilities for the positive class.
- Parameters:
- XXnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- yarray-like of shape (n_samples, )
Target values.
- alphafloat, default=0.1
Expected miscoverage for the conformal prediction.
- max_depthint, default=5
Maximum depth of the gradient boosting trees for regression tasks. Only used when task_type is REGRESSION.
- Raises:
- ValueError: If the model is neither a regressor nor a classifier.
- certify_mono(n_samples=10000)
Verify if the model satisfies specified monotonicity constraints.
Generates random samples within the feature space and checks if the model’s predictions respect the monotonicity constraints specified during training.
- Parameters:
- n_samplesint, default=10000
Number of random samples to use for verification.
- Returns:
- mono_statusbool
True if monotonicity constraints are satisfied, False otherwise.
- extract_model_info(X, feature_names, feature_types)
- fit(X, y, sample_weight=None)
- get_aggregate_output(X)
Returns numpy array of raw prediction.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Data features.
- Returns:
- prednp.ndarray of shape (n_samples, 1)
numpy array of raw prediction.
- get_metadata_routing()
Get metadata routing of this object.
Please check User Guide on how the routing mechanism works.
- Returns:
- routingMetadataRequest
A
MetadataRequestencapsulating routing information.
- get_mono_loss(x, sample_weight=None)
Returns monotonicity loss of given samples.
- Parameters:
- xnp.ndarray of shape (n_samples, n_features)
Data features.
- sample_weightnp.ndarray of shape (n_samples, ), default=None
Sample weight.
- Returns:
- mono_lossfloat
monotonicity loss.
- get_params(deep=True)[source]
Get parameters for this estimator. Parameters ———- deep : bool, default=True
If True, will return the parameters for this estimator and contained subobjects that are estimators.
Returns
- paramsmapping of string to any
Parameter names mapped to their values.
- get_sparsity(x)
- interpret(dataset)
- load(file_name: str)
Load the model into memory from file system.
- Parameters:
- file_name: str
The path and name of the file.
- Returns:
- estimator object
- predict(X)
Model predictions, calling the child class’s ‘_predict’ method.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- Returns:
- np.ndarray: The (calibrated) final prediction
- predict_interval(X)
Predict the prediction interval for the given data based on the conformal prediction model.
It splits the data with 50% for fitting lower (alpha / 5) and upper (1 - alpha / 2) gradient boosting trees-based quantile regression to the model’s residual; and 50% for calibration.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- Returns:
- np.ndarray: The lower and upper bounds of the prediction intervals for each sample
in the format [n_samples, 2] for regressors or a flattened array for classifiers.
- Raises:
- ValueError: If fit_conformal has not been called to fit the conformal prediction model
before calling this method.
- reset_calibrate_interval()
- reset_calibrate_proba()
- save(file_name: str)
Save the model into file system.
- Parameters:
- file_name: str
The path and name of the file.
- score(X, y, sample_weight=None)
Return the coefficient of determination of the prediction.
The coefficient of determination \(R^2\) is defined as \((1 - \frac{u}{v})\), where \(u\) is the residual sum of squares
((y_true - y_pred)** 2).sum()and \(v\) is the total sum of squares((y_true - y_true.mean()) ** 2).sum(). The best possible score is 1.0 and it can be negative (because the model can be arbitrarily worse). A constant model that always predicts the expected value of y, disregarding the input features, would get a \(R^2\) score of 0.0.- Parameters:
- Xarray-like of shape (n_samples, n_features)
Test samples. For some estimators this may be a precomputed kernel matrix or a list of generic objects instead with shape
(n_samples, n_samples_fitted), wheren_samples_fittedis the number of samples used in the fitting for the estimator.- yarray-like of shape (n_samples,) or (n_samples, n_outputs)
True values for X.
- sample_weightarray-like of shape (n_samples,), default=None
Sample weights.
- Returns:
- scorefloat
\(R^2\) of
self.predict(X)w.r.t. y.
Notes
The \(R^2\) score used when calling
scoreon a regressor usesmultioutput='uniform_average'from version 0.23 to keep consistent with default value ofr2_score(). This influences thescoremethod of all the multioutput regressors (except forMultiOutputRegressor).
- set_fit_request(*, sample_weight: bool | None | str = '$UNCHANGED$') MoNeuralTreeRegressor
Request metadata passed to the
fitmethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed tofitif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it tofit.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.- Parameters:
- sample_weightstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
sample_weightparameter infit.
- Returns:
- selfobject
The updated object.
- set_params(**params)[source]
Set the parameters of this estimator.
The method works on simple estimators as well as on nested objects (such as
Pipeline). The latter have parameters of the form<component>__<parameter>so that it’s possible to update each component of a nested object.- Parameters:
- **paramsdict
Estimator parameters.
- Returns:
- selfestimator instance
Estimator instance.
- set_score_request(*, sample_weight: bool | None | str = '$UNCHANGED$') MoNeuralTreeRegressor
Request metadata passed to the
scoremethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed toscoreif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it toscore.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.- Parameters:
- sample_weightstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
sample_weightparameter inscore.
- Returns:
- selfobject
The updated object.
- property name
- property version
- class modeva.models.MoNeuralTreeClassifier(name: str = None, estimator: MoGLMTreeBoostClassifier = None, feature_names=None, val_ratio=0.2, verbose=False, device=None, random_state=0, nn_temperature=0.0001, nn_lr=0.0001, nn_max_epochs=200, nn_n_epoch_no_change=10, nn_batch_size=200, reg_mono=0.1, mono_sample_size=1000, mono_increasing_list=(), mono_decreasing_list=(), **kwargs)[source]
A neural network-based classification model that combines GLM trees with monotonicity constraints.
This model first fits a depth-1 boosted GLMTree, converts it to an equivalent neural network, and then fine-tunes the network parameters. It supports monotonicity constraints and provides interpretability through feature effects analysis.
- Parameters:
- namestr, default=None
Custom identifier for the model instance.
- estimatorMoGLMTreeBoostRegressor, default=None
Pre-fitted or unfitted GLMTree regressor for initialization. If None, creates a new instance.
- feature_nameslist of str, default=None
Names of input features for interpretability.
- val_ratiofloat, default=0.2
Proportion of data used for validation during training (0 to 1).
- devicestr, default=None
Computing device for training (‘cpu’, ‘cuda’, etc.).
- verbosebool, default=False
If True, prints training progress and statistics.
- random_stateint, default=0
Seed for reproducible random operations.
- nn_temperaturefloat, default=0.0001
Smoothing parameter for neural network activation.
- nn_lrfloat, default=0.001
Learning rate for neural network optimization.
- nn_max_epochsint, default=200
Maximum number of training epochs.
- nn_batch_sizeint, default=200
Number of samples per training batch.
- nn_n_epoch_no_changeint, default=10
Early stopping patience - number of epochs without improvement.
- reg_monofloat, default=0.1
Strength of monotonicity regularization.
- mono_sample_sizeint, default=1000
Number of random samples for monotonicity regularization.
- mono_increasing_listtuple of str, default=()
Features that should have monotonically increasing relationships.
- mono_decreasing_listtuple of str, default=()
Features that should have monotonically decreasing relationships.
- **kwargs
Additional parameters passed to MoGLMTreeBoostRegressor.
- Attributes:
- net_object
The internal Pytorch network object.
- calibrate_interval(X, y, alpha=0.1)
Fit a conformal prediction model to the given data.
This method computes the model’s prediction interval calibrated to the given data.
It computes the calibration quantile based on predicted probabilities for the positive class.
- Parameters:
- XXnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- yarray-like of shape (n_samples, )
Target values.
- alphafloat, default=0.1
Expected miscoverage for the conformal prediction.
- Raises:
- ValueError: If the model is neither a regressor nor a classifier.
- calibrate_proba(X, y, sample_weight=None, method='sigmoid')
Fit the calibration method on the model’s predictions.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- ynp.ndarray of shape (n_samples, )
Ground truth labels.
- sample_weightarray-like, shape (n_samples,), default=None
Sample weights.
- method{‘sigmoid’, ‘isotonic’}, default=’sigmoid’
The calibration method.
‘sigmoid’: Platt’s method, i.e., fit a logistic regression on predicted probabilities and y
‘isotonic’: Fit an isotonic regression on predicted probabilities and y.
- Returns:
- self: Calibrated estimator
- certify_mono(n_samples=10000)
Verify if the model satisfies specified monotonicity constraints.
Generates random samples within the feature space and checks if the model’s predictions respect the monotonicity constraints specified during training.
- Parameters:
- n_samplesint, default=10000
Number of random samples to use for verification.
- Returns:
- mono_statusbool
True if monotonicity constraints are satisfied, False otherwise.
- decision_function(X, calibration: bool = True)
Computes the decision function for the given input data.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- calibrationbool, default=True
If True, will use calibrated probability if calibration is done. Otherwise, will use raw probability.
- Returns:
- logit_predictionarray, shape (n_samples,) or (n_samples, n_classes)
Array of (calibrated) logit predictions.
- extract_model_info(X, feature_names, feature_types)
- fit(X, y, sample_weight=None)
- get_aggregate_output(X)
Returns numpy array of raw prediction.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Data features.
- Returns:
- prednp.ndarray of shape (n_samples, 1)
numpy array of raw prediction.
- get_metadata_routing()
Get metadata routing of this object.
Please check User Guide on how the routing mechanism works.
- Returns:
- routingMetadataRequest
A
MetadataRequestencapsulating routing information.
- get_mono_loss(x, sample_weight=None)
Returns monotonicity loss of given samples.
- Parameters:
- xnp.ndarray of shape (n_samples, n_features)
Data features.
- sample_weightnp.ndarray of shape (n_samples, ), default=None
Sample weight.
- Returns:
- mono_lossfloat
monotonicity loss.
- get_params(deep=True)[source]
Get parameters for this estimator. Parameters ———- deep : bool, default=True
If True, will return the parameters for this estimator and contained subobjects that are estimators.
Returns
- paramsmapping of string to any
Parameter names mapped to their values.
- get_sparsity(x)
- interpret(dataset)
- load(file_name: str)
Load the model into memory from file system.
- Parameters:
- file_name: str
The path and name of the file.
- Returns:
- estimator object
- predict(X, calibration: bool = True)
Model predictions, calling the child class’s ‘_predict’ method.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- calibrationbool, default=True
If True, will use calibrated probability if calibration is done. Otherwise, will use raw probability.
- Returns:
- np.ndarray: The (calibrated) final prediction
- predict_interval(X)
Predict the prediction set for the given data based on the conformal prediction model.
This method computes the model prediction interval (regression) or prediction sets (classification) using conformal prediction.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- Returns:
- np.ndarray: The lower and upper bounds of the prediction intervals for each sample
in the format [n_samples, 2] for regressors or a flattened array for classifiers.
- Raises:
- ValueError: If fit_conformal has not been called to fit the conformal prediction model
before calling this method.
- predict_proba(X, calibration: bool = True)
Predict (calibrated) probabilities for X.
- Parameters:
- Xnp.ndarray of shape (n_samples, n_features)
Feature matrix for prediction.
- calibrationbool, default=True
If True, will return calibrated probability if calibration is done. Otherwise, will return raw probability.
- Returns:
- np.ndarray: The (calibrated) predicted probabilities
- reset_calibrate_interval()
- reset_calibrate_proba()
- save(file_name: str)
Save the model into file system.
- Parameters:
- file_name: str
The path and name of the file.
- score(X, y, sample_weight=None)
Return the mean accuracy on the given test data and labels.
In multi-label classification, this is the subset accuracy which is a harsh metric since you require for each sample that each label set be correctly predicted.
- Parameters:
- Xarray-like of shape (n_samples, n_features)
Test samples.
- yarray-like of shape (n_samples,) or (n_samples, n_outputs)
True labels for X.
- sample_weightarray-like of shape (n_samples,), default=None
Sample weights.
- Returns:
- scorefloat
Mean accuracy of
self.predict(X)w.r.t. y.
- set_decision_function_request(*, calibration: bool | None | str = '$UNCHANGED$') MoNeuralTreeClassifier
Request metadata passed to the
decision_functionmethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed todecision_functionif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it todecision_function.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.- Parameters:
- calibrationstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
calibrationparameter indecision_function.
- Returns:
- selfobject
The updated object.
- set_fit_request(*, sample_weight: bool | None | str = '$UNCHANGED$') MoNeuralTreeClassifier
Request metadata passed to the
fitmethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed tofitif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it tofit.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.- Parameters:
- sample_weightstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
sample_weightparameter infit.
- Returns:
- selfobject
The updated object.
- set_params(**params)[source]
Set the parameters of this estimator.
The method works on simple estimators as well as on nested objects (such as
Pipeline). The latter have parameters of the form<component>__<parameter>so that it’s possible to update each component of a nested object.- Parameters:
- **paramsdict
Estimator parameters.
- Returns:
- selfestimator instance
Estimator instance.
- set_predict_proba_request(*, calibration: bool | None | str = '$UNCHANGED$') MoNeuralTreeClassifier
Request metadata passed to the
predict_probamethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed topredict_probaif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it topredict_proba.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.- Parameters:
- calibrationstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
calibrationparameter inpredict_proba.
- Returns:
- selfobject
The updated object.
- set_predict_request(*, calibration: bool | None | str = '$UNCHANGED$') MoNeuralTreeClassifier
Request metadata passed to the
predictmethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed topredictif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it topredict.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.- Parameters:
- calibrationstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
calibrationparameter inpredict.
- Returns:
- selfobject
The updated object.
- set_score_request(*, sample_weight: bool | None | str = '$UNCHANGED$') MoNeuralTreeClassifier
Request metadata passed to the
scoremethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed toscoreif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it toscore.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.- Parameters:
- sample_weightstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
sample_weightparameter inscore.
- Returns:
- selfobject
The updated object.
- property name
- property version