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