-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better management of Trace attribute mutability #147
base: main
Are you sure you want to change the base?
Conversation
907457e
to
62cbf11
Compare
Codecov Report
@@ Coverage Diff @@
## main #147 +/- ##
==========================================
+ Coverage 71.63% 72.60% +0.97%
==========================================
Files 9 9
Lines 631 657 +26
==========================================
+ Hits 452 477 +25
- Misses 179 180 +1
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
looks pretty good! i need to take a deeper dive, but one substantive comment is that |
This is a clever workaround, and in general I like it. But before moving forward in this direction, I think we need to open a wider discussion over whether we want to support the user setting any attributes across any of the classes (background and extraction included) and expect the internal information in those objects to update respectively. Currently I think the user can set any of those attributes, but similar to the cases here, internal arrays aren't updated accordingly, so I think we can decide to go either direction as long as we do so consistently across the board. But if we do want some/most to be editable, then would we need to set custom setters for each case or would that make this approach unfeasible? As a side note, correct me if I'm wrong @tepickering, but I think |
I don't see any test. Shouldn't there be tests to ensure this patch fixes the problem? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your work, @bmorris3. I found this approach a little hard to follow at first. My understanding now is it seems it has to be a backdoor-style fix due to some limitations of dataclass
, so I can get behind it.
I think it makes sense for most (if not all) of our current selection of attributes to be read-only, so I support an approach like the one here over the alternative of allowing editable attributes and needing to update internal arrays. I feel the same about the non-trace operations, too, but that work would be for another ticket.
I agree that we wouldn't need both a BaseTrace
and Trace
, so it's good we're sticking with Trace
as the base class.
@@ -8,7 +8,7 @@ | |||
from astropy import units as u | |||
|
|||
from specreduce.extract import _ap_weight_image, _to_spectrum1d_pixels | |||
from specreduce.tracing import Trace, FlatTrace | |||
from specreduce.tracing import FlatTrace, Trace |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this just for alphabetization purposes?
@@ -92,10 +109,12 @@ class FlatTrace(Trace): | |||
trace_pos : float | |||
Position of the trace | |||
""" | |||
trace_pos: float | |||
_trace_pos: (float, np.ndarray) = field(repr=False) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you help me understand when/why this FlatTrace
argument would take an array?
#126 points out that you can edit attributes of the
Trace
class in such a way that they are no longer self-consistent with each other.In this PR, I've found a way to recast the
*Trace
s as subclasses of a newBaseTrace
(perhaps there's a better name?). These classes all use@dataclass(frozen=True)
which enforces that their attributes are immutable for the user-facing API. Under the hood, there's a slightly ugly workaround which allows us to (re)set these "read-only" attributes via the public-facing methods likeTrace.shift
, for example.Happy to discuss as needed!
Fixes #126
Tiny demo