Use ncps.wirings to define neural circuit architectures
masterThe ncps.wirings module provides classes to define the structural connectivity (wirings) of Neural Circuit Policies (NCPs). These classes allow you to specify how neurons are connected, which is a core component of building NCP models in both PyTorch and TensorFlow.
Available wiring classes include:
Wiring: The base class for defining connectivity.AutoNCP: Automatically generates a wiring based on specific parameters.NCP: A standard wiring implementation.FullyConnected: Defines a wiring where every neuron in one layer connects to every neuron in the next.Random: Defines a wiring with random connectivity patterns.