Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:pyannote/pyannote-audio into dev…
Browse files Browse the repository at this point in the history
…elop
  • Loading branch information
hbredin committed Jun 9, 2020
2 parents 2d830b6 + e5fe4f8 commit f159288
Show file tree
Hide file tree
Showing 15 changed files with 1,495 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ gh-pages.pub

*.zip
.mypy_cache/
.vscode/
.vscode/
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,20 @@ $ pip install .
* Use [pretrained](https://github.com/pyannote/pyannote-audio-hub) models and pipelines
* [Apply pretrained pipelines on your own data](tutorials/pretrained/pipeline)
* [Apply pretrained models on your own data](tutorials/pretrained/model)
* [Prepare your own dataset for training or fine-tuning](tutorials/data_preparation)
* [Fine-tune pretrained models to your own data](tutorials/finetune)
* Prepare your own data
* [Annotate your own data semi-automatically with Prodigy](tutorials/prodigy)
* [Prepare your own dataset for training](tutorials/data_preparation)
* Train models on your own data
* [Speech activity detection](tutorials/models/speech_activity_detection)
* [Speaker change detection](tutorials/models/speaker_change_detection)
* [Overlapped speech detection](tutorials/models/overlap_detection)
* [Speaker embedding](tutorials/models/speaker_embedding)
* [Fine-tune pretrained models to your own data](tutorials/finetune)
* Tune pipelines on your own data
* [Speech activity detection pipeline](tutorials/pipelines/speech_activity_detection)
* [Speaker diarization pipeline](tutorials/pipelines/speaker_diarization)


Until a proper documentation is released, note that part of the API is described in [this](tutorials/pretrained/model) tutorial.


Expand Down
27 changes: 27 additions & 0 deletions pyannote/audio/interactive/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/usr/bin/env python
# encoding: utf-8

# The MIT License (MIT)

# Copyright (c) 2020 CNRS

# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:

# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.

# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

# AUTHORS
# Hervé BREDIN - http://herve.niderb.fr
Loading

0 comments on commit f159288

Please sign in to comment.