From 0b4956873c9898bc34455b7764a447e752ef0b37 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Mon, 1 Apr 2024 00:35:28 +0200 Subject: [PATCH] Fixed README (command for full cov) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09be3be..6f72f33 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ We therefore pass `use_pca=True` and `policy_kwargs.dist_kwargs = {'Base_Noise': ```python # We support PPO and TRPL, (SAC is untested, we are open to PRs fixing issues) -model = TRPL("MlpPolicy", env_id, n_steps=128, seed=0, policy_kwargs=dict(net_arch=[16], ), projection_class=projection, verbose=1) +model = TRPL("MlpPolicy", env_id, n_steps=128, seed=0, use_pca=True, policy_kwargs=dict(net_arch=[16], dist_kwargs={'par_strengt h': 'FULL', 'skip_conditioning': True}), projection_class=projection, verbose=1) model.learn(total_timesteps=100) ```