From 4b914e61b4392ca52f2a0be6659dbb07f8c61c30 Mon Sep 17 00:00:00 2001 From: Vincent Moens Date: Mon, 8 Jul 2024 10:28:05 +0100 Subject: [PATCH] Apply suggestions from code review --- sota-implementations/crossq/batchrenorm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sota-implementations/crossq/batchrenorm.py b/sota-implementations/crossq/batchrenorm.py index 81000b4fa7b..9d1a78d1135 100644 --- a/sota-implementations/crossq/batchrenorm.py +++ b/sota-implementations/crossq/batchrenorm.py @@ -37,7 +37,7 @@ def __init__( max_d=5.0, warmup_steps=10000, ): - super(BatchRenorm, self).__init__() + super().__init__() self.num_features = num_features self.eps = eps self.momentum = momentum