3 Commits

Author SHA1 Message Date
Jakob Lass
c611a818b6 Bump version
Some checks failed
Gitea Actions Demo / build_test (3.12.10) (push) Successful in 18s
Gitea Actions Demo / build_test (3.13.3) (push) Successful in 18s
Gitea Actions Demo / build_test (3.10.17) (push) Failing after 41s
Gitea Actions Demo / build_test (3.9.22) (push) Failing after 31s
Gitea Actions Demo / build_test (3.11.12) (push) Successful in 41s
Release workflow / single_test (3.13.3) (release) Successful in 13s
Release workflow / Build wheels for PyPI (3.13.3) (release) Successful in 15s
2025-07-14 13:07:24 +02:00
Jakob Lass
e4c6c1ea29 Correct convergence test 2025-07-14 13:07:04 +02:00
7b34181d75 Merge pull request 'Update .gitea/workflows/test.yaml' (#1) from bruhn_b-patch-1 into main
All checks were successful
Gitea Actions Demo / build_test (3.11.12) (push) Successful in 2m12s
Gitea Actions Demo / build_test (3.13.3) (push) Successful in 2m12s
Gitea Actions Demo / build_test (3.10.17) (push) Successful in 2m26s
Gitea Actions Demo / build_test (3.9.22) (push) Successful in 2m18s
Gitea Actions Demo / build_test (3.12.10) (push) Successful in 2m30s
Reviewed-on: #1
2025-07-04 09:19:08 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ package-dir = {"" = "src"}
[project]
name = "AMBER-ds4ms"
version = "0.0.4"
version = "0.0.5"
dependencies = [
"numpy>=1.14",
"scipy>=1.7",

View File

@@ -9,7 +9,7 @@
project = 'AMBER'
copyright = '2025, J. Lass, V. Cohen, B. B. Haro, & D. G. Mazzone'
author = 'J. Lass, V. Cohen, B. B. Haro, & D. G. Mazzone'
release = '0.0.4'
release = '0.0.5'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

View File

@@ -617,7 +617,7 @@ class background():
new_loss = 1000000
k = 0
while (np.abs(old_loss - new_loss) > 1e-3) and (k < n_epochs):
while (old_loss - new_loss > 1e-3) and (k < n_epochs):
# Compute A = Y - B by filling the nans with 0s
A = np.where(np.isnan(Y_r - b_tmp) == True, 0.0, Y_r - b_tmp)