https://github.com/amstuta/genepy
Genetic programming library using tree representation for individuals
https://github.com/amstuta/genepy
artificial-intelligence genetic-programming genetic-programming-algorithm machine-learning python-library tree-representation
Last synced: about 1 month ago
JSON representation
Genetic programming library using tree representation for individuals
- Host: GitHub
- URL: https://github.com/amstuta/genepy
- Owner: amstuta
- License: mit
- Created: 2017-05-28T16:35:35.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-07T16:01:03.000Z (almost 8 years ago)
- Last Synced: 2025-03-05T11:51:21.255Z (3 months ago)
- Topics: artificial-intelligence, genetic-programming, genetic-programming-algorithm, machine-learning, python-library, tree-representation
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Genepy \- A simple genetic programming library
[](https://github.com/amstuta/genepy/blob/master/LICENSE.md)
Genepy is a high-level library implementing a
genetic programming algorithm using a tree representation for individuals. It
is compatible with Python 2.7 and all the following versions and uses only the
standard library (no dependencies).It can be used to solve linear and nonlinear regression problems and is
usable through a simple interface:
- A fit function that takes as inputs the training examples, target values and the number of iterations
- A predict function that takes as parameter an input for predictionAn example of usage can be found in the example.py script. This example requires to
have the libraries numpy and matplotlib installed.### Installation
The package can be installed simply using Pypi:
```sh
pip install genepy
```### Usage
To use it, you need to give the algorithm:
- A fitness function that takes as parameters:
- An instance of the class Tree
- The training examples: array-like object of shape [n_samples, n_features]
- The target values: array-like object of shape [n_samples]
- The function set that can be used in the treeBasic example:
```python
from operator import add, sub, mul
from genepy.core import EvolutionaryAlgorithm# Load your dataset
train_features, train_targets = ...
test_features, test_targets = ...# Define a fitness function
def compute_fitness(tree, features, targets):
...
return fitness# Define the parameters of the algorithm
parameters = {
'min_depth': 2,
'max_depth': 5,
'nb_trees': 50,
'max_const': 100,
'func_ratio': 0.5,
'var_ratio': 0.5,
'crossover_prob': 0.8,
'mutation_prob': 0.2,
'iterations': 80,
'functions': [add,sub,mul],
'fitness_function': compute_fitness
}# Create object and train algorithm
ea = EvolutionaryAlgorithm(**parameters)
ea.fit(train_features, train_targets)# Make a prediction
predicted = ea.predict(test_features[0])
```