1
Fork 0
This repository has been archived on 2026-08-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2026SEL3-project-Brittle_St.../configs/architecture/decentralized.yaml
2026-04-14 22:12:02 +02:00

31 lines
703 B
YAML

# Decentralized Actor Architecture (NerveNet-MLP variant)
# Multi-agent/distributed configuration using local sensors, propagators, and motors.
# Default values are defined in DecentralizedConfig dataclass.
# Use this configuration for decentralized execution experiments.
sensor:
hidden_dims: [64, 64]
activation: "tanh"
propagator:
hidden_dims: [64, 64]
activation: "tanh"
motor:
hidden_dims: []
activation: "tanh"
feature_extractor:
hidden_dims: [64, 64]
activation: "tanh"
critic:
hidden_dims: []
activation: "tanh"
# Synchronous message-passing rounds per control step
message_passing_steps: 1
# Connectivity topology (e.g., ring, fully_connected)
topology_type: "ring"