From eccdc55fdd217103f4292ceadc5a2f7ba0561777 Mon Sep 17 00:00:00 2001 From: Antonin RAFFIN Date: Tue, 8 Dec 2020 18:03:56 +0100 Subject: [PATCH] Add missing param to docstring --- sb3_contrib/tqc/tqc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sb3_contrib/tqc/tqc.py b/sb3_contrib/tqc/tqc.py index 5ef9f10..d6d1de9 100644 --- a/sb3_contrib/tqc/tqc.py +++ b/sb3_contrib/tqc/tqc.py @@ -44,6 +44,7 @@ class TQC(OffPolicyAlgorithm): :param target_update_interval: update the target network every ``target_network_update_freq`` gradient steps. :param target_entropy: target entropy when learning ``ent_coef`` (``ent_coef = 'auto'``) + :param top_quantiles_to_drop_per_net: Number of quantiles to drop per network :param use_sde: Whether to use generalized State Dependent Exploration (gSDE) instead of action noise exploration (default: False) :param sde_sample_freq: Sample a new noise matrix every n steps when using gSDE