New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

multineat

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multineat

  • 0.12
  • PyPI
  • Socket score

Maintainers
2

About MultiNEAT

This is a fork of the original multineat library.

MultiNEAT is a portable software library for performing neuroevolution, a form of machine learning that trains neural networks with a genetic algorithm. It is based on NEAT, an advanced method for evolving neural networks through complexification. The neural networks in NEAT begin evolution with very simple genomes which grow over successive generations. The individuals in the evolving population are grouped by similarity into species, and each of them can compete only with the individuals in the same species.

The combined effect of speciation, starting from the simplest initial structure and the correct matching of the genomes through marking genes with historical markings yields an algorithm which is proven to be very effective in many domains and benchmarks against other methods.

NEAT was developed around 2002 by Kenneth Stanley in the University of Texas at Austin.

License

GNU Lesser General Public License v3.0

Documentation

http://multineat.com/docs.html

Building and installation instructions

To install as a python library

pip install .

To install as a cpp library

mkdir build && cd build
cmake ..
make -j4
(sudo) make install

Installing options:

  • if you want to install the release version without debugging symbols, add this option to the cmake command:

    cmake .. -DCMAKE_BUILD_TYPE=Release
    
  • if you want to install the multineat in a different folder, add this option to the cmake command:

    cmake .. -CMAKE_INSTALL_PREFIX=/path/to/install/folder/
    

These options may be combined togheter

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc