Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Abdelwahab HEBA
kaldi_2015
Commits
5c01929a
Commit
5c01929a
authored
Aug 01, 2015
by
Daniel Povey
Browse files
Fixing various minor cosmetic issues; adding some scripts for this in misc/maintenance/.
parent
dc20fb65
Changes
51
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
20 additions
and
9 deletions
+20
-9
src/nnet/nnet-convolutional-2d-component.h
src/nnet/nnet-convolutional-2d-component.h
+2
-2
src/nnet/nnet-kl-hmm.h
src/nnet/nnet-kl-hmm.h
+2
-0
src/nnet/nnet-lstm-projected-streams.h
src/nnet/nnet-lstm-projected-streams.h
+2
-2
src/nnet2bin/nnet2-boost-silence.cc
src/nnet2bin/nnet2-boost-silence.cc
+1
-2
src/nnetbin/nnet-kl-hmm-acc.cc
src/nnetbin/nnet-kl-hmm-acc.cc
+2
-0
src/nnetbin/nnet-kl-hmm-mat-to-component.cc
src/nnetbin/nnet-kl-hmm-mat-to-component.cc
+2
-0
src/nnetbin/nnet-kl-hmm-sum-accs.cc
src/nnetbin/nnet-kl-hmm-sum-accs.cc
+2
-0
src/nnetbin/nnet-train-frmshuff.cc
src/nnetbin/nnet-train-frmshuff.cc
+2
-0
src/nnetbin/nnet-train-lstm-streams.cc
src/nnetbin/nnet-train-lstm-streams.cc
+2
-2
src/nnetbin/nnet-train-perutt.cc
src/nnetbin/nnet-train-perutt.cc
+2
-0
src/onlinebin/online-audio-server-decode-faster.cc
src/onlinebin/online-audio-server-decode-faster.cc
+1
-1
No files found.
src/nnet/nnet-convolutional-2d-component.h
View file @
5c01929a
...
...
@@ -20,8 +20,8 @@
// limitations under the License.
#ifndef KALDI_NNET_NNET_CONVOLUTIONAL2D_COMPONENT_H_
#define KALDI_NNET_NNET_CONVOLUTIONAL2D_COMPONENT_H_
#ifndef KALDI_NNET_NNET_CONVOLUTIONAL
_
2D_COMPONENT_H_
#define KALDI_NNET_NNET_CONVOLUTIONAL
_
2D_COMPONENT_H_
#include "nnet/nnet-component.h"
...
...
src/nnet/nnet-kl-hmm.h
View file @
5c01929a
...
...
@@ -4,6 +4,8 @@
// Karlsruhe Institute of Technology (Author: Ngoc Thang Vu)
// Brno University of Technology (Author: Karel Vesely)
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
...
...
src/nnet/nnet-lstm-projected-streams.h
View file @
5c01929a
...
...
@@ -19,8 +19,8 @@
#ifndef KALDI_NNET_LSTM_PROJECTED_STREAMS_H_
#define KALDI_NNET_LSTM_PROJECTED_STREAMS_H_
#ifndef KALDI_NNET_
NNET_
LSTM_PROJECTED_STREAMS_H_
#define KALDI_NNET_
NNET_
LSTM_PROJECTED_STREAMS_H_
#include "nnet/nnet-component.h"
#include "nnet/nnet-utils.h"
...
...
src/nnet2bin/nnet2-boost-silence.cc
View file @
5c01929a
...
...
@@ -37,8 +37,7 @@ int main(int argc, char *argv[]) {
"It is implemented by dividing the corresponding priors by that
\n
"
"factor (since we divide by the prior when we evaluate likelihoods).
\n
"
"
\n
"
"Usage:
\n
"
" nnet2-boost-silence [options] <silence-phones-list> <model-in> <model-out>
\n
"
"Usage: nnet2-boost-silence [options] <silence-phones-list> <model-in> <model-out>
\n
"
"e.g.: nnet2-boost-silence --boost=0.2 1:2:3 final.mdl final_boost.mdl
\n
"
"See also: gmm-boost-silence
\n
"
;
...
...
src/nnetbin/nnet-kl-hmm-acc.cc
View file @
5c01929a
...
...
@@ -4,6 +4,8 @@
// Karlsruhe Institute of Technology (Author: Ngoc Thang Vu)
// Brno University of Technology (Author: Karel Vesely)
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
...
...
src/nnetbin/nnet-kl-hmm-mat-to-component.cc
View file @
5c01929a
...
...
@@ -4,6 +4,8 @@
// Karlsruhe Institute of Technology (Author: Ngoc Thang Vu)
// Brno University of Technology (Author: Karel Vesely)
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
...
...
src/nnetbin/nnet-kl-hmm-sum-accs.cc
View file @
5c01929a
...
...
@@ -4,6 +4,8 @@
// Karlsruhe Institute of Technology (Author: Ngoc Thang Vu)
// Brno University of Technology (Author: Karel Vesely)
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
...
...
src/nnetbin/nnet-train-frmshuff.cc
View file @
5c01929a
...
...
@@ -2,6 +2,8 @@
// Copyright 2013 Brno University of Technology (Author: Karel Vesely)
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
...
...
src/nnetbin/nnet-train-lstm-streams.cc
View file @
5c01929a
...
...
@@ -40,9 +40,9 @@ int main(int argc, char *argv[]) {
"This version use pdf-posterior as targets, prepared typically by ali-to-post.
\n
"
"The updates are done per-utterance, shuffling options are dummy for compatibility reason.
\n
"
"
\n
"
"Usage:
bd-
nnet-train-lstm-streams [options] <feature-rspecifier> <targets-rspecifier> <model-in> [<model-out>]
\n
"
"Usage: nnet-train-lstm-streams [options] <feature-rspecifier> <targets-rspecifier> <model-in> [<model-out>]
\n
"
"e.g.:
\n
"
"
bd-
nnet-train-lstm-streams scp:feature.scp ark:posterior.ark nnet.init nnet.iter1
\n
"
;
" nnet-train-lstm-streams scp:feature.scp ark:posterior.ark nnet.init nnet.iter1
\n
"
;
ParseOptions
po
(
usage
);
...
...
src/nnetbin/nnet-train-perutt.cc
View file @
5c01929a
...
...
@@ -2,6 +2,8 @@
// Copyright 2011-2014 Brno University of Technology (Author: Karel Vesely)
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
...
...
src/onlinebin/online-audio-server-decode-faster.cc
View file @
5c01929a
...
...
@@ -81,7 +81,7 @@ int32 main(int argc, char *argv[]) {
const
char
*
usage
=
"Starts a TCP server that receives RAW audio and outputs aligned words.
\n
"
"A sample client can be found in: onlinebin/online-audio-client
\n\n
"
"Usage:
./
online-audio-server-decode-faster [options] model-in "
"Usage: online-audio-server-decode-faster [options] model-in "
"fst-in word-symbol-table silence-phones word_boundary_file tcp-port [lda-matrix-in]
\n\n
"
"example: online-audio-server-decode-faster --verbose=1 --rt-min=0.5 --rt-max=3.0 --max-active=6000
\n
"
"--beam=72.0 --acoustic-scale=0.0769 final.mdl graph/HCLG.fst graph/words.txt '1:2:3:4:5'
\n
"
...
...
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment