MCPcopy Index your code
hub / github.com/lazyprogrammer/machine_learning_examples / create_networks

Function create_networks

rl2/a3c/nets.py:119–122  ·  view source on GitHub ↗
(num_outputs)

Source from the content-addressed store, hash-verified

117# Should use this to create networks
118# to ensure they're created in the correct order
119def create_networks(num_outputs):
120 policy_network = PolicyNetwork(num_outputs=num_outputs)
121 value_network = ValueNetwork()
122 return policy_network, value_network

Callers 2

main.pyFile · 0.90
__init__Method · 0.90

Calls 2

PolicyNetworkClass · 0.85
ValueNetworkClass · 0.85

Tested by

no test coverage detected