Metadata-Version: 2.1
Name: pyshgp
Version: 0.1.1
Summary: Push Genetic Programming in Python
Home-page: https://github.com/erp12/pyshgp
Author: Eddie Pantridge
Author-email: erp12@hampshire.edu
License: LGPL
Description: # PyghGP
        
        Push Genetic Programming in Python
        
        ## Motivation
        
        ### What is PushGP?
        
        Push is programming language that plays nice with evolutionary computing / genetic programming. It is a stack-based language that features 1 stack per data type, including code. Programs are represented by lists of instructions, which modify the values on the stacks. Instructions are executed in order.
        
        More information about PushGP can be found on the [Push Redux](https://erp12.github.io/push-redux/) the [Push Homepage](http://faculty.hampshire.edu/lspector/push.html) and the [Push Language Discourse](https://Push-language.hampshire.edu).
        
        ### Why use PushGP?
        
        PushGP is a leading software synthesis (some called "programming by example") system. It utilized stochastic (typically evolutionary) search methods to produce programs that are capable of manipulating all the common data types, control structures, and data structures. It is easily extendable to specific use cases and has seen impressive human-competitive coding results. PushGP has [discovered novel quantum computer programs](http://faculty.hampshire.edu/lspector/aqcp/) previously unknown to human programers, and has achieved human competitive results in [finding algebraic terms in the study of finite algebras](http://www.cs.bham.ac.uk/~wbl/biblio/gecco2008/docs/p1291.pdf).
        
        In contrast to the majority of other ML/AI methods, PushGP does not require the transformation of data into numeric structures. PushGP does optimize a set of parameters using a gradient, but rather attempts to intelligently search the space of Push programs. The result is a system where the primary output is a program written in the Turing complete Push language.
        
        PushGP has proven itself to be one of the most power "general program synthesis" frameworks. Like most evolutionary search frameworks, it usually requires an extremely high runtime, however it can solve problems that no other programming-by-example system can solve.
        
        Additional references on the successes of PushGP:
        
        - [On the difficulty of benchmarking inductive program synthesis methods](https://dl.acm.org/citation.cfm?id=3082533)
        - [General Program Synthesis Benchmark Suite](https://dl.acm.org/citation.cfm?id=2754769)
        - [The Push3 execution stack and the evolution of control](https://dl.acm.org/citation.cfm?id=1068292)
        
        ### Goals of `pyshgp`.
        
        Previous PushGP frameworks have focused on supporting genetic programming and software synthesis research. One of the leading PushGP projects is [Clojush](https://github.com/lspector/Clojush), which is written in Clojure and heavily focused on the experimentation needed to further the research field.
        
        `Pyshgp` aims to bring PushGP to a wider range of users and use cases. Many popular ML/AI frameworks are written in Python, and with `pyshgp` it is much easier to compare PushGP with other methods or build ML pipelines that contain PushGP and other models together.
        
        Although PushGP is constantly changing through research and publication, `pyshgp` is meant to be a slowly changing, more stable, PushGP framework. It is still possible to use `pyshgp` for research and development, however accepted contributions to the main repository will be extensively benchmarked, tested, and documented.
        
        ##  Installing pyshgp
        
        `pyshgp` is compatible with python 3.5 and up.
        
        ### Install from pip
        
        Coming with initial first release of `pyshgp`.
        Check the project milestones to get a sense of how far off this is.
        
        ### Build Frome source
        
        - Clone the repo
        - cd into the `pyshgp` repo directory
        - run `pip install . --upgrade`
        - Thats it! Check out the examples and
        
        ## Documentation
        
        ### Example Usage
        
        Example usages of `pyshgp` can be found in the `examples/` [folder of the Github repository](https://github.com/erp12/pyshgp/tree/master/examples).
        
        ### API
        
        The full `pyshgp` API can be found on [official website](http://erp12.github.io/pyshgp).
        
        ## Pysh Roadmap / Contributing
        
        PyshGP isn't quite ready for its 1.0 release. It still has a few key features that need implementing. More details can be found in `ROADMAPS.md` and in the projects tab on Github.
        
        For information about contributing, see the [Contributing Guide](http://erp12.github.io/pyshgp/html/contributing.html).
        
Keywords: push gp,genetic programming,pushgp,gp,push
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Description-Content-Type: text/markdown
