Compare commits

...

8 Commits
dev ... main

Author SHA1 Message Date
Shahul ES 7133670252
Merge pull request #46 from izam-mohammed/main
Updated conv.py
2023-02-08 16:40:35 +05:30
Izam Mohammed 40031ab084
updated conv.py with changing imag variable 2023-01-24 07:12:45 +05:30
Izam Mohammed 379800d3f6
Merge branch 'shahules786:main' into main 2023-01-24 06:57:04 +05:30
Shahul ES f21fa24f0e
Merge pull request #43 from izam-mohammed/izam-dev-1
Corrected an error in CONTRIBUTING.md file
2023-01-11 23:03:27 +05:30
Izam Mohammed afa89749ad
Merge pull request #1 from izam-mohammed/izam-dev-1
Corrected an error in CONTRIBUTING.md file
2023-01-11 12:52:13 +05:30
Izam Mohammed e6fb143c8f
Corrected an error in CONTRIBUTING.md file 2023-01-11 12:51:32 +05:30
Shahul ES cd7c008d34
update Readme 2022-12-19 16:15:40 +05:30
Shahul ES 287df5bff4
Merge pull request #35 from shahules786/dev
add contribution guidelines
2022-12-07 16:21:01 +05:30
3 changed files with 3 additions and 4 deletions

View File

@ -34,7 +34,7 @@ We use [black](https://black.readthedocs.io/en/stable/) and [flake8](https://fla
## Testing
We adopt unit testing using [pyest](https://docs.pytest.org/en/latest/contents.html)
We adopt unit testing using [pytest](https://docs.pytest.org/en/latest/contents.html)
Please make sure that adding your new component does not decrease test coverage.
## Other tools

View File

@ -2,11 +2,10 @@
<img src="https://user-images.githubusercontent.com/25312635/195514652-e4526cd1-1177-48e9-a80d-c8bfdb95d35f.png" />
</p>
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/shahules786/enhancer/Enhancer)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/shahules786/mayavoz/ci.yaml?branch=main)
![GitHub](https://img.shields.io/github/license/shahules786/enhancer)
![GitHub issues](https://img.shields.io/github/issues/shahules786/enhancer?logo=GitHub)
![GitHub Repo stars](https://img.shields.io/github/stars/shahules786/enhancer?style=social)
![GitHub all releases](https://img.shields.io/github/downloads/shahules786/enhancer/total)
mayavoz is a Pytorch-based opensource toolkit for speech enhancement. It is designed to save time for audio practioners & researchers. It provides easy to use pretrained speech enhancement models and facilitates highly customisable model training.

View File

@ -129,7 +129,7 @@ class ComplexConvTranspose2d(nn.Module):
imag_real = self.real_conv(imag)
real = real_real - imag_imag
imag = real_imag - imag_real
imag = real_imag + imag_real
out = torch.cat([real, imag], 1)