Skip to content
This repository was archived by the owner on Jan 27, 2025. It is now read-only.

Commit 44a7bbd

Browse files
committed
fix: remove multiplication by π in bounds definition
1 parent 73f6706 commit 44a7bbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/eddymotion/model/gpr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
from sklearn.metrics.pairwise import cosine_similarity
3939
from sklearn.utils._param_validation import Interval, StrOptions
4040

41-
BOUNDS_A: tuple[float, float] = (0.1, 0.75 * np.pi)
42-
"""The limits for the parameter *a* (angular distance)."""
41+
BOUNDS_A: tuple[float, float] = (0.1, 2.35)
42+
"""The limits for the parameter *a* (angular distance in rad)."""
4343
BOUNDS_LAMBDA: tuple[float, float] = (1e-3, 1000)
4444
"""The limits for the parameter λ (signal scaling factor)."""
4545
THETA_EPSILON: float = 1e-5

0 commit comments

Comments
 (0)