describe_network

Provide a description of the currently loaded network

# Examples

# Sample response

{
    "inputs": 4,
    "layers": [
        { "activation": "Tanh", "inputs": 4, "outputs": 16 },
        { "activation": "Tanh", "inputs": 16, "outputs": 16 },
        { "activation": "Linear", "inputs": 16, "outputs": 2 }
    ],
    "num_input_channels": 4,
    "num_output_channels": 2,
    "outputs": 2
}
1
2
3
4
5
6
7
8
9
10
11