Glossary ========= .. default-role:: any .. glossary:: :sorted: attributes These are the properties of a :term:`node` (such as its :term:`activation function`) or :term:`connection` (such as whether it is :term:`enabled` or not) determined by its associated :term:`gene` (in the default implementation, in the :py:mod:`attributes` module in combination with the gene class). activation function aggregation function bias response These are the :term:`attributes` of a :term:`node`. They determine the output of a node as follows: :math:`\begin{equation}\operatorname{activation}(bias + (response * \operatorname{aggregation}(inputs)))\end{equation}` For available activation functions, see :ref:`activation-functions-label`; for adding new ones, see :ref:`customization-label`. For the available aggregation functions, see the :py:mod:`aggregations module `. node Also known as a neuron (as in a *neural* network). They are of three types: :term:`input `, :term:`hidden `, and :term:`output `. Nodes have one or more :term:`attributes`, such as an :term:`activation function`; all are determined by their :term:`gene`. Classes of node genes include :py:class:`genes.DefaultNodeGene` and :py:class:`iznn.IZNodeGene`. (They should not be confused with :term:`compute nodes `, host machines on which :py:mod:`distributed` evaluations of :term:`genomes ` are performed.) input node These are the :term:`nodes ` through which the network receives inputs. They cannot be deleted (although :term:`connections ` from them can be), cannot be the output end of a :term:`connection`, and have: no :term:`aggregation function`; a fixed :term:`bias` of 0; a fixed :term:`response` multiplier of 1; and a fixed :term:`activation function` of :ref:`identity `. Note: In the :py:mod:`genome` module, they are not in many respects treated as actual nodes, but simply as :term:`keys ` for input ends of connections. Sometimes known as an input :term:`pin`. hidden node These are the :term:`nodes ` other than :term:`input nodes ` and :term:`output nodes `. In the original NEAT (NeuroEvolution of Augmenting Topologies) :ref:`algorithm `, networks start with no hidden nodes, and evolve more complexity as necessary - thus "Augmenting Topologies". homologous Descended from a common ancestor; two genes in NEAT from different genomes are either homologous or :term:`disjoint`/excess. In NEAT, two genes that are homologous will have the same :term:`key`/id. For :term:`node` genes, the key is an :pytypes:`int ` incremented with each newly-created node; for :term:`connection` genes, the key is a `tuple` of the keys of the nodes being connected. For further discussion, see the :ref:`neat-overview-label`. disjoint excess These are genes in NEAT not descended from a common ancestor - i.e., not :term:`homologous`. This implementation of NEAT, like most, does not distinguish between disjoint and excess genes. For further discussion, see the :ref:`neat-overview-label`. output node These are the :term:`nodes ` to which the network delivers outputs. They cannot be deleted (although :term:`connections ` to them can be) but can otherwise be :term:`mutated ` normally. The output of this node is connected to the corresponding output :term:`pin` with an implicit :term:`weight`-1, :term:`enabled` connection. pin Point at which the network is effectively connected to the external world. Pins are either input (aka :term:`input nodes `) or output (connected to an :term:`output node` with the same :term:`key` as the output pin). weight enabled These are the :term:`attributes` of a :term:`connection`. If a connection is enabled, then the input to it (from a :term:`node`) is multiplied by the weight then sent to the output (to a node - possibly the same node, for a :term:`recurrent` neural network). If a connection is not enabled, then the output is 0; genes for such connections are the equivalent of `pseudogenes `_ that, as in `in vivo `_ evolution, can be reactivated at a later time. TODO: Some versions of NEAT give a chance, such as 25%, that a disabled connection will be enabled during :term:`crossover`; in the future, this should be an option. connection These connect between :term:`nodes `, and give rise to the *network* in the term ``neural network``. For non-loopback (directly :term:`recurrent`) connections, they are equivalent to biological synapses. Connections have two :term:`attributes`, their :term:`weight` and whether or not they are :term:`enabled`; both are determined by their :term:`gene`. An example gene class for connections can be seen in :py:class:`genes.DefaultConnectionGene`. feedforward feed-forward A neural network that is not :term:`recurrent` is feedforward - it has no loops. (Note that this means that it has no memory - no ability to take into account past events.) It can thus be described as a `DAG (Directed Acyclic Graph) `_. recurrent A recurrent neural network has cycles in its topography. These may be a :term:`node` having a :term:`connection` back to itself, with (for a :term:`discrete-time` neural network) the prior time period's output being provided to the node as one of its inputs. They may also have longer cycles, such as with output from node A going into node B (via a connection) and an output from node B going (via another connection) into node A. (This gives it a possibly-useful memory - an ability to take into account past events - unlike a :term:`feedforward` neural network; however, it also makes it harder to work with in some respects.) continuous-time discrete-time A discrete-time neural network (which should be assumed unless specified otherwise) proceeds in time steps, with processing at one :term:`node` followed by going through :term:`connections ` to other nodes followed by processing at those other nodes, eventually giving the output. A continuous-time neural network, such as the :doc:`ctrnn ` (continuous-time :term:`recurrent` neural network) implemented in NEAT-Python, simulates a continuous process via differential equations (or other methods). genome The set of :term:`genes ` that together code for a (neural network) phenotype. Example genome objects can be seen in :py:class:`genome.DefaultGenome` and :py:class:`iznn.IZGenome`, and the object interface is described in :ref:`genome-interface-label`. genomic distance An approximate measure of the difference between :term:`genomes `, used in dividing the population into :term:`species`. For further discussion, see the :ref:`neat-overview-label`. genetic distance The distance between two :term:`homologous` :term:`genes `, added up as part of the :term:`genomic distance`. Also sometimes used as a synonym for :term:`genomic distance`. gene The information coding (in the current implementation) for a particular aspect (:term:`node` or :term:`connection`) of a neural network phenotype. Contains several :term:`attributes`, varying depending on the type of gene. Example gene classes include :py:class:`genes.DefaultNodeGene`, :py:class:`genes.DefaultConnectionGene`, and :py:class:`iznn.IZNodeGene`; all of these are subclasses of :py:class:`genes.BaseGene`. species Subdivisions of the population into groups of similar (by the :term:`genomic distance` measure) individuals (:term:`genomes `), which compete among themselves but share fitness relative to the rest of the population. This is, among other things, a mechanism to try to avoid the quick elimination of high-potential topological mutants that have an initial poor fitness prior to smaller "tuning" changes. For further discussion, see the :ref:`neat-overview-label`. crossover The process in sexual reproduction in which two :term:`genomes ` are combined. This involves the combination of :term:`homologous` genes and the copying (from the highest-fitness genome) of :term:`disjoint/excess ` genes. Along with :term:`mutation`, one of the two sources of innovation in (classical) evolution. mutate mutation The process in which the :term:`attributes` of a :term:`gene` (or the genes in a :term:`genome`) are (randomly, with likelihoods determined by configuration parameters) altered. Along with :term:`crossover`, one of the two sources of innovation in (classical) evolution. id key Various of the objects used by the library are indexed by an key (id); for most, this is an :pytypes:`int `, which is either unique in the library as a whole (as with :term:`species` and :term:`genomes `), or within a genome (as with :term:`node` :term:`genes `). For :term:`connection` genes, this is a `tuple` of two :pytypes:`ints `, the keys of the connected nodes. For :term:`input nodes ` (or input :term:`pins `), it is the input's (list or tuple) index plus one, then multiplied by negative one; for :term:`output nodes `, it is equal to the output's (list or tuple) index. generation This implementation of NEAT uses, like most, multiple semi-separated generations (some genomes may survive multiple generations via :ref:`elitism `). In terms of generations, the steps are as follows: generate the next generation from the current population; partition the new generation into :term:`species` based on :term:`genetic similarity `; evaluate fitness of all genomes; check if a/the termination criterion is satisfied; if not, repeat. (The ordering in the :py:mod:`population` module is somewhat different.) Generations are numbered, and a limit on the number of generations is one type of termination criterion. compute node Using the :py:mod:`distributed` module, genomes can be evaluated on multiple machines (including virtual machines) at once. Each such machine/host is called a ``compute node``. These are of two types, :term:`primary nodes ` and :term:`secondary nodes `. primary node primary compute node If using the :py:mod:`distributed` module, you will need one primary :term:`compute node` and at least one :term:`secondary node`. The primary node creates and mutates genomes, then distributes them to the secondary nodes for evaluation. (It does not do any evaluations itself; thus, at least one secondary node is required.) secondary node secondary compute node If using the :py:mod:`distributed` module, you will need at least one secondary :term:`compute node`, as well as a :term:`primary node`. The secondary nodes evaluate genomes, distributed to them by the primary node. CPPN A Compositional Pattern-Producing Network. This is a neural network that, when fed inputs varying over a domain (such as the x and y axes of a potential image), produces outputs that, when mapped to the domain, give rise to patterns (such as shapes on such an image). One characteristic of CPPNs is the use of a wider variety of :term:`activation and/or aggregation functions `; for examples of the former, see :ref:`activation-functions-label`. The picture2d examples use CPPNs, as does :term:`HyperNEAT`. HyperNEAT A NEAT variant in which NEAT is used to evolve a :term:`CPPN`, which is fed the potential coordinates (in a multidimensional space - usually at least 4) of connections and nodes, and its output(s) are used to determine the characteristics and/or presence of the corresponding connections and nodes. The :term:`fitness` of the CPPN is not determined directly, but by the fitness of the network it creates. Work on enabling HyperNEAT in neat-python is ongoing. multiparameter Multiparameter :term:`activation and aggregation functions ` are ones in which, as well as the normal inputs, additional ones determined as :term:`attributes` to be evolved. The :py:mod:`multiparameter` module handles creating and fetching them, while existing ones can. be seen in the :py:mod:`activations` and :py:mod:`aggregations` modules (and further regarding the former in :ref:`activation-functions-label`). fitness The fitness of :term:`genomes ` is what determines the fitness of :term:`species`, which in turn determines the species' next-:term:`generation` sizes (and potential removal due to :term:`stagnation`). The fitness function is determined by the user of the library; a genome that better accomplishes the desired goal(s) should have a higher fitness than one that does not. Note that some portions of the current implementation, such as the :py:mod:`statistics` reporter and the `best_genome` attribute of :py:class:`population.Population`, assume that a genome's fitness is constant; appropriate modifications are needed if this is not true (e.g., novelty search or coevolution). For further information, see :ref:`neat-overview-label`. stagnation In NEAT, no matter what the :term:`fitness` of a :term:`species`, it will always have at least a (:ref:`configured ` - usually 2) minimum number of genomes. Poorly performing species (as opposed to genomes) are removed if they fail to improve in a (:ref:`configured `) number of generations; other configuration variables can be found in the config file's :ref:`stagnation-config-label`, and the default implementation in the :py:mod:`stagnation` module. :ref:`Table of Contents `