N3PDF / evolutionary_keras

An evolutionary algorithm implementation for Keras
GNU General Public License v3.0
10 stars 7 forks source link
evolutionary-algorithm genetic-algorithm keras machine-learning open-source python tensorflow

DOI Documentation Status Anaconda-Server Badge

evolutionary_keras

Keras is one of the most widely used Machine Learning frameworks available in the market. It is a high-level API written in Python and that can run on mulitple backends. Their goal is to be able to build and test new model as fast as possible.

Keras models are trained through the usage of optimizers, all of which are Gradient Descent based. This module deals with that shortcoming of Keras by implementing several Evolutionary Algorithms on top of Keras while keeping the main philosophy of the project: it must be easy to prototype.

The default project library now provides support for:

Installation

evolutionary_keras is available to install from pip and conda using the following commands:

    pip install evolutionary-keras
    conda install evolutionary_keras -c conda-forge

After which it can readily be imported in your python project

    import evolutionary_keras