模型

segmentation

pyannote/segmentation

查看上游原文 ↗
上游访问:需要申请 本站服务:可咨询 内容检查:AI 辅助整理并检查 许可证:mit 上游版本:660b9e20307a

中文简介

pyannote/segmentation 是 pyannote 在 Hugging Face 发布的模型仓库,当前卡片主要关联图像分割。本站固定记录上游版本 660b9e20307a,同步到 28 个文件,文件元数据合计 97.26 MB;访问状态为“需要申请”,许可证字段为“mit”。

UPSTREAM README

上游模型卡 / 数据集卡

在 Hugging Face 查看原文 ↗

【README 卡片中文译介】

以下内容依据上游仓库 pyannote/segmentation 的固定版本 README、卡片字段和文件元数据进行中文结构化整理。它保留便于选型的关键信息,完整技术细节、代码示例和许可文本请同时查看上游原文。

【资源概览】
pyannote/segmentation 是 pyannote 在 Hugging Face 发布的模型仓库,当前卡片主要关联图像分割。本站固定记录上游版本 660b9e20307a,同步到 28 个文件,文件元数据合计 97.26 MB;访问状态为“需要申请”,许可证字段为“mit”。

【适用方向】
适合评估视觉感知、分割、检测或三维场景处理任务。 建议先用小规模样本验证推理框架、输入输出格式和任务指标,再决定是否进入完整权重获取、量化或部署评估。

【版本与规格】
固定版本:660b9e20307a。 任务标签:图像分割。 库标记:pyannote-audio。 上游页面记录的最近更新时间:2024-05-10。

【文件信息】
上游 API 返回 28 个文件,文件元数据合计 97.26 MB。 已保存文件清单中的主要扩展名:.rttm 20 个、.txt 2 个、无扩展名 2 个、.bin 1 个、.md 1 个、.png 1 个。 当前较大的文件包括:pytorch_model.bin(16.90 MB);reproducible_research/expected_outputs/vbx/DIHARD.rttm(4.40 MB);reproducible_research/expected_outputs/rsg/DIHARD.development.rttm(2.71 MB)。

【运行或处理环境】
仓库文件元数据合计 97.26 MB。 实际显存与内存由精度、量化方式、上下文长度、批量、并发、MoE 专家加载方式和推理框架共同决定,不能只凭参数名或仓库大小作部署承诺;应在目标格式和目标硬件上实测。

【使用边界】
许可证显示为“mit”,具体用途限制、附加政策和归属要求仍以上游原文为准。 该仓库需要由用户本人按上游要求申请访问,是否批准及何时批准由资源权利方决定。 模型输出、工具调用和生成内容可能出现错误、偏见或安全风险,面向业务前应建立任务级评测、权限隔离和人工确认。

已有简体中文译文 · Codex 基于固定版本 README 与上游元数据生成中文结构化译介 · 2026-07-26 00:51

Using this open-source model in production? Consider switching to pyannoteAI for better and faster options. 🎹 Speaker segmentation Paper | Demo | Blog post Usage Relies on pyannote.audio 2.1.1: see installation instructions. 1. visit hf.co/pyannote/segmentation and accept user conditions 2. visit hf.co/settings/tokens to create an access token 3. instantiate pretrained model from pyannote.audio import Model model = Model.from_pretrained("pyannote/segmentation", use_auth_token="ACCESS_TOKEN_GOES_HERE") Voice activity detection from pyannote.audio.pipelines import VoiceActivityDetection pipeline = VoiceActivityDetection(segmentation=model) HYPER_PARAMETERS = { onset/offset activation thresholds "onset": 0.5, "offset": 0.5, remove speech regions shorter than that many seconds. "min_duration_on": 0.0, fill non-speech regions shorter than that many seconds. "min_duration_off": 0.0 } pipeline.instantiate(HYPER_PARAMETERS) vad = pipeline("audio.wav") `vad` is a pyannote.core.Annotation instance containing speech regions Overlapped speech detection from pyannote.audio.pipelines import OverlappedSpeechDetection pipeline = OverlappedSpeechDetection(segmentation=model) pipeline.instantiate(HYPER_PARAMETERS) osd = pipeline("audio.wav") `osd` is a pyannote.core.Annotation instance containing overlapped speech regions Resegmentation from pyannote.audio.pipelines import Resegmentation pipeline = Resegmentation(segmentation=model, diarization="baseline") pipeline.instantiate(HYPER_PARAMETERS) resegmented_baseline = pipeline({"audio": "audio.wav", "baseline": baseline}) where `baseline` should be provided as a pyannote.core.Annotation instance Raw scores from pyannote.audio import Inference inference = Inference(model) segmentation = inference("audio.wav") `segmentation` is a pyannote.core.SlidingWindowFeature instance containing raw segmentation scores like the one pictured above (output) Citation @inproceedings{Bredin2021, Title = {{End-to-end speaker segmentation for overlap-awar

公开页仅展示原文摘录;完整模型卡或数据集卡请前往上游仓库查看。

适用场景

适合评估视觉感知、分割、检测或三维场景处理任务。 建议先用小规模样本验证推理框架、输入输出格式和任务指标,再决定是否进入完整权重获取、量化或部署评估。

模型参数

固定版本:660b9e20307a。 任务标签:图像分割。 库标记:pyannote-audio。 上游页面记录的最近更新时间:2024-05-10。

文件说明

上游 API 返回 28 个文件,文件元数据合计 97.26 MB。 已保存文件清单中的主要扩展名:.rttm 20 个、.txt 2 个、无扩展名 2 个、.bin 1 个、.md 1 个、.png 1 个。 当前较大的文件包括:pytorch_model.bin(16.90 MB);reproducible_research/expected_outputs/vbx/DIHARD.rttm(4.40 MB);reproducible_research/expected_outputs/rsg/DIHARD.development.rttm(2.71 MB)。

上游文件元数据

  • .gitattributes690 B
  • config.yaml318 B
  • example.png17.12 KB
  • LICENSE1.04 KB
  • pytorch_model.bin16.90 MB
  • README.md5.70 KB
  • reproducible_research/dihard3_custom_split/development.txt744 B
  • reproducible_research/dihard3_custom_split/train.txt2.25 KB
  • reproducible_research/expected_outputs/osd/AMI.development.rttm155.66 KB
  • reproducible_research/expected_outputs/osd/AMI.test.rttm134.63 KB
  • reproducible_research/expected_outputs/osd/DIHARD.development.rttm713.11 KB
  • reproducible_research/expected_outputs/osd/DIHARD.test.rttm625.82 KB

硬件建议

仓库文件元数据合计 97.26 MB。 实际显存与内存由精度、量化方式、上下文长度、批量、并发、MoE 专家加载方式和推理框架共同决定,不能只凭参数名或仓库大小作部署承诺;应在目标格式和目标硬件上实测。

注意事项

许可证显示为“mit”,具体用途限制、附加政策和归属要求仍以上游原文为准。 该仓库需要由用户本人按上游要求申请访问,是否批准及何时批准由资源权利方决定。 模型输出、工具调用和生成内容可能出现错误、偏见或安全风险,面向业务前应建立任务级评测、权限隔离和人工确认。

获取、校验与交付

咨询此资源时只需发送本页链接或资源准确全称。橙子AI科技会继续核对版本、文件与类型、README资料卡、许可证和访问条件,并在合法访问权限、许可证及平台规则允许的前提下,协助海内外下载、完整性校验及网盘或硬盘交付;本官网本身不托管或下载资源文件。

第三方资源声明

本页面为橙子AI科技基于固定版本上游卡片整理的中文信息与服务说明,不代表资源作者或平台官方页面。实际许可、访问和使用条件以上游原文为准。