Skip to main content

A package for solution-guided machine learning method

Project description



Welcome to use SGML!




1 Introduction

Solution-guided machine learning (SGML) is a universal approach designed to enhance the extrapolation capabilities of AI models, as detailed in the paper [Thin-Walled Struct. 200 (2024) 111984]. To simplify the integration of this method into diverse projects, we have encapsulated it within a user-friendly Python package. By leveraging the functions provided in the package, users can effortlessly apply the SGML method to enhance the extrapolation capabilities of their AI models.

The current version of the package incorporates various regression models, including implementations for Artificial Neural Network, Support Vector Regression, AdaBoost Regression, Bayesian Ridge Regression, and Ridge Regression models. It's worth noting that we are actively working to expand the package's capabilities, and future releases will introduce additional models to further enhance its universality and applicability to a broader range of AI projects.



2 Preparation

  • The functionality of this package depends on the following external libraries:

        pandas      NumPy      Matplotlib      joblib      tqdm      PyTorch      scikit_learn

  • You can easily install SGML using the following command:

    pip install SGML

  • The required project data is in .csv format, displayed in the table below, with the column index encompassing the features and labels necessary for machine learning.

    ID x1 x2 ... y
    1 ... ... ... ...
    2 ... ... ... ...
    ... ... ... ... ...


3 API

[!IMPORTANT]

  • The solution function will be returned with the data type of a function for the given solution. Users can assign it a name for subsequent guidance in machine learning.

  • When the parameters are set to 'default' or left unspecified, the default values for those parameters will be applied.

  • Once you have defined your chosen model, remember to utilize additional modules for training and further analysis.


3.1 Solution Function

def SGML.create_solution_function(

expression = str,

variables = list

)

return function

[!TIP] expression : Solution expression, such as 'a**3+2*b+1'.

variables : List of variables included in the solution, such as ['a', 'b'].


3.2 Artificial Neural Network-based Model

class SGML.ann(

train_path = str,

test_path = str,

feature_names = list,

lable_names = list,

solution_functions = list,

model_loadpath = str,

model_savepath = str,

hidden_layers = list,

activation_function = object,

batch_size = int,

criterion = object,

optimizer = object,

learning_rate = float,

epochs = int

)

[!TIP] train_path : The file path for loading the training set.

test_path : The file path for loading the testing set.

feature_names : List containing feature names, such as ['x1', 'x2', ...].

lable_names : List containing label names, such as ['y'].

solution_functions : List containing solution function names, such as [solution1, solution2, ...]. default=None

model_loadpath : The file path for the existing model. default=None

model_savepath : Path to save the model. default=None

hidden_layers : The hidden layer architecture, denoted as [4, 8, 2], signifies the presence of three hidden layers with node counts of 4, 8, and 2, respectively. default=[8, 8]

activation_function : The activation function--refer to PyTorch Documentation for details. default=torch.nn.PReLU()

batch_size : The number of training samples used by the model during each parameter update. default=Total number of samples

criterion : The loss function--refer to PyTorch Documentation for details. default=torch.nn.MSELoss()

optimizer : The optimizer--refer to PyTorch Documentation for details. default=torch.optim.Adam()

learning_rate : default=0.01

epochs : default=5000


3.3 Support Vector Regression-based Model

class SGML.svr(

train_path = str,

test_path = str,

feature_names = list,

lable_names = list,

solution_functions = list,

model_loadpath = str,

model_savepath = str,

kernel = str,

degree = int,

gamma = str or float,

coef0 = float,

tol = float,

C = float,

epsilon = float,

shrinking = bool,

cache_size = float,

verbose = bool,

max_iter = int

)

[!TIP] The API reference for the parameters train_path, test_path, feature_names, lable_names, solution_functions, model_loadpath, and model_savepath can be found in Section 3.2.

kernel : Refer to sklearn.svm.SVR for detailed information, and the same applies to the following parameters. default='linear'

degree : default=3

gamma : default='scale'

coef0 : default=0.0

tol : default=1e-3

C : default=1.0

epsilon : default=0.1

shrinking : default=True

cache_size : default=200

verbose : default=False

max_iter : default=-1


3.4 AdaBoost Regressor-based Model

class SGML.adaboost(

train_path = str,

test_path = str,

feature_names = list,

lable_names = list,

solution_functions = list,

model_loadpath = str,

model_savepath = str,

estimator = object,

n_estimators = int,

learning_rate = float,

loss = str,

random_state = int

)

[!TIP] The API reference for the parameters train_path, test_path, feature_names, lable_names, solution_functions, model_loadpath, and model_savepath can be found in Section 3.2.

estimator : Refer to sklearn.ensemble.AdaBoostRegressor for detailed information, and the same applies to the following parameters. default=LinearRegression()

n_estimators : default=50

learning_rate : default=1.0

loss : default='linear'

random_state : default=None


3.5 BayesianRidge Regressor-based Model

class SGML.bayesianridge(

train_path = str,

test_path = str,

feature_names = list,

lable_names = list,

solution_functions = list,

model_loadpath = str,

model_savepath = str,

max_iter = int,

tol = float,

alpha_1 = float,

alpha_2 = float,

lambda_1 = float,

lambda_2 = float,

alpha_init = float,

lambda_init = float,

compute_score = bool,

fit_intercept = bool,

copy_X = bool,

verbose = bool

)

[!TIP] The API reference for the parameters train_path, test_path, feature_names, lable_names, solution_functions, model_loadpath, and model_savepath can be found in Section 3.2.

max_iter : Refer to sklearn.linear_model.BayesianRidge for detailed information, and the same applies to the following parameters. default=None

tol : default=1e-3

alpha_1 : default=1e-6

alpha_2 : default=1e-6

lambda_1 : default=1e-6

lambda_2 : default=1e-6

alpha_init : default=None

lambda_init : default=None

compute_score : default=False

fit_intercept : default=True

copy_X : default=True

verbose : default=False


3.6 Ridge Regressor-based Model

class SGML.ridge(

train_path = str,

test_path = str,

feature_names = list,

lable_names = list,

solution_functions = list,

model_loadpath = str,

model_savepath = str,

alpha = float,

fit_intercept = bool,

copy_X = str or bool,

max_iter = int,

tol = float,

solver = str,

positive = bool,

random_state = int

)

[!TIP] The API reference for the parameters train_path, test_path, feature_names, lable_names, solution_functions, model_loadpath, and model_savepath can be found in Section 3.2.

alpha : Refer to sklearn.linear_model.Ridge for detailed information, and the same applies to the following parameters. default=1.0

fit_intercept : default=True

copy_X : default=True

max_iter : default=None

tol : default=1e-4

solver : default='auto'

positive : default=False

random_state : default=None


3.7 Other Modules

3.7.1 Training Module

def self.train()

[!TIP] The training module, which has no return value, will train the defined model upon being called.

3.7.2 Prediction Module

def self.predict()

return ndarray

[!TIP] The prediction module employs the trained model and the supplied data to generate predictions.

3.7.3 Testing Module

def self.test()

return ndarray

[!TIP] The testing module can extract test data from the provided dataset for comparison with the model's predicted results.

3.7.4 Visualization Module

def self.plot_results(ndarray, ndarray)

[!TIP] The visualization module will display the test data on the horizontal axis and the prediction results on the vertical axis.



4 Example

See GitHub for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

SGML-2.0.1.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

SGML-2.0.1-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file SGML-2.0.1.tar.gz.

File metadata

  • Download URL: SGML-2.0.1.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.12

File hashes

Hashes for SGML-2.0.1.tar.gz
Algorithm Hash digest
SHA256 70b72ec7b135187a2d9e2b0c93309c232b7c97cfb5f6762a9eb22e1c0ca9a5c6
MD5 90e688544d98fe8ff64d52c17edd3b93
BLAKE2b-256 e1eff45fec3227eddc01982cb18e3f7c789459428a5d127fb6ca3c99f0ab75e3

See more details on using hashes here.

File details

Details for the file SGML-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: SGML-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.12

File hashes

Hashes for SGML-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 572cc725b102cf5d28a0e88d6fe50259a2d63a71a236f051e7e35f1896bdcaa7
MD5 972cd598db670e7225c7354085cb1623
BLAKE2b-256 4c9ebe19e5ddb7857c95ba1a4b324e08fb6972ad440620c19a798e149efa3cbc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page