Alex Gisi
Results
1
comments of
Alex Gisi
Got an unexpected keyword argument 'use_sde' when passing behavioural cloning policy to PPO from SB3
For those who stumble across this issue, the `load_from_vector` method seems to work: ``` pretrained_policy = ActorCriticPolicy.load("/path/") model = PPO(ActorCriticPolicy, env) model.policy.load_from_vector(pretrained_policy.parameters_to_vector()) model.learn(total_timesteps=100_000, reset_num_timesteps=False) ```