Skip to content

Commit

Permalink
Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
csukuangfj committed Mar 15, 2022
1 parent a80fc98 commit 34903b0
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/run-librispeech-2022-03-12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,13 @@ jobs:
grep -v '^#' ./requirements-ci.txt | xargs -n 1 -L 1 pip install
- name: Cache pre-trained model
- name: Cache kaldifeat
id: my-cache
uses: actions/cache@v2
with:
path: |
~/tmp/kaldifeat
~/tmp/icefall-asr-librispeech-pruned-transducer-stateless-2022-03-12
key: cache-tmp
key: cache-tmp-${{ matrix.python-version }}

- name: Install kaldifeat
if: steps.my-cache.outputs.cache-hit != 'true'
Expand All @@ -78,10 +77,9 @@ jobs:
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j
make -j2 _kaldifeat
- name: Download pre-trained model
if: steps.my-cache.outputs.cache-hit != 'true'
shell: bash
run: |
sudo apt-get -qq install git-lfs
Expand All @@ -94,9 +92,9 @@ jobs:
shell: bash
run: |
sudo apt-get -qq install tree sox
tree tmp
soxi tmp/icefall-asr-librispeech-pruned-transducer-stateless-2022-03-12/test_wavs/*.wav
ls -lh tmp/icefall-asr-librispeech-pruned-transducer-stateless-2022-03-12/test_wavs/*.wav
tree ~/tmp/icefall-asr-librispeech-pruned-transducer-stateless-2022-03-12
soxi ~/tmp/icefall-asr-librispeech-pruned-transducer-stateless-2022-03-12/test_wavs/*.wav
ls -lh ~/tmp/icefall-asr-librispeech-pruned-transducer-stateless-2022-03-12/test_wavs/*.wav
- name: Run greedy search decoding (max-sym-per-frame 1)
shell: bash
Expand Down

0 comments on commit 34903b0

Please sign in to comment.