From 8e4c12b98d38464f78e679197bb3ddb6792ce8fc Mon Sep 17 00:00:00 2001
From: Shahul ES
Date: Thu, 10 Nov 2022 17:29:01 +0530
Subject: [PATCH 1/5] update readme
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index d8b1744..c67e0be 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,7 @@
+


From cb6f9c20edd126d7146a10fa6ad023f60ed97a33 Mon Sep 17 00:00:00 2001
From: Shahul ES
Date: Thu, 10 Nov 2022 19:30:59 +0530
Subject: [PATCH 2/5] update readme
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index c67e0be..2fa17e8 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
mayavoz is a Pytorch-based opensource toolkit for speech enhancement. It is designed to save time for audio researchers. Is provides easy to use pretrained audio enhancement models and facilitates highly customisable model training.
-| **[Quick Start](#quick-start-fire)** | **[Installation](#installation)** | **[Tutorials](https://github.com/shahules786/enhancer/notebooks/)** | **[Available Recipes](#recipes)** | **[Demo]()**
+| **[Quick Start](#quick-start-fire)** | **[Installation](#installation)** | **[Tutorials](https://github.com/shahules786/enhancer/tree/main/notebooks)** | **[Available Recipes](#recipes)** | **[Demo]()**
## Key features :key:
* Various pretrained models nicely integrated with huggingface :hugs: that users can select and use without any hastle.
From 0e664ed37190c16d6faefd972a5ad771e9070668 Mon Sep 17 00:00:00 2001
From: Shahul ES
Date: Thu, 10 Nov 2022 19:36:02 +0530
Subject: [PATCH 3/5] Update readme
---
README.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/README.md b/README.md
index 2fa17e8..3b36625 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,11 @@
+



+
mayavoz is a Pytorch-based opensource toolkit for speech enhancement. It is designed to save time for audio researchers. Is provides easy to use pretrained audio enhancement models and facilitates highly customisable model training.
From 7c7db84c398249f27aa3a1944bfa36575ecdad51 Mon Sep 17 00:00:00 2001
From: Shahul ES
Date: Tue, 15 Nov 2022 15:11:23 +0530
Subject: [PATCH 4/5] update readme
---
README.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 3b36625..f8dea92 100644
--- a/README.md
+++ b/README.md
@@ -28,11 +28,11 @@ model("noisy_audio.wav")
## Recipes
-| Model | Dataset | STOI | PESQ | URL |
-| :---: | :---: | :---: | :---: | :---: |
-| WaveUnet | Vctk-28spk | 0.836 | 2.78 | shahules786/mayavoz-waveunet-valentini-28spk |
-| Demucs | DNS-2020 (30hrs) | 0.961 | 2.56 | shahules786/mayavoz-demucs-valentini-28spk |
-| DCCRN | DNS-2020 (30hrs) | | | mayavoz/dccrn-vctk28 |
+| Model | Dataset | STOI | PESQ | URL |
+| :---: | :---: | :---: | :---: | :---: |
+| WaveUnet | Vctk-28spk | 0.836 | 2.78 | shahules786/mayavoz-waveunet-valentini-28spk |
+| Demucs | Vctk-28spk | 0.961 | 2.56 | shahules786/mayavoz-demucs-valentini-28spk |
+| DCCRN | Vctk-28spk | 0.724 | 2.55 | shahules786/mayavoz-dccrn-valentini-28spk |
## Installation
From 386931d09b100bb05d69dd86df43b5158a4c8f11 Mon Sep 17 00:00:00 2001
From: Shahul ES
Date: Tue, 15 Nov 2022 22:06:48 +0530
Subject: [PATCH 5/5] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index f8dea92..c7fc2db 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ mayavoz is a Pytorch-based opensource toolkit for speech enhancement. It is desi
``` python
from mayavoz import Mayamodel
-model = Mayamodel.from_pretrained("mayavoz/waveunet")
+model = Mayamodel.from_pretrained("shahules786/mayavoz-waveunet-valentini-28spk")
model("noisy_audio.wav")
```