GithubHelp home page GithubHelp logo

hadware / pyannote-db-dihard Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pyannote/deprecated-pyannote-db-template

0.0 5.0 0.0 46 KB

Database plugin for the DiHard1 and 2 Dataset

Home Page: https://coml.lscp.ens.fr/dihard/index.html#data5

License: Other

Python 100.00%

pyannote-db-dihard's Introduction

DIHARD and DIHARD2 challenge plugin for pyannote.database

Installation

$ pip install pyannote.db.dihard  # install from pip, or
$ pip install -e .  # install a local copy

Tell pyannote where to look for DIHARD and DIHARD2 audio files.

$ cat ~/.pyannote/db.yml
DIHARD: 
  - /path/to/DIHARD/{uri}.wav
  - /path/to/DIHARD2/{uri}.wav

Speaker diarization protocol

Protocol is initialized as follows:

>>> from pyannote.database import get_protocol, FileFinder
>>> preprocessors = {'audio': FileFinder()}
>>> protocol = get_protocol('DIHARD.SpeakerDiarization.All',
...                         preprocessors=preprocessors)

Test / Evaluation

>>> # initialize evaluation metric
>>> from pyannote.metrics.diarization import DiarizationErrorRate
>>> metric = DiarizationErrorRate()
>>>
>>> # iterate over each file of the test set
>>> for test_file in protocol.test():
...
...     # process test file
...     audio = test_file['audio']
...     hypothesis = process_file(audio)
...
...     # evaluate hypothesis
...     reference = test_file['annotation']
...     uem = test_file['annotated']
...     metric(reference, hypothesis, uem=uem)
>>>
>>> # report results
>>> metric.report(display=True)

pyannote-db-dihard's People

Contributors

hadware avatar hbredin avatar pkorshunov avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.