Parameter Estimator
            SRToolkit.evaluation.parameter_estimator
    This module contains the ParameterEstimator class, which is used to estimate the parameters of an expression.
            ParameterEstimator
ParameterEstimator(X: ndarray, y: ndarray, symbol_library: SymbolLibrary = SymbolLibrary.default_symbols(), seed: Optional[int] = None, **kwargs)
Initializes an instance of the ParameterEstimator class.
Examples:
>>> X = np.array([[1, 2], [8, 4], [5, 4], [7, 9], ])
>>> y = np.array([3, 0, 3, 11])
>>> pe = ParameterEstimator(X, y)
>>> rmse, constants = pe.estimate_parameters(["C", "*", "X_1", "-", "X_0"])
>>> print(rmse < 1e-6)
True
>>> print(1.99 < constants[0] < 2.01)
True
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                X
             | 
            
                  ndarray
             | 
            
               The input data to be used in parameter estimation for variables. We assume that X is a 2D array with shape (n_samples, n_features).  | 
            required | 
                y
             | 
            
                  ndarray
             | 
            
               The target values to be used in parameter estimation.  | 
            required | 
                symbol_library
             | 
            
                  SymbolLibrary
             | 
            
               The symbol library to use. Defaults to SymbolLibrary.default_symbols().  | 
            
                  default_symbols()
             | 
          
Other Parameters:
| Name | Type | Description | 
|---|---|---|
method | 
            
                  str
             | 
            
               The method to be used for minimization. Currently, only "L-BFGS-B" is supported/tested. Default is "L-BFGS-B".  | 
          
tol | 
            
                  float
             | 
            
               The tolerance for termination. Default is 1e-6.  | 
          
gtol | 
            
                  float
             | 
            
               The tolerance for the gradient norm. Default is 1e-3.  | 
          
max_iter | 
            
                  int
             | 
            
               The maximum number of iterations. Default is 100.  | 
          
constant_bounds | 
            
                  Tuple[float, float]
             | 
            
               A tuple of two elements, specifying the lower and upper bounds for the constant values. Default is (-5, 5).  | 
          
initialization | 
            
                  str
             | 
            
               The method to use for initializing the constant values. Currently, only "random" and "mean" are supported. "random" creates a vector with random values sampled within the bounds. "mean" creates a vector where all values are calculated as (lower_bound + upper_bound)/2. Default is "random".  | 
          
max_constants | 
            
                  int
             | 
            
               The maximum number of constants allowed in the expression. Default is 8.  | 
          
max_expr_length | 
            
                  int
             | 
            
               The maximum length of the expression. Default is -1 (no limit).  | 
          
Functions:
| Name | Description | 
|---|---|
estimate_parameters | 
              
                 List[str]): Estimates the parameters of an expression by minimizing the error between the predicted and actual values.  | 
            
Source code in SRToolkit/evaluation/parameter_estimator.py
                    
            estimate_parameters
    Estimates the parameters of an expression by minimizing the error between the predicted and actual values.
Examples:
>>> X = np.array([[1, 2], [8, 4], [5, 4], [7, 9], ])
>>> y = np.array([3, 0, 3, 11])
>>> pe = ParameterEstimator(X, y)
>>> rmse, constants = pe.estimate_parameters(["C", "*", "X_1", "-", "X_0"])
>>> print(rmse < 1e-6)
True
>>> print(1.99 < constants[0] < 2.01)
True
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                expr
             | 
            
                  Union[List[str], Node]
             | 
            
               An expression. This should either be an instance of SRToolkit.utils.expression_tree.Node or a list of tokens in the infix notation representing the expression to be evaluated.  | 
            required | 
Returns:
| Type | Description | 
|---|---|
                  float
             | 
            
               the root mean square error (RMSE) of the optimized expression.  | 
          
                  ndarray
             | 
            
               An array containing the optimized constant values.  | 
          
Notes
if the length of the expression exceeds the maximum allowed, NaN and an empty array are returned. If the number of constants in the expression exceeds the maximum allowed, NaN and an empty array are returned. If there are no constants in the expression, the RMSE is calculated directly without optimization.