Skip to content
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

ENH: Refactor filters into filtering #71

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jhlegarreta
Copy link
Contributor

@jhlegarreta jhlegarreta commented Jan 25, 2025

Refactor code blocks that perform filtering operations within models into the filtering module so that the model and filter concepts are separated, supporting more cleanly pipelining models with filters within the new Estimator philosophy

Add the percentile-based detrending feature that was temporarily removed in commit 7322e93.

Closes #63.

@jhlegarreta
Copy link
Contributor Author

A few comments:

@jhlegarreta jhlegarreta force-pushed the RefactorFilteringCode branch from 5cec644 to 7e67f76 Compare January 25, 2025 19:17

clipped_dataset._dataset = clipped_dataset._dataset.dataobj[..., shellmask]

return clipped_dataset
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we clip the data, maybe the gradients stored in the datasets should also be clipped.

Copy link

codecov bot commented Jan 25, 2025

Codecov Report

Attention: Patch coverage is 82.50000% with 7 lines in your changes missing coverage. Please review.

Project coverage is 64.97%. Comparing base (d8141dc) to head (e4819e4).

Files with missing lines Patch % Lines
src/nifreeze/data/filtering.py 80.64% 3 Missing and 3 partials ⚠️
src/nifreeze/model/dmri.py 88.88% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main      #71      +/-   ##
==========================================
- Coverage   69.28%   64.97%   -4.31%     
==========================================
  Files          20       20              
  Lines         967      988      +21     
  Branches      119      121       +2     
==========================================
- Hits          670      642      -28     
- Misses        254      306      +52     
+ Partials       43       40       -3     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@jhlegarreta jhlegarreta force-pushed the RefactorFilteringCode branch 3 times, most recently from 82af75c to 7c8e9f1 Compare March 28, 2025 01:33
@jhlegarreta
Copy link
Contributor Author

Tests are failing
https://github.com/nipreps/nifreeze/actions/runs/14120081127/job/39558574436?pr=71#step:11:530

  >       with pytest.raises(RuntimeError):
  E       Failed: DID NOT RAISE <class 'RuntimeError'>

because the exception
https://github.com/nipreps/nifreeze/blob/main/src/nifreeze/model/dmri.py#L226C9-L227

has now been moved to:
https://github.com/nipreps/nifreeze/pull/71/files#diff-2197e776366f74ac177f201dce923642554f122630fabab0b45063f2f6cf1832R209

So this may requires some discussion.

@jhlegarreta jhlegarreta force-pushed the RefactorFilteringCode branch 10 times, most recently from 122ecc9 to ceae0c2 Compare March 29, 2025 00:25
@jhlegarreta
Copy link
Contributor Author

@oesteban I would be grateful if you could review this, even if I have not marked as ready for review. Some comments:

Copy link
Member

@oesteban oesteban left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There you have some feedback. Thanks for taking on this.

shellmask = np.ones(len(self._dataset), dtype=bool)

# Keep only bvalues within the range defined by th_high and th_low
shellmask[index] = False
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@oesteban While writing the test, I have realized that this statement should be removed: we want to keep the value at the index position, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed the statement. Consequently, the exception here is not not raised:
https://github.com/nipreps/nifreeze/pull/71/files#diff-2197e776366f74ac177f201dce923642554f122630fabab0b45063f2f6cf1832R230-R231

https://github.com/nipreps/nifreeze/actions/runs/14149369168/job/39640631654?pr=71#step:11:539

So I am wondering about the rationale behind assigning False to the index.

@jhlegarreta jhlegarreta force-pushed the RefactorFilteringCode branch 3 times, most recently from 3656d49 to 66db806 Compare March 29, 2025 21:00
Comment on lines +173 to +174
if mask is not None:
volumes = data[..., mask]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The check here is necessary otherwise a new, unnecessary dimension is added to the data.

@jhlegarreta jhlegarreta marked this pull request as ready for review March 29, 2025 21:05
@jhlegarreta
Copy link
Contributor Author

Re #71 (comment):

  • We are happy with methods vs classes.
  • Tests have been added in the latest commits.

Refactor code blocks that perform filtering operations within models
into the `filtering` module so that the model and filter concepts are
separated, supporting more cleanly pipelining models with filters within
the new `Estimator` philosophy.

Add the percentile-based detrending feature that was temporarily removed
in commit 7322e93.

Take advantage of the commit to rename the `th_low` and `th_high`
attributes of the `AverageDWIModel` to `atol_low` and `atol_high`.

Co-authored-by: Oscar Esteban <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Move detrending from AverageModel to its own Filter
2 participants