description: build small network example in python
initial a network
1 | def initialize_network(n_inputs, n_hidden, n_outputs): |
test network
1 | seed(1) |
output
1 | [{'weights': [0.13436424411240122, 0.8474337369372327, 0.763774618976614]}] |
description: build small network example in python
1 | def initialize_network(n_inputs, n_hidden, n_outputs): |
1 | seed(1) |
1 | [{'weights': [0.13436424411240122, 0.8474337369372327, 0.763774618976614]}] |