Compare commits
8 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
7133670252 | |
|
|
40031ab084 | |
|
|
379800d3f6 | |
|
|
f21fa24f0e | |
|
|
afa89749ad | |
|
|
e6fb143c8f | |
|
|
cd7c008d34 | |
|
|
287df5bff4 |
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2,11 +2,10 @@
|
|||
<img src="https://user-images.githubusercontent.com/25312635/195514652-e4526cd1-1177-48e9-a80d-c8bfdb95d35f.png" />
|
||||
</p>
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue