Skip to content

Commit 1192376

Browse files
committed
adding support for PASE
1 parent 7487949 commit 1192376

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

neural_networks.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1759,7 +1759,8 @@ def __init__(self, options, inp_dim):
17591759

17601760
# To use PASE within PyTorch-Kaldi, please clone the current PASE repository: https://github.com/santi-pdp/pase
17611761
# Note that you have to clone the dev branch.
1762-
# Take a look into the requirements (requirements.txt) and install in your environment what is missing. An important requirement is QRNN (https://github.com/salesforce/pytorch-qrnn). Before starting working with PASE, it could make sense to a quick test with QRNN independently (see “usage” section in the QRNN repository).
1762+
# Take a look into the requirements (requirements.txt) and install in your environment what is missing. An important requirement is QRNN (https://github.com/salesforce/pytorch-qrnn).
1763+
# Before starting working with PASE, it could make sense to a quick test with QRNN independently (see “usage” section in the QRNN repository).
17631764
# Remember to install pase. This way it can be used outside the pase folder directory. To do it, go into the pase folder and type:
17641765
# "python setup.py install"
17651766

@@ -1786,4 +1787,4 @@ def forward(self, x):
17861787
x=x.unsqueeze(0).unsqueeze(0)
17871788
output=self.pase(x)
17881789

1789-
return output
1790+
return output

proto/PASE.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[proto]
22
pase_cfg=str
33
pase_model=path
4+

0 commit comments

Comments
 (0)