Compare commits
3 Commits
bruhn_b-pa
...
0.0.5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c611a818b6 | ||
|
|
e4c6c1ea29 | ||
| 7b34181d75 |
@@ -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",
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user