Hello!
I would like to clone my network at every x-iteration. This is being done in python with the following code: target_net.load_state_dict(policy_net.state_dict()) however, these functions do not seem to exist in C++?
Maybe I should have been more clear, both models are in C++. I do not have a model in python. That code-snippet is from Reinforcement Learning (DQN) Tutorial. and I would like to do the equivalent in C++