-
Notifications
You must be signed in to change notification settings - Fork 670
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b43dfe5
commit 0263ca7
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env python3 | ||
|
||
""" | ||
To compare new version with previous: | ||
./regenerate.sh | ||
meld <(git show HEAD:./config.yml | ./sort-yaml.py) <(cat config.yml | ./sort-yaml.py) | ||
""" | ||
|
||
|
||
import sys | ||
import yaml | ||
|
||
sys.stdout.write(yaml.dump(yaml.load(sys.stdin, Loader=yaml.FullLoader), sort_keys=True)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# a comment for these trying times | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- flake8 | ||
- numpy >= 1.11 | ||
- pytest | ||
- pytest-cov | ||
- codecov | ||
- librosa>=0.8.0 | ||
- llvmlite==0.31 # See https://github.com/pytorch/audio/pull/766 | ||
- pip | ||
- pip: | ||
- kaldi-io | ||
- scipy | ||
- parameterized |