symbolic-regression-with-genetic-programming
v1.0.1
Published
Symbolic Regression with Genetic Programming is a Python class that performs symbolic regression using genetic programming techniques. It allows users to discover mathematical expressions that best fit the given data, without making any assumptions about
Downloads
5
Readme
Symbolic Regression with Genetic Programming
Symbolic Regression with Genetic Programming is a Python class that performs symbolic regression using genetic programming techniques. It allows users to discover mathematical expressions that best fit the given data, without making any assumptions about the form of the underlying function.
Usage:
- Initialize the GeneticProgramming object with the desired parameters.
- Fit the model to the data using the
fit
method. - Predict target values for new data points using the
predict
method.
Features:
- Automatically discovers mathematical expressions from data using genetic programming.
- Supports customization of population size, number of generations, and other parameters.
- Provides interpretable solutions in the form of symbolic expressions.
Requirements:
- Python 3.x
- NumPy
- SymPy