Worst

class Worst(num_batches=None, batch_size=1, duplicate_molecules=True, duplicate_batches=True, key_maker=Inchi(), fitness_modifier=None)[source]

Bases: Selector

Selects batches of molecules, lowest fitness value first.

Examples

Yielding Batches Holding Multiple Molecules

Select the worst 5 batches of size 3

import stk

worst = stk.Worst(num_batches=5, batch_size=3)
population = tuple(
    stk.MoleculeRecord(
        topology_graph=stk.polymer.Linear(
            building_blocks=(
                stk.BuildingBlock(
                    smiles='BrCCBr',
                    functional_groups=[stk.BromoFactory()],
                ),
            ),
            repeating_unit='A',
            num_repeating_units=2,
        ),
    ).with_fitness_value(i)
    for i in range(10)
)
for batch in worst.select(population):
    # Do stuff with batch.
    pass

Methods

select(population[, included_batches, ...])

Yield batches of molecule records from population.

__init__(num_batches=None, batch_size=1, duplicate_molecules=True, duplicate_batches=True, key_maker=Inchi(), fitness_modifier=None)[source]

Initialize a Worst instance.

Parameters:
  • num_batches (int, optional) – The number of batches to yield. If None then yielding will continue forever or until the generator is exhausted, whichever comes first.

  • batch_size (int, optional) – The number of molecules yielded at once.

  • duplicate_molecules (bool, optional) – If True the same molecule can be yielded in more than one batch.

  • duplicate_batches (bool, optional) – If True the same batch can be yielded more than once. Duplicate batches can occur if the same molecule is found multiple times in a population.

  • key_maker (MoleculeKeyMaker, optional) – Used to get the keys of molecules, which are used to determine if two molecules are duplicates of each other.

  • fitness_modifier (callable, optional) – Takes the population on which select() is called and returns a dict, which maps records in the population to the fitness values the Selector should use. If None, the regular fitness values of the records are used.

select(population, included_batches=None, excluded_batches=None)

Yield batches of molecule records from population.

Parameters:
  • population (tuple of MoleculeRecord) – A collection of molecules from which batches are selected.

  • included_batches (set, optional) – The identity keys of batches which are allowed to be yielded, if None all batches can be yielded. If not None only batches included_batches will be yielded.

  • excluded_batches (class:set, optional) – The identity keys of batches which are not allowed to be yielded. If None, no batch is forbidden from being yielded.

Yields:

Batch of MoleculeRecord – A batch of selected molecule records.