Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
8d3464c0
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,发现更多精彩内容 >>
未验证
提交
8d3464c0
编写于
11月 01, 2022
作者:
Z
Zth9730
提交者:
GitHub
11月 01, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[s2t] Update wav2vec2 license (#2600)
上级
e1817022
变更
13
显示空白变更内容
内联
并排
Showing
13 changed file
with
105 addition
and
23 deletion
+105
-23
paddlespeech/s2t/exps/wav2vec2/bin/test.py
paddlespeech/s2t/exps/wav2vec2/bin/test.py
+1
-1
paddlespeech/s2t/exps/wav2vec2/bin/test_wav.py
paddlespeech/s2t/exps/wav2vec2/bin/test_wav.py
+1
-1
paddlespeech/s2t/exps/wav2vec2/bin/train.py
paddlespeech/s2t/exps/wav2vec2/bin/train.py
+1
-1
paddlespeech/s2t/exps/wav2vec2/model.py
paddlespeech/s2t/exps/wav2vec2/model.py
+1
-1
paddlespeech/s2t/models/wav2vec2/modules/VanillaNN.py
paddlespeech/s2t/models/wav2vec2/modules/VanillaNN.py
+16
-4
paddlespeech/s2t/models/wav2vec2/modules/activations.py
paddlespeech/s2t/models/wav2vec2/modules/activations.py
+1
-0
paddlespeech/s2t/models/wav2vec2/modules/containers.py
paddlespeech/s2t/models/wav2vec2/modules/containers.py
+16
-0
paddlespeech/s2t/models/wav2vec2/modules/linear.py
paddlespeech/s2t/models/wav2vec2/modules/linear.py
+17
-5
paddlespeech/s2t/models/wav2vec2/modules/modeling_outputs.py
paddlespeech/s2t/models/wav2vec2/modules/modeling_outputs.py
+1
-0
paddlespeech/s2t/models/wav2vec2/modules/modeling_wav2vec2.py
...lespeech/s2t/models/wav2vec2/modules/modeling_wav2vec2.py
+1
-1
paddlespeech/s2t/models/wav2vec2/processing/signal_processing.py
...peech/s2t/models/wav2vec2/processing/signal_processing.py
+20
-9
paddlespeech/s2t/models/wav2vec2/processing/speech_augmentation.py
...ech/s2t/models/wav2vec2/processing/speech_augmentation.py
+16
-0
paddlespeech/s2t/models/wav2vec2/wav2vec2_ASR.py
paddlespeech/s2t/models/wav2vec2/wav2vec2_ASR.py
+13
-0
未找到文件。
paddlespeech/s2t/exps/wav2vec2/bin/test.py
浏览文件 @
8d3464c0
# Copyright (c) 202
1
PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 202
2
PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
paddlespeech/s2t/exps/wav2vec2/bin/test_wav.py
浏览文件 @
8d3464c0
# Copyright (c) 202
1
PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 202
2
PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
paddlespeech/s2t/exps/wav2vec2/bin/train.py
浏览文件 @
8d3464c0
# Copyright (c) 202
1
PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 202
2
PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
paddlespeech/s2t/exps/wav2vec2/model.py
浏览文件 @
8d3464c0
# Copyright (c) 202
1
PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 202
2
PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
paddlespeech/s2t/models/wav2vec2/modules/VanillaNN.py
浏览文件 @
8d3464c0
"""Vanilla Neural Network for simple tests.
Authors
* Elena Rastorgueva 2020
"""
# Authors
# * Elena Rastorgueva 2020
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
# Modified from speechbrain(https://github.com/speechbrain/speechbrain/blob/develop/speechbrain/lobes/models/VanillaNN.py).
import
paddle
from
paddlespeech.s2t.models.wav2vec2.modules
import
containers
...
...
paddlespeech/s2t/models/wav2vec2/modules/activations.py
浏览文件 @
8d3464c0
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
paddlespeech/s2t/models/wav2vec2/modules/containers.py
浏览文件 @
8d3464c0
# Authors
# * Peter Plantinga 2020
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
# Modified from speechbrain(https://github.com/speechbrain/speechbrain/blob/develop/speechbrain/nnet/containers.py).
import
inspect
import
paddle
...
...
paddlespeech/s2t/models/wav2vec2/modules/linear.py
浏览文件 @
8d3464c0
"""Library implementing linear transformation.
Authors
* Mirco Ravanelli 2020
* Davide Borra 2021
"""
# Authors
# * Mirco Ravanelli 2020
# * Davide Borra 2021
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
# Modified from speechbrain(https://github.com/speechbrain/speechbrain/blob/develop/speechbrain/nnet/linear.py).
import
logging
import
paddle
...
...
paddlespeech/s2t/models/wav2vec2/modules/modeling_outputs.py
浏览文件 @
8d3464c0
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
paddlespeech/s2t/models/wav2vec2/modules/modeling_wav2vec2.py
浏览文件 @
8d3464c0
#
coding=utf-8
#
Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
# Copyright 2021 The Fairseq Authors and the HuggingFace Inc. team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
paddlespeech/s2t/models/wav2vec2/processing/signal_processing.py
浏览文件 @
8d3464c0
"""
Low level signal processing utilities
Authors
* Peter Plantinga 2020
* Francois Grondin 2020
* William Aris 2020
* Samuele Cornell 2020
* Sarthak Yadav 2022
"""
# Authors
# * Peter Plantinga 2020
# * Francois Grondin 2020
# * William Aris 2020
# * Samuele Cornell 2020
# * Sarthak Yadav 2022
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
# Modified from speechbrain(https://github.com/speechbrain/speechbrain/blob/develop/speechbrain/processing/signal_processing.py)
import
numpy
as
np
import
paddle
...
...
paddlespeech/s2t/models/wav2vec2/processing/speech_augmentation.py
浏览文件 @
8d3464c0
# Authors
# * Peter Plantinga 2020
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
# Modified from speechbrain(https://github.com/speechbrain/speechbrain/blob/develop/speechbrain/processing/speech_augmentation.py)
import
math
import
paddle
...
...
paddlespeech/s2t/models/wav2vec2/wav2vec2_ASR.py
浏览文件 @
8d3464c0
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
from
collections
import
defaultdict
from
typing
import
Dict
from
typing
import
List
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录