xanfis.helpers package¶
xanfis.helpers.membership_family module¶
- class xanfis.helpers.membership_family.BaseMembership[source]¶
Bases:
ModuleBase class for membership functions.
This class defines the interface for all membership functions. Subclasses must implement the forward method to calculate membership values.
- forward(X: Tensor) Tensor[source]¶
Calculate membership values for the given input tensor.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- Raises:
NotImplementedError – If not implemented by subclass.
- get_parameters() Dict[str, Tensor][source]¶
Retrieve the current parameters of the membership function.
- Returns:
Dictionary containing parameter names and values.
- Return type:
Dict[str, torch.Tensor]
- training: bool¶
- class xanfis.helpers.membership_family.GBellMembership(input_dim)[source]¶
Bases:
BaseMembershipGeneralized Bell-shaped membership function implementation.
This membership function is defined by a smooth, symmetric bell curve.
- Parameters:
input_dim (int) – Number of input features.
- a¶
Width of the bell curve.
- Type:
nn.Parameter
- b¶
Slope of the bell curve.
- Type:
nn.Parameter
- c¶
Center of the bell curve.
- Type:
nn.Parameter
- forward(x)[source]¶
Calculate membership values for the given input tensor.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- Raises:
NotImplementedError – If not implemented by subclass.
- training: bool¶
- class xanfis.helpers.membership_family.GaussianMembership(input_dim: int)[source]¶
Bases:
BaseMembershipGaussian membership function implementation.
- forward(X: Tensor) Tensor[source]¶
Calculate Gaussian membership values.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- training: bool¶
- class xanfis.helpers.membership_family.LinearMembership(input_dim)[source]¶
Bases:
BaseMembershipLinear membership function implementation.
This membership function is defined by a linear ramp between two points.
- Parameters:
input_dim (int) – Number of input features.
- a¶
Start of the ramp.
- Type:
nn.Parameter
- b¶
End of the ramp.
- Type:
nn.Parameter
- forward(x)[source]¶
Calculate membership values for the given input tensor.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- Raises:
NotImplementedError – If not implemented by subclass.
- training: bool¶
- class xanfis.helpers.membership_family.PiShapedMembership(input_dim)[source]¶
Bases:
BaseMembershipPi-shaped membership function implementation.
This membership function is characterized by a rising edge, a plateau, and a falling edge, forming a shape similar to the Greek letter Pi (π).
- Parameters:
input_dim (int) – Number of input features.
- a¶
Start of the rising edge.
- Type:
nn.Parameter
- b¶
Start of the plateau.
- Type:
nn.Parameter
- c¶
End of the plateau.
- Type:
nn.Parameter
- d¶
End of the falling edge.
- Type:
nn.Parameter
- forward(x)[source]¶
Calculate membership values for the given input tensor.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- Raises:
NotImplementedError – If not implemented by subclass.
- training: bool¶
- class xanfis.helpers.membership_family.SShapedMembership(input_dim)[source]¶
Bases:
BaseMembershipS-shaped membership function implementation.
This membership function is characterized by a smooth transition from 0 to 1, forming an S-like shape.
- Parameters:
input_dim (int) – Number of input features.
- a¶
Start of the transition.
- Type:
nn.Parameter
- b¶
End of the transition.
- Type:
nn.Parameter
- forward(x)[source]¶
Calculate membership values for the given input tensor.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- Raises:
NotImplementedError – If not implemented by subclass.
- training: bool¶
- class xanfis.helpers.membership_family.SigmoidMembership(input_dim: int)[source]¶
Bases:
BaseMembershipSigmoid membership function implementation.
- forward(X: Tensor) Tensor[source]¶
Calculate Sigmoid membership values.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- training: bool¶
- class xanfis.helpers.membership_family.TrapezoidalMembership(input_dim: int)[source]¶
Bases:
BaseMembershipTrapezoidal membership function implementation.
- forward(x: Tensor) Tensor[source]¶
Calculate Trapezoidal membership values.
- Parameters:
x (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- training: bool¶
- class xanfis.helpers.membership_family.TriangularMembership(input_dim: int)[source]¶
Bases:
BaseMembershipTriangular membership function implementation.
- forward(X: Tensor) Tensor[source]¶
Calculate Triangular membership values.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- training: bool¶
- class xanfis.helpers.membership_family.ZShapedMembership(input_dim)[source]¶
Bases:
BaseMembershipZ-shaped membership function implementation.
This membership function is characterized by a smooth transition from 1 to 0, forming a Z-like shape.
- Parameters:
input_dim (int) – Number of input features.
- a¶
Start of the transition.
- Type:
nn.Parameter
- b¶
End of the transition.
- Type:
nn.Parameter
- forward(x)[source]¶
Calculate membership values for the given input tensor.
- Parameters:
X (torch.Tensor) – Input tensor of shape (batch_size, input_dim).
- Returns:
Tensor of membership values of shape (batch_size,).
- Return type:
torch.Tensor
- Raises:
NotImplementedError – If not implemented by subclass.
- training: bool¶
xanfis.helpers.metric_util module¶
- xanfis.helpers.metric_util.get_all_classification_metrics()[source]¶
Gets a dictionary of all supported classification metrics.
This function returns a dictionary where keys are metric names and values are their optimization types (“min” or “max”).
- Returns:
A dictionary containing all supported classification metrics.
- Return type:
dict
- xanfis.helpers.metric_util.get_all_regression_metrics()[source]¶
Gets a dictionary of all supported regression metrics.
This function returns a dictionary where keys are metric names and values are their optimization types (“min” or “max”).
- Returns:
A dictionary containing all supported regression metrics.
- Return type:
dict
- xanfis.helpers.metric_util.get_metric_sklearn(task='classification', metric_names=None)[source]¶
Creates a dictionary of scorers for scikit-learn cross-validation.
This function takes the task type (classification or regression) and a list of metric names. It creates an appropriate metrics instance (ClassificationMetric or RegressionMetric) and iterates through the provided metric names. For each metric name, it checks if it exists in the metrics instance and retrieves the corresponding method. Finally, it uses make_scorer to convert the method to a scorer and adds it to a dictionary.
- Parameters:
task (str, optional) – The task type, either “classification” or “regression”. Defaults to “classification”.
metric_names (list, optional) – A list of metric names. Defaults to None.
- Returns:
A dictionary of scorers for scikit-learn cross-validation.
- Return type:
dict
- xanfis.helpers.metric_util.get_metrics(problem, y_true, y_pred, metrics=None, testcase='test')[source]¶
Calculates metrics for regression or classification tasks.
This function takes the true labels (y_true), predicted labels (y_pred), problem type (regression or classification), a dictionary or list of metrics to calculate, and an optional test case name. It returns a dictionary containing the calculated metrics with descriptive names.
- Parameters:
problem (str) – The type of problem, either “regression” or “classification”.
y_true (array-like) – The true labels.
y_pred (array-like) – The predicted labels.
metrics (dict or list, optional) – A dictionary or list of metrics to calculate. Defaults to None.
testcase (str, optional) – An optional test case name to prepend to the metric names. Defaults to “test”.
- Returns:
A dictionary containing the calculated metrics with descriptive names.
- Return type:
dict
- Raises:
ValueError – If the metrics parameter is not a list or dictionary.
xanfis.helpers.preprocessor module¶
- class xanfis.helpers.preprocessor.Data(X=None, y=None, name='Unknown')[source]¶
Bases:
objectThe structure of our supported Data class
- Parameters:
X (np.ndarray) – The features of your data
y (np.ndarray) – The labels of your data
- SUPPORT = {'scaler': ['standard', 'minmax', 'max-abs', 'log1p', 'loge', 'sqrt', 'sinh-arc-sinh', 'robust', 'box-cox', 'yeo-johnson']}¶
- class xanfis.helpers.preprocessor.FeatureEngineering[source]¶
Bases:
object- create_threshold_binary_features(X, threshold)[source]¶
Perform feature engineering to add binary indicator columns for values below the threshold. Add each new column right after the corresponding original column.
Args: X (numpy.ndarray): The input 2D matrix of shape (n_samples, n_features). threshold (float): The threshold value for identifying low values.
Returns: numpy.ndarray: The updated 2D matrix with binary indicator columns.
- class xanfis.helpers.preprocessor.LabelEncoder[source]¶
Bases:
objectEncode categorical features as integer labels.
- fit(y)[source]¶
Fit label encoder to a given set of labels.
Parameters:¶
- yarray-like
Labels to encode.
- fit_transform(y)[source]¶
Fit label encoder and return encoded labels.
- Parameters:
y (array-like of shape (n_samples,)) – Target values.
- Returns:
y – Encoded labels.
- Return type:
array-like of shape (n_samples,)
xanfis.helpers.scaler_util module¶
- class xanfis.helpers.scaler_util.BoxCoxScaler(lmbda=None)[source]¶
Bases:
BaseEstimator,TransformerMixin
- class xanfis.helpers.scaler_util.DataTransformer(scaling_methods=('standard',), list_dict_paras=None)[source]¶
Bases:
BaseEstimator,TransformerMixin- SUPPORTED_SCALERS = {'box-cox': <class 'xanfis.helpers.scaler_util.BoxCoxScaler'>, 'log1p': <class 'xanfis.helpers.scaler_util.Log1pScaler'>, 'loge': <class 'xanfis.helpers.scaler_util.LogeScaler'>, 'max-abs': <class 'sklearn.preprocessing._data.MaxAbsScaler'>, 'minmax': <class 'sklearn.preprocessing._data.MinMaxScaler'>, 'robust': <class 'sklearn.preprocessing._data.RobustScaler'>, 'sinh-arc-sinh': <class 'xanfis.helpers.scaler_util.SinhArcSinhScaler'>, 'sqrt': <class 'xanfis.helpers.scaler_util.SqrtScaler'>, 'standard': <class 'sklearn.preprocessing._data.StandardScaler'>, 'yeo-johnson': <class 'xanfis.helpers.scaler_util.YeoJohnsonScaler'>}¶
- class xanfis.helpers.scaler_util.ObjectiveScaler(obj_name='sigmoid', ohe_scaler=None)[source]¶
Bases:
objectFor label scaler in classification (binary and multiple classification)
- class xanfis.helpers.scaler_util.SinhArcSinhScaler(epsilon=0.1, delta=1.0)[source]¶
Bases:
BaseEstimator,TransformerMixin