docs: update Fern docs for filter/modifier reorganization (PR #1472) - #1685
Merged
lbliii merged 1 commit intoApr 6, 2026
Merged
Conversation
lbliii
force-pushed
the
lbliii/aegis-classifier-docs
branch
from
March 31, 2026 14:15
efc7519 to
55ae580
Compare
sarahyurick
reviewed
Apr 1, 2026
| from nemo_curator.stages.text.modules.score_filter import ScoreFilter | ||
| from nemo_curator.filters import WordCountFilter # Example filter | ||
| from nemo_curator.stages.text.filters import ScoreFilter | ||
| from nemo_curator.stages.text.filters.heuristic import WordCountFilter # Example filter |
Contributor
There was a problem hiding this comment.
I'm confused, I thought #1472 updated all of the docs too. Did it get overwritten somewhere?
Contributor
Author
There was a problem hiding this comment.
PR #1472 updated import paths in the Sphinx docs (docs/), but the Fern v26.04 docs (fern/versions/v26.04/) were initialized from the old Sphinx content before #1472 landed — so the Fern pages still had the stale import paths. Nothing was overwritten; the Fern docs just never received the update. This PR closes that gap.
Also just pushed a fix for one file (data-processing-concepts.mdx) where the heuristic filter sub-path imports were missed — now matches what #1472 established in the Sphinx docs.
sarahyurick
approved these changes
Apr 6, 2026
NVIDIA-NeMo#1472) Update import paths and release notes in Fern v26.04 docs to reflect the DocumentFilter/DocumentModifier directory restructuring that avoids eagerly importing heavy dependencies. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Lawrence Lane <llane@nvidia.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Updates all import paths in Fern v26.04 docs to reflect the
DocumentFilterandDocumentModifierdirectory reorganization from PR #1472. That PR restructurednemo_curator/stages/text/filters/andmodifiers/to avoid eagerly importing heavy dependencies (HuggingFace, fastText, etc.), but only updated the Sphinx docs. This PR brings the Fern docs in sync. Also adds 26.04 release notes for the reorganization.Closes #1232 (docs follow-up)
Checklist