From ddce36e9d5f1d8e24829ded754e72fb06314126e Mon Sep 17 00:00:00 2001 From: khaled Date: Fri, 24 Jun 2022 15:00:48 +0200 Subject: [PATCH] bump version --- README.md | 2 +- hear21passt/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 870cd43..07e5fde 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ In case of an input longer than 10 seconds, the `get_scene_embeddings` method co Depending on the application, it may be useful to use a pre-trained that can extract embeddings from 20 or 30 seconds without averaging. These variant has pre-trained time positional encoding or 20/30 seconds: ```python -# from version 0.0.17, it's possible to use: +# from version 0.0.18, it's possible to use: from hear21passt.base20sec import load_model # up to 20 seconds of audio. # or from hear21passt.base30sec import load_model # up to 30 seconds of audio. diff --git a/hear21passt/__init__.py b/hear21passt/__init__.py index f024b96..877c2de 100644 --- a/hear21passt/__init__.py +++ b/hear21passt/__init__.py @@ -1,5 +1,5 @@ -__version__ = "0.0.17" +__version__ = "0.0.18" def embeding_size(hop=50, embeding_size=1000):