forked from kaldi-asr/kaldi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'kaldi-asr:master' into master
- Loading branch information
Showing
1,164 changed files
with
71,058 additions
and
5,387 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,29 @@ | ||
# Number of days of inactivity before an issue becomes stale. | ||
daysUntilStale: 60 | ||
# Number of days of inactivity before a stale issue is closed. | ||
# TODO(kkm): Re-enable auto-closing when done with the current heap of old PRs. | ||
daysUntilClose: false | ||
# Issues with these labels will never be considered stale. | ||
exemptLabels: | ||
- discussion | ||
- enhancement | ||
- help-wanted | ||
- in progress | ||
- low-priority | ||
- newbie | ||
- stale-exclude | ||
- stopped development | ||
# Label to use when marking an issue as stale. | ||
staleLabel: stale | ||
# Comment to post when marking an issue as stale. | ||
markComment: > | ||
This issue has been automatically marked as stale by a bot solely because it | ||
has not had recent activity. Please add any comment (simply 'ping' is enough) | ||
to prevent the issue from being closed for 60 more days if you believe it | ||
should be kept open. | ||
# Comment to post when closing a stale issue. | ||
closeComment: > | ||
This issue has been automatically closed by a bot strictly because of | ||
inactivity. This does not mean that we think that this issue is not | ||
important! If you believe it has been closed hastily, add a comment | ||
to the issue and mention @kkm000, and I'll gladly reopen it. |
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
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,22 @@ | ||
FROM gitpod/workspace-full | ||
|
||
USER songmeixu | ||
|
||
# Install custom tools, runtime, etc. using apt-get | ||
# For example, the command below would install "bastet" - a command line tetris clone: | ||
# | ||
# RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/* | ||
# | ||
# More information: https://www.gitpod.io/docs/config-docker/ | ||
|
||
FROM gitpod/workspace-full | ||
|
||
RUN sudo apt-get update \ | ||
&& sudo apt-get install -y \ | ||
sox gfortran \ | ||
&& sudo rm -rf /var/lib/apt/lists/* | ||
|
||
RUN cd ~/GitHub/r-with-intel-mkl/ \ | ||
&& wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB | sudo apt-key add - \ | ||
&& sudo sh -c 'echo deb https://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list' \ | ||
&& sudo apt-get update && sudo apt-get install intel-mkl-64bit |
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,7 @@ | ||
image: | ||
file: .gitpod.dockerfile | ||
|
||
tasks: | ||
- init: echo "Replace me with a build script for the project." | ||
command: echo "Replace me with something that should run on every start, or just | ||
remove me entirely." |
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
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
Oops, something went wrong.