Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the window function error #435

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Integration
run: |
cd egs/yesno/voc1 && ./run.sh --conf conf/${{ matrix.config }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: artifacts-${{ matrix.config }}
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- name: Integration
run: |
cd egs/yesno/voc1 && ./run.sh --use_fake_segments true
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: artifacts-${{ matrix.config }}
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
- name: Integration
run: |
cd egs/yesno/vq1 && ./run.sh --conf conf/${{ matrix.config }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: artifacts-${{ matrix.config }}
Expand Down
2 changes: 1 addition & 1 deletion parallel_wavegan/layers/pqmf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import numpy as np
import torch
import torch.nn.functional as F
from scipy.signal import kaiser
from scipy.signal.windows import kaiser


def design_prototype_filter(taps=62, cutoff_ratio=0.142, beta=9.0):
Expand Down
Loading