Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
AutoDL
提交
097714ca
A
AutoDL
项目概览
PaddlePaddle
/
AutoDL
通知
3
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
1
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
AutoDL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
097714ca
编写于
4月 22, 2019
作者:
J
jerrywgz
提交者:
GitHub
4月 22, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refine py3 for LRC (#8)
上级
693ab9b8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
6 addition
and
1 deletion
+6
-1
LRC/reader_cifar.py
LRC/reader_cifar.py
+4
-1
LRC/voting.py
LRC/voting.py
+2
-0
未找到文件。
LRC/reader_cifar.py
浏览文件 @
097714ca
...
@@ -127,7 +127,10 @@ def reader_creator_filepath(filename, sub_name, is_training, args):
...
@@ -127,7 +127,10 @@ def reader_creator_filepath(filename, sub_name, is_training, args):
datasets
=
[]
datasets
=
[]
for
name
in
names
:
for
name
in
names
:
print
(
"Reading file "
+
name
)
print
(
"Reading file "
+
name
)
batch
=
pickle
.
load
(
open
(
filename
+
name
,
'rb'
))
try
:
batch
=
pickle
.
load
(
open
(
filename
+
name
,
'rb'
),
encode
=
'latin1'
)
except
TypeError
:
batch
=
pickle
.
load
(
open
(
filename
+
name
,
'rb'
))
data
=
batch
[
'data'
]
data
=
batch
[
'data'
]
labels
=
batch
.
get
(
'labels'
,
batch
.
get
(
'fine_labels'
,
None
))
labels
=
batch
.
get
(
'labels'
,
batch
.
get
(
'fine_labels'
,
None
))
assert
labels
is
not
None
assert
labels
is
not
None
...
...
LRC/voting.py
浏览文件 @
097714ca
...
@@ -12,6 +12,8 @@ pred = np.zeros((10000, 10))
...
@@ -12,6 +12,8 @@ pred = np.zeros((10000, 10))
fl
.
sort
()
fl
.
sort
()
i
=
0
i
=
0
for
f
in
fl
:
for
f
in
fl
:
if
'init'
in
f
:
continue
print
(
f
)
print
(
f
)
pred
+=
pickle
.
load
(
open
(
os
.
path
.
join
(
model_path
,
f
)))
pred
+=
pickle
.
load
(
open
(
os
.
path
.
join
(
model_path
,
f
)))
print
(
np
.
mean
(
np
.
argmax
(
pred
,
axis
=
1
)
==
labels
))
print
(
np
.
mean
(
np
.
argmax
(
pred
,
axis
=
1
)
==
labels
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录