Python genetic algorithm package
Project description
pystrand
Quickstart
In order to define a genetic algorithm you only need to determine how should genotypes, or candidate solutions, look and which operators should apply to them.
The rest is simply matter of providing training data.
In our case the data was generated by function f(x) = 5 + 5x + 2x^2.
>>>x = [i for i in range(10)]
>>>y = [5 + (5*i) +(2*(i**2)) for i in x]
After importing the model class we define which values can genes take.
>>>from pystrand.models.polymodels import PowerPolyModel
>>>domain = [i/10 for i in range(-100, 100)]
At the model initialization we can provide constraints on operator behavior, population size and maximum allowed runtime. This is particulary useful if we are looking for approximate solution.
>>> model = PowerPolyModel(domain, population_size=500, max_iterations=1000, crossover_prob=0.5)
We can also initialize the model with no constraints on the behavior of the algorithm, which will set parameters to pre-determined defaults. The only required parameter is the domain of gene values.
>>> model = PowerPolyModel(domain)
Model is then fitted on provided data.
>>>model.fit(x, y, verbose=0)
>>>model.solution
... (1., Genotype([5., 5., 2., 0., 0., 0., 0., 0., 0., 0.]))
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
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 pystrand-0.1.1.tar.gz.
File metadata
- Download URL: pystrand-0.1.1.tar.gz
- Upload date:
- Size: 14.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.6 Linux/5.15.0-52-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb5cde39141446dd8045741357fda872ecf005d3541b111007a52c2f0773704c
|
|
| MD5 |
2e54580b5405103c937e1714a91e73b4
|
|
| BLAKE2b-256 |
90fc1374875338e828505c34fd41a5501cfd4468cc193e954b25f76afe706731
|
File details
Details for the file pystrand-0.1.1-py3-none-any.whl.
File metadata
- Download URL: pystrand-0.1.1-py3-none-any.whl
- Upload date:
- Size: 17.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.6 Linux/5.15.0-52-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfd701d27840c3effda2fcce9b7851d1bd08a3f56870fed59db1a39696ac93ef
|
|
| MD5 |
27deb4112c8be1843f24fa0f99c4e5e6
|
|
| BLAKE2b-256 |
38d4cbaae0cc2687a5fe6b80ee82fddd8b8ac6bf1496f51e6c82eb5ebde7d778
|