Skip to content

Commit

Permalink
Store error sd in obs vec
Browse files Browse the repository at this point in the history
  • Loading branch information
kysolvik committed Oct 4, 2024
1 parent d7db346 commit 5151378
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dabench/observer/_observer.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,10 @@ def observe(self):
size=errors_vec_size)

# Include flag for whether observations are stationary or not
# Also include error_sd as an attribute
obs_vec = obs_vec.assign_attrs(
stationary_observers=self.stationary_observers)
stationary_observers=self.stationary_observers,
error_sd=error_sd)

# Clip errors to positive only
if self.error_positive_only:
Expand Down

0 comments on commit 5151378

Please sign in to comment.