x-evolution
Project description
x-evolution
Implementation of various evolutionary algorithms, starting with evolutionary strategies
Install
$ pip install x-evolution
Usage
import torch
from x_evolution import EvoStrategy
# model
from torch import nn
model = torch.nn.Sequential(
nn.Linear(8, 16),
nn.ReLU(),
nn.Linear(16, 4)
)
# evolution wrapper
evo_strat = EvoStrategy(
model,
environment = lambda model: torch.randint(0, 100, ()), # environment is just a function that takes in the individual model (with unique noise) and outputs a scalar (the fitness) the measure you are selecting for
noise_population_size = 30,
num_generations = 100,
learning_rate = 1e-3,
noise_scale = 1e-3,
params_to_optimize = None # defaults to all parameters, but can be [str {param name}] or [Parameter]
)
# do evolution with your desired fitness function for so many generations
evo_strat()
# model will be saved under checkpoints/ folder
# can also specify checkpoint_every at init and select the one with your favored fitness score for continued policy gradient learning etc
Distributed
Using the CLI from 🤗
$ accelerate config
Then
$ accelerate launch train.py
Citations
@article{Qiu2025EvolutionSA,
title = {Evolution Strategies at Scale: LLM Fine-Tuning Beyond Reinforcement Learning},
author = {Xin Qiu and Yulu Gan and Conor F. Hayes and Qiyao Liang and Elliot Meyerson and Babak Hodjat and Risto Miikkulainen},
journal = {ArXiv},
year = {2025},
volume = {abs/2509.24372},
url = {https://api.semanticscholar.org/CorpusID:281674745}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
x_evolution-0.0.18.tar.gz
(8.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file x_evolution-0.0.18.tar.gz.
File metadata
- Download URL: x_evolution-0.0.18.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2ee80a583d642de46d11d1799637cabbb24cdc0d2761150a21ac1629849cfd0
|
|
| MD5 |
30d79145118db1edfac0b01aede352c6
|
|
| BLAKE2b-256 |
7d37c6e506913bcba0c369bf9b50d4df2883e89d467052963e88ebbf73be5043
|
File details
Details for the file x_evolution-0.0.18-py3-none-any.whl.
File metadata
- Download URL: x_evolution-0.0.18-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f35a1e2f7760d3b4a21b57800af4d32413663c072bf33e11997d078fbbd8772c
|
|
| MD5 |
d6bcf95cb60bb8804009b99663936238
|
|
| BLAKE2b-256 |
5a038749a6623818ce61289288ae862f5f363907b50c862a8e9322edf7c442a4
|