From e0c22c286638ed40d9a9576128c1407517efa8ca Mon Sep 17 00:00:00 2001 From: Felix Koehler Date: Tue, 9 Apr 2024 07:55:52 +0200 Subject: [PATCH] Fix the defaults to truly be KS --- exponax/normalized/_gradient_norm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exponax/normalized/_gradient_norm.py b/exponax/normalized/_gradient_norm.py index dee5c72..57cce23 100644 --- a/exponax/normalized/_gradient_norm.py +++ b/exponax/normalized/_gradient_norm.py @@ -84,7 +84,7 @@ def __init__( num_spatial_dims: int = 1, num_points: int = 48, *, - linear_difficulties: tuple[float, ...] = (0.0, 0.0, -0.064, 0.0, -0.04096), + linear_difficulties: tuple[float, ...] = (0.0, 0.0, -0.128, 0.0, -0.32768), gradient_norm_difficulty: float = 0.064, maximum_absolute: float = 1.0, order: int = 2,