You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
pdurham2
changed the title
diff_order doesnt seems to be hard coded to be diff order of 2
diff_order seems to be hard coded to be diff order of 2
Oct 20, 2022
@pdurham2 I think your observation is correct. Based on the logic for this part of the code, this should be interpolated_actual = np.diff(seq_tail, diff_order)[-1].
Please feel free to make the change and add me as a reviewer. We should also test the change by training and scoring the filtering model using an example dataset (you can use any dataset from https://github.com/zillow/luminaire/tree/master/luminaire/tests/datasets) to check if everything is working as expected.
When
diff_order
is applied inlad_filtering.py
, the value passed tonp.diff
is fixed as 2. Is this intended or shoulddiff_order
be passed instead?The text was updated successfully, but these errors were encountered: