You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return values are expected in the form as multi_modal_network_fp gives them: (tf_model_example.py, line 268)
return nnet, fc_vars, last_conv_vars
However, the multi_modal_network in that same file uses a different expression: (line 166)
return TfMap.init_from_lists([nn_input, action, precision], [fc_output], [loss])
which makes policy_opt_tf raise the following error:
*** TypeError: iteration over non-sequence
Running Tensorflow 0.8.0 on Ubuntu 16.04
The text was updated successfully, but these errors were encountered:
In policy_opt_tf, around line 70:
return values are expected in the form as multi_modal_network_fp gives them: (tf_model_example.py, line 268)
However, the multi_modal_network in that same file uses a different expression: (line 166)
return TfMap.init_from_lists([nn_input, action, precision], [fc_output], [loss])
which makes policy_opt_tf raise the following error:
Running Tensorflow 0.8.0 on Ubuntu 16.04
The text was updated successfully, but these errors were encountered: