Skip to content

pkalivas/radiate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2,318 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Radiate

Radiate Logo

master branch checks Crates.io pypi.org Crates.io License Static badge

For more details check radiate's user guide or cargo docs.

Radiate is a powerful library for implementing genetic algorithms and artificial evolution techniques. It provides a fast and flexible framework for creating, evolving, and optimizing solutions to complex problems using principles inspired by natural selection and genetics. The core is written in Rust and is available for Python.

  • Traditional genetic algorithm implementation.
  • Single & Multi-objective optimization support.
  • Neuroevolution (graph-based representation - evolving neural networks) support. Simmilar to NEAT.
  • Genetic programming support (tree-based representation)
  • Built-in support for parallelism.
  • Extensive selection, crossover, and mutation operators.
  • Opt-in speciation for maintaining diversity.
  • Novelty search support.
  • First-class metric tracking.

Installation

Rust

Add this to your Cargo.toml:

[dependencies]
radiate = { version = "1.2.21", features = ["x"] }

Python

pip install radiate # --or-- uv add radiate

Building from source

git clone https://github.com/pkalivas/radiate.git
cd radiate

Radiate uses Just as a build tool, you can install it from here. The core build options are below, there are a few others that can be found through the just help command.

  • just develop faster build time for development with debug symbols and minimal optimizations.
  • just release slower build time for optimized runtime performance.

Both the above have an optional argument py to build the python package for a specific python version (e.g. just develop 3.12, just develop 3.13t for free-threading interpreter).

  • just test-rs to run tests for rust
  • just test-py to run tests for python package
  • just test to run tests for both.
  • just clean to nuke the build artifacts

Packages

 
 
 

Contributors