Skip to content

Commit

Permalink
Reduce LRS epsilon for lower reconstruction error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnabergoj committed Nov 14, 2023
1 parent fdd4390 commit fc490fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, event_shape: Union[torch.Size, Tuple[int, ...]], boundary: fl
self.min_bin_height = 1e-2
self.min_d = 1e-5
self.const = math.log(math.exp(1 - self.min_d) - 1) # to ensure identity initialization
self.eps = 1e-7 # Epsilon for numerical stability when computing forward/inverse
self.eps = 5e-10 # Epsilon for numerical stability when computing forward/inverse

@property
def n_parameters(self) -> int:
Expand Down

0 comments on commit fc490fc

Please sign in to comment.