Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Parakeet
提交
5bd39671
P
Parakeet
项目概览
PaddlePaddle
/
Parakeet
通知
8
Star
3
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Parakeet
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5bd39671
编写于
11月 25, 2019
作者:
C
chenfeiyu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix sampler length
上级
6ea681be
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
2 addition
and
7 deletion
+2
-7
parakeet/data/datacargo.py
parakeet/data/datacargo.py
+1
-6
parakeet/data/sampler.py
parakeet/data/sampler.py
+1
-1
test/test_ljspeech.py
test/test_ljspeech.py
+0
-0
test/test_vctk.py
test/test_vctk.py
+0
-0
未找到文件。
parakeet/data/datacargo.py
浏览文件 @
5bd39671
...
@@ -39,18 +39,13 @@ class DataCargo(object):
...
@@ -39,18 +39,13 @@ class DataCargo(object):
@
property
@
property
def
_index_sampler
(
self
):
def
_index_sampler
(
self
):
# The actual sampler used for generating indices for `_DatasetFetcher`
# (see _utils/fetch.py) to read data at each time. This would be
# `.batch_sampler` if in auto-collation mode, and `.sampler` otherwise.
# We can't change `.sampler` and `.batch_sampler` attributes for BC
# reasons.
if
self
.
_auto_collation
:
if
self
.
_auto_collation
:
return
self
.
batch_sampler
return
self
.
batch_sampler
else
:
else
:
return
self
.
sampler
return
self
.
sampler
def
__len__
(
self
):
def
__len__
(
self
):
return
len
(
self
.
_index_sampler
)
# with iterable-style dataset, this will error
return
len
(
self
.
_index_sampler
)
class
DataIterator
(
object
):
class
DataIterator
(
object
):
def
__init__
(
self
,
loader
):
def
__init__
(
self
,
loader
):
...
...
parakeet/data/sampler.py
浏览文件 @
5bd39671
...
@@ -63,7 +63,7 @@ class RandomSampler(Sampler):
...
@@ -63,7 +63,7 @@ class RandomSampler(Sampler):
return
iter
(
np
.
random
.
permutation
(
n
).
tolist
())
return
iter
(
np
.
random
.
permutation
(
n
).
tolist
())
def
__len__
(
self
):
def
__len__
(
self
):
return
len
(
self
.
data_source
)
return
self
.
num_samples
class
SubsetRandomSampler
(
Sampler
):
class
SubsetRandomSampler
(
Sampler
):
...
...
test
s
/test_ljspeech.py
→
test/test_ljspeech.py
浏览文件 @
5bd39671
文件已移动
test
s
/test_vctk.py
→
test/test_vctk.py
浏览文件 @
5bd39671
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录