Skip to content

Commit 0fa80e4

Browse files
committed
0.1.3
1 parent b251e83 commit 0fa80e4

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sinflow"
7-
version = "0.1.2"
7+
version = "0.1.3"
88
description = "Sliced Iterative Normalizing Flow"
99
readme = "README.md"
1010
requires-python = ">=3.8"

src/sinflow/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.1.2"
1+
version = "0.1.3"

src/sinflow/mrqs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ def inverse(self, y):
222222
x_within = x_m + delta_x * xi
223223
x[within] = x_within
224224

225-
if np.any(np.isnan(x)):
226-
raise ValueError("NaN encountered in inverse transformation.")
225+
#if np.any(np.isnan(x)):
226+
# raise ValueError("NaN encountered in inverse transformation.")
227227

228228
# Compute dy/dx at the computed x to obtain dx/dy
229229
dy_dx_at_x = self.derivative(x_within)

0 commit comments

Comments
 (0)