docs: add fern docs for 26.04 PRs (#1160, #1575, #1576, #1603, #1612, #1652) - #1730
docs: add fern docs for 26.04 PRs (#1160, #1575, #1576, #1603, #1612, #1652)#1730lbliii wants to merge 1 commit into
Conversation
…NVIDIA-NeMo#1160, NVIDIA-NeMo#1603, NVIDIA-NeMo#1612, NVIDIA-NeMo#1652) Add audio preprocessing docs (MonoConversion, SegmentConcatenation, TimestampMapper), band filtering docs, Nemotron VLM video captioning updates, fuzzy dedup LSH memory tuning params, interleaved IO schema changes, and release note entries for all new features, dependency updates, and breaking changes. Signed-off-by: Lawrence Lane <llane@nvidia.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Lawrence Lane <llane@nvidia.com>
Greptile SummaryThis documentation-only PR backfills Fern docs and release notes for six features that were merged to Key changes:
Confidence Score: 4/5Safe to merge; documentation-only changes with no runtime risk, minor stale prose in captions-preview.mdx. All changes are MDX documentation files and a YAML navigation config — no executable code is modified. The two stale Qwen-specific references in captions-preview.mdx are minor inaccuracies that won't break anything but could confuse Nemotron VLM users. Everything else is accurate and well-structured. fern/versions/v26.04/pages/curate-video/process-data/captions-preview.mdx — two prose sections still mention Qwen-specific output keys after Nemotron VLM support was added. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Raw Audio Files] --> B[MonoConversionStage\nConvert to mono, verify sample rate]
B -->|strict_sample_rate=True| C{Sample rate\nmatch?}
C -->|No| D[Filtered out]
C -->|Yes| E[VADSegmentationStage\nnested=True]
E --> F[SegmentConcatenationStage\nAssemble waveform, insert silence between segments]
F --> G[Downstream Processing\nASR, Quality Assessment, BandFilterStage, etc.]
G --> H[TimestampMapperStage\nResolve segment positions to original timestamps]
H --> I[Metadata Output\noriginal_file, original_start_ms, original_end_ms]
style D fill:#f88,stroke:#c00
style I fill:#8f8,stroke:#090
|
Description
Add fern documentation and release notes for features merged to main but not yet documented on
26.04-staging. Covers audio preprocessing stages (MonoConversion, SegmentConcatenation, TimestampMapper from PR #1575), audio band filtering (BandFilterStage from PR #1576), Nemotron VLM video captioning support (PR #1160), fuzzy dedup LSH memory tuning params (PR #1603), interleaved IO schema improvements (PR #1652), and dependency/security updates (PR #1612). Includes new pages, updated existing pages, nav updates, and release note line items with breaking changes.Checklist