Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
38cf5629
D
DeepSpeech
项目概览
PaddlePaddle
/
DeepSpeech
大约 1 年 前同步成功
通知
207
Star
8425
Fork
1598
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
245
列表
看板
标记
里程碑
合并请求
3
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
DeepSpeech
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
245
Issue
245
列表
看板
标记
里程碑
合并请求
3
合并请求
3
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
38cf5629
编写于
11月 04, 2021
作者:
H
Hui Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix reference format
上级
c463a00f
变更
59
显示空白变更内容
内联
并排
Showing
59 changed file
with
60 addition
and
60 deletion
+60
-60
paddlespeech/s2t/decoders/beam_search/beam_search.py
paddlespeech/s2t/decoders/beam_search/beam_search.py
+1
-1
paddlespeech/s2t/decoders/scorers/ctc.py
paddlespeech/s2t/decoders/scorers/ctc.py
+1
-1
paddlespeech/s2t/decoders/scorers/length_bonus.py
paddlespeech/s2t/decoders/scorers/length_bonus.py
+1
-1
paddlespeech/s2t/decoders/scorers/ngram.py
paddlespeech/s2t/decoders/scorers/ngram.py
+1
-1
paddlespeech/s2t/decoders/scorers/scorer_interface.py
paddlespeech/s2t/decoders/scorers/scorer_interface.py
+1
-1
paddlespeech/s2t/decoders/utils.py
paddlespeech/s2t/decoders/utils.py
+1
-1
paddlespeech/s2t/io/batchfy.py
paddlespeech/s2t/io/batchfy.py
+1
-1
paddlespeech/s2t/io/converter.py
paddlespeech/s2t/io/converter.py
+1
-1
paddlespeech/s2t/io/dataset.py
paddlespeech/s2t/io/dataset.py
+2
-2
paddlespeech/s2t/io/reader.py
paddlespeech/s2t/io/reader.py
+1
-1
paddlespeech/s2t/models/asr_interface.py
paddlespeech/s2t/models/asr_interface.py
+1
-1
paddlespeech/s2t/models/lm/transformer.py
paddlespeech/s2t/models/lm/transformer.py
+1
-1
paddlespeech/s2t/models/lm_interface.py
paddlespeech/s2t/models/lm_interface.py
+1
-1
paddlespeech/s2t/models/st_interface.py
paddlespeech/s2t/models/st_interface.py
+1
-1
paddlespeech/s2t/modules/attention.py
paddlespeech/s2t/modules/attention.py
+1
-1
paddlespeech/s2t/modules/cmvn.py
paddlespeech/s2t/modules/cmvn.py
+1
-1
paddlespeech/s2t/modules/conformer_convolution.py
paddlespeech/s2t/modules/conformer_convolution.py
+1
-1
paddlespeech/s2t/modules/decoder.py
paddlespeech/s2t/modules/decoder.py
+1
-1
paddlespeech/s2t/modules/decoder_layer.py
paddlespeech/s2t/modules/decoder_layer.py
+1
-1
paddlespeech/s2t/modules/embedding.py
paddlespeech/s2t/modules/embedding.py
+1
-1
paddlespeech/s2t/modules/encoder.py
paddlespeech/s2t/modules/encoder.py
+1
-1
paddlespeech/s2t/modules/encoder_layer.py
paddlespeech/s2t/modules/encoder_layer.py
+1
-1
paddlespeech/s2t/modules/loss.py
paddlespeech/s2t/modules/loss.py
+1
-1
paddlespeech/s2t/modules/mask.py
paddlespeech/s2t/modules/mask.py
+1
-1
paddlespeech/s2t/modules/positionwise_feed_forward.py
paddlespeech/s2t/modules/positionwise_feed_forward.py
+1
-1
paddlespeech/s2t/modules/subsampling.py
paddlespeech/s2t/modules/subsampling.py
+1
-1
paddlespeech/s2t/training/extensions/evaluator.py
paddlespeech/s2t/training/extensions/evaluator.py
+1
-1
paddlespeech/s2t/training/extensions/extension.py
paddlespeech/s2t/training/extensions/extension.py
+1
-1
paddlespeech/s2t/training/extensions/plot.py
paddlespeech/s2t/training/extensions/plot.py
+1
-1
paddlespeech/s2t/training/extensions/snapshot.py
paddlespeech/s2t/training/extensions/snapshot.py
+1
-1
paddlespeech/s2t/training/optimizer.py
paddlespeech/s2t/training/optimizer.py
+1
-1
paddlespeech/s2t/training/reporter.py
paddlespeech/s2t/training/reporter.py
+1
-1
paddlespeech/s2t/training/scheduler.py
paddlespeech/s2t/training/scheduler.py
+1
-1
paddlespeech/s2t/training/triggers/compare_value_trigger.py
paddlespeech/s2t/training/triggers/compare_value_trigger.py
+1
-1
paddlespeech/s2t/training/updaters/standard_updater.py
paddlespeech/s2t/training/updaters/standard_updater.py
+1
-1
paddlespeech/s2t/training/updaters/trainer.py
paddlespeech/s2t/training/updaters/trainer.py
+1
-1
paddlespeech/s2t/training/updaters/updater.py
paddlespeech/s2t/training/updaters/updater.py
+1
-1
paddlespeech/s2t/transform/add_deltas.py
paddlespeech/s2t/transform/add_deltas.py
+1
-1
paddlespeech/s2t/transform/channel_selector.py
paddlespeech/s2t/transform/channel_selector.py
+1
-1
paddlespeech/s2t/transform/cmvn.py
paddlespeech/s2t/transform/cmvn.py
+1
-1
paddlespeech/s2t/transform/functional.py
paddlespeech/s2t/transform/functional.py
+1
-1
paddlespeech/s2t/transform/perturb.py
paddlespeech/s2t/transform/perturb.py
+1
-1
paddlespeech/s2t/transform/spec_augment.py
paddlespeech/s2t/transform/spec_augment.py
+1
-1
paddlespeech/s2t/transform/spectrogram.py
paddlespeech/s2t/transform/spectrogram.py
+1
-1
paddlespeech/s2t/transform/transform_interface.py
paddlespeech/s2t/transform/transform_interface.py
+1
-1
paddlespeech/s2t/transform/transformation.py
paddlespeech/s2t/transform/transformation.py
+1
-1
paddlespeech/s2t/transform/wpe.py
paddlespeech/s2t/transform/wpe.py
+1
-1
paddlespeech/s2t/utils/check_kwargs.py
paddlespeech/s2t/utils/check_kwargs.py
+1
-1
paddlespeech/s2t/utils/cli_readers.py
paddlespeech/s2t/utils/cli_readers.py
+1
-1
paddlespeech/s2t/utils/cli_utils.py
paddlespeech/s2t/utils/cli_utils.py
+1
-1
paddlespeech/s2t/utils/cli_writers.py
paddlespeech/s2t/utils/cli_writers.py
+1
-1
paddlespeech/s2t/utils/ctc_utils.py
paddlespeech/s2t/utils/ctc_utils.py
+1
-1
paddlespeech/s2t/utils/dynamic_import.py
paddlespeech/s2t/utils/dynamic_import.py
+1
-1
paddlespeech/t2s/training/extension.py
paddlespeech/t2s/training/extension.py
+1
-1
paddlespeech/t2s/training/extensions/evaluator.py
paddlespeech/t2s/training/extensions/evaluator.py
+1
-1
paddlespeech/t2s/training/extensions/snapshot.py
paddlespeech/t2s/training/extensions/snapshot.py
+1
-1
paddlespeech/t2s/training/reporter.py
paddlespeech/t2s/training/reporter.py
+1
-1
paddlespeech/t2s/training/updater.py
paddlespeech/t2s/training/updater.py
+1
-1
paddlespeech/t2s/training/updaters/standard_updater.py
paddlespeech/t2s/training/updaters/standard_updater.py
+1
-1
未找到文件。
paddlespeech/s2t/decoders/beam_search/beam_search.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""Beam search module."""
from
itertools
import
chain
from
typing
import
Any
...
...
paddlespeech/s2t/decoders/scorers/ctc.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""ScorerInterface implementation for CTC."""
import
numpy
as
np
import
paddle
...
...
paddlespeech/s2t/decoders/scorers/length_bonus.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""Length bonus module."""
from
typing
import
Any
from
typing
import
List
...
...
paddlespeech/s2t/decoders/scorers/ngram.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""Ngram lm implement."""
from
abc
import
ABC
...
...
paddlespeech/s2t/decoders/scorers/scorer_interface.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""Scorer interface module."""
import
warnings
from
typing
import
Any
...
...
paddlespeech/s2t/decoders/utils.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
numpy
as
np
from
paddlespeech.s2t.utils.log
import
Log
...
...
paddlespeech/s2t/io/batchfy.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
itertools
import
numpy
as
np
...
...
paddlespeech/s2t/io/converter.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
numpy
as
np
from
paddlespeech.s2t.io.utility
import
pad_list
...
...
paddlespeech/s2t/io/dataset.py
浏览文件 @
38cf5629
...
...
@@ -11,8 +11,8 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
from
typing
import
Optional
from
paddle.io
import
Dataset
...
...
paddlespeech/s2t/io/reader.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
from
collections
import
OrderedDict
import
kaldiio
...
...
paddlespeech/s2t/models/asr_interface.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""ASR Interface module."""
import
argparse
...
...
paddlespeech/s2t/models/lm/transformer.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
from
typing
import
Any
from
typing
import
List
from
typing
import
Tuple
...
...
paddlespeech/s2t/models/lm_interface.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""Language model interface."""
import
argparse
...
...
paddlespeech/s2t/models/st_interface.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""ST Interface module."""
from
.asr_interface
import
ASRInterface
from
paddlespeech.s2t.utils.dynamic_import
import
dynamic_import
...
...
paddlespeech/s2t/modules/attention.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""Multi-Head Attention layer definition."""
import
math
from
typing
import
Optional
...
...
paddlespeech/s2t/modules/cmvn.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
import
paddle
from
paddle
import
nn
...
...
paddlespeech/s2t/modules/conformer_convolution.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""ConvolutionModule definition."""
from
typing
import
Optional
from
typing
import
Tuple
...
...
paddlespeech/s2t/modules/decoder.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""Decoder definition."""
from
typing
import
Any
from
typing
import
List
...
...
paddlespeech/s2t/modules/decoder_layer.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""Decoder self-attention layer definition."""
from
typing
import
Optional
from
typing
import
Tuple
...
...
paddlespeech/s2t/modules/embedding.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""Positonal Encoding Module."""
import
math
from
typing
import
Tuple
...
...
paddlespeech/s2t/modules/encoder.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""Encoder definition."""
from
typing
import
List
from
typing
import
Optional
...
...
paddlespeech/s2t/modules/encoder_layer.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""Encoder self-attention layer definition."""
from
typing
import
Optional
from
typing
import
Tuple
...
...
paddlespeech/s2t/modules/loss.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
import
inspect
import
paddle
...
...
paddlespeech/s2t/modules/mask.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
import
paddle
from
paddlespeech.s2t.utils.log
import
Log
...
...
paddlespeech/s2t/modules/positionwise_feed_forward.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""Positionwise feed forward layer definition."""
import
paddle
from
paddle
import
nn
...
...
paddlespeech/s2t/modules/subsampling.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
"""Subsampling layer definition."""
from
typing
import
Tuple
...
...
paddlespeech/s2t/training/extensions/evaluator.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
from
typing
import
Dict
import
paddle
...
...
paddlespeech/s2t/training/extensions/extension.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
PRIORITY_WRITER
=
300
PRIORITY_EDITOR
=
200
PRIORITY_READER
=
100
...
...
paddlespeech/s2t/training/extensions/plot.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
import
copy
import
os
...
...
paddlespeech/s2t/training/extensions/snapshot.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
import
os
from
datetime
import
datetime
from
pathlib
import
Path
...
...
paddlespeech/s2t/training/optimizer.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
from
typing
import
Any
from
typing
import
Dict
from
typing
import
Text
...
...
paddlespeech/s2t/training/reporter.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
import
contextlib
import
math
from
collections
import
defaultdict
...
...
paddlespeech/s2t/training/scheduler.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
from
typing
import
Any
from
typing
import
Dict
from
typing
import
Text
...
...
paddlespeech/s2t/training/triggers/compare_value_trigger.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
from
..reporter
import
DictSummary
from
.utils
import
get_trigger
...
...
paddlespeech/s2t/training/updaters/standard_updater.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
from
typing
import
Dict
from
typing
import
Optional
...
...
paddlespeech/s2t/training/updaters/trainer.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
import
sys
import
traceback
from
collections
import
OrderedDict
...
...
paddlespeech/s2t/training/updaters/updater.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
from
dataclasses
import
dataclass
import
paddle
...
...
paddlespeech/s2t/transform/add_deltas.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
numpy
as
np
...
...
paddlespeech/s2t/transform/channel_selector.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
numpy
...
...
paddlespeech/s2t/transform/cmvn.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
io
import
h5py
...
...
paddlespeech/s2t/transform/functional.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
inspect
from
paddlespeech.s2t.transform.transform_interface
import
TransformInterface
...
...
paddlespeech/s2t/transform/perturb.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
librosa
import
numpy
import
scipy
...
...
paddlespeech/s2t/transform/spec_augment.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""Spec Augment module for preprocessing i.e., data augmentation"""
import
random
...
...
paddlespeech/s2t/transform/spectrogram.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
librosa
import
numpy
as
np
...
...
paddlespeech/s2t/transform/transform_interface.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
class
TransformInterface
:
...
...
paddlespeech/s2t/transform/transformation.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
"""Transformation module."""
import
copy
import
io
...
...
paddlespeech/s2t/transform/wpe.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
from
nara_wpe.wpe
import
wpe
...
...
paddlespeech/s2t/utils/check_kwargs.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
inspect
...
...
paddlespeech/s2t/utils/cli_readers.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
io
import
logging
import
sys
...
...
paddlespeech/s2t/utils/cli_utils.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
sys
from
collections.abc
import
Sequence
from
distutils.util
import
strtobool
as
dist_strtobool
...
...
paddlespeech/s2t/utils/cli_writers.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
from
pathlib
import
Path
from
typing
import
Dict
...
...
paddlespeech/s2t/utils/ctc_utils.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference wenet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from wenet(https://github.com/wenet-e2e/wenet
)
from
typing
import
List
import
numpy
as
np
...
...
paddlespeech/s2t/utils/dynamic_import.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference espnet Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0
)
#
Modified from espnet(https://github.com/espnet/espnet
)
import
importlib
import
inspect
from
typing
import
Any
...
...
paddlespeech/t2s/training/extension.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
from
typing
import
Callable
PRIORITY_WRITER
=
300
...
...
paddlespeech/t2s/training/extensions/evaluator.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
from
typing
import
Dict
import
paddle
...
...
paddlespeech/t2s/training/extensions/snapshot.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
import
logging
import
os
from
datetime
import
datetime
...
...
paddlespeech/t2s/training/reporter.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
import
contextlib
import
math
from
collections
import
defaultdict
...
...
paddlespeech/t2s/training/updater.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
import
logging
from
dataclasses
import
dataclass
...
...
paddlespeech/t2s/training/updaters/standard_updater.py
浏览文件 @
38cf5629
...
...
@@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Reference chainer MIT (https://opensource.org/licenses/MIT
)
#
Modified from chainer(https://github.com/chainer/chainer
)
import
logging
import
time
from
typing
import
Dict
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录