docs: Fix speaker diarization model references to community-1#6
Merged
Alex-Wengg merged 2 commits intomainfrom Apr 11, 2026
Merged
docs: Fix speaker diarization model references to community-1#6Alex-Wengg merged 2 commits intomainfrom
Alex-Wengg merged 2 commits intomainfrom
Conversation
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Clarify offline pipeline is based on pyannote/speaker-diarization-community-1 - Add model overview to getting-started page Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
BrandonWeng
approved these changes
Apr 11, 2026
BrandonWeng
reviewed
Apr 11, 2026
| | **STT** | Parakeet EOU 120M | [NVIDIA](https://huggingface.co/nvidia/parakeet-tdt_ctc-110m) | [FluidInference](https://huggingface.co/FluidInference/parakeet-eou-120m-coreml) | | ||
| | **VAD** | Silero VAD v6 | [Silero](https://github.com/snakers4/silero-vad) | [FluidInference](https://huggingface.co/FluidInference/silero-vad-coreml) | | ||
| | **Diarization** | Pyannote 3.1 | [Pyannote](https://huggingface.co/pyannote/speaker-diarization-3.1) | [FluidInference](https://huggingface.co/FluidInference/pyannote-community-1-coreml) | | ||
| | **Diarization** | Pyannote Community 1 | [Pyannote](https://huggingface.co/pyannote/speaker-diarization-community-1) | [FluidInference](https://huggingface.co/FluidInference/speaker-diarization-coreml) | |
Member
There was a problem hiding this comment.
online is 3.1 , offline is communit 1
Alex-Wengg
added a commit
to FluidInference/FluidAudio
that referenced
this pull request
Apr 11, 2026
Distinguish between online and offline diarization pipelines: - Online/streaming (DiarizerManager): Pyannote 3.1 - Offline batch (OfflineDiarizerManager): Pyannote Community-1 Updated documentation in: - CLAUDE.md Model Sources section - README.md Streaming/Online Speaker Diarization section - Documentation/Models.md Diarization Models table - Documentation/Diarization/GettingStarted.md WeSpeaker/Pyannote Streaming section Addresses feedback from PR #6 review comment: FluidInference/docs.fluidinference.com#6 (comment)
Alex-Wengg
added a commit
that referenced
this pull request
Apr 11, 2026
Distinguish between the two diarization pipelines: - Online/streaming (DiarizerManager): Pyannote 3.1 - Offline batch (OfflineDiarizerManager): Pyannote Community-1 Updated documentation: - mobius/getting-started.mdx: Updated model table to show both versions - diarization/streaming.mdx: Added Pyannote 3.1 reference to overview - diarization/getting-started.mdx: Added version note to Quick Start Addresses PR #6 review comment: #6 (comment)
Alex-Wengg
added a commit
to FluidInference/FluidAudio
that referenced
this pull request
Apr 11, 2026
## Summary Addresses feedback from FluidInference/docs.fluidinference.com#6 (comment) Clarifies the distinction between online and offline diarization pipeline versions: - **Online/streaming** (`DiarizerManager`): Based on Pyannote 3.1 - **Offline batch** (`OfflineDiarizerManager`): Based on Pyannote Community-1 ## Changes Updated documentation in four files to clearly distinguish between the two pipelines: 1. **CLAUDE.md** - Model Sources section now lists both versions 2. **README.md** - Added version info to Streaming/Online Speaker Diarization section 3. **Documentation/Models.md** - Updated Pyannote CoreML Pipeline description in table 4. **Documentation/Diarization/GettingStarted.md** - Added version to WeSpeaker/Pyannote Streaming section ## Context PR #6 updated references from 3.1 to community-1, but Brandon's review comment clarified that both versions are correct - they just apply to different pipelines. This PR makes that distinction clear throughout the documentation. <!-- devin-review-badge-begin --> --- <a href="https://app.devin.ai/review/fluidinference/fluidaudio/pull/511" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://static.devin.ai/assets/gh-open-in-devin-review-dark.svg?v=1"> <img src="https://static.devin.ai/assets/gh-open-in-devin-review-light.svg?v=1" alt="Open with Devin"> </picture> </a> <!-- devin-review-badge-end --> ---------
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.
Why is this change needed?
Clarifies that FluidAudio's speaker diarization models are based on pyannote/speaker-diarization-community-1, not 3.1. Fixes confusion from FluidAudio issue #508.
What changed?
mobius/getting-started.mdxmodel reference tablediarization/offline-pipeline.mdxContext
The CoreML model at FluidInference/speaker-diarization-coreml is based on community-1, but docs incorrectly showed 3.1 references.
Related PR: FluidInference/FluidAudio#510