Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
Mace
提交
a1c6ba92
Mace
项目概览
Xiaomi
/
Mace
通知
106
Star
40
Fork
27
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Mace
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
a1c6ba92
编写于
3月 28, 2018
作者:
L
liuqi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix input_files config bug.
上级
25a874f7
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
17 addition
and
17 deletion
+17
-17
mace/kernels/reorganize.h
mace/kernels/reorganize.h
+0
-1
mace/python/tools/caffe_converter_lib.py
mace/python/tools/caffe_converter_lib.py
+0
-1
tools/mace_tools.py
tools/mace_tools.py
+17
-15
未找到文件。
mace/kernels/reorganize.h
浏览文件 @
a1c6ba92
...
...
@@ -74,7 +74,6 @@ struct ReOrganizeFunctor {
}
}
}
}
};
...
...
mace/python/tools/caffe_converter_lib.py
浏览文件 @
a1c6ba92
...
...
@@ -789,7 +789,6 @@ class CaffeConverter(object):
input_shape
=
op
.
parents
[
0
].
output_shape_map
[
op
.
layer
.
bottom
[
0
]]
output_shape
=
input_shape
shape_param
=
np
.
asarray
(
op
.
layer
.
reshape_param
.
shape
.
dim
)[[
0
,
3
,
2
,
1
]]
print
shape_param
for
i
in
range
(
len
(
shape_param
)):
if
shape_param
[
i
]
!=
0
:
output_shape
[
i
]
=
shape_param
[
i
]
...
...
tools/mace_tools.py
浏览文件 @
a1c6ba92
...
...
@@ -76,26 +76,28 @@ def generate_random_input(target_soc, model_output_dir,
target_soc
,
model_output_dir
,
int
(
generate_data_or_not
))
run_command
(
command
)
input_name_list
=
[]
input_file_list
=
[]
if
isinstance
(
input_names
,
list
):
input_name_list
.
extend
(
input_names
)
else
:
input_name_list
.
append
(
input_names
)
if
isinstance
(
input_files
,
list
):
input_file_list
.
extend
(
input_files
)
else
:
input_file_list
.
append
(
input_files
)
assert
len
(
input_file_list
)
==
len
(
input_name_list
)
for
i
in
range
(
len
(
input_file_list
)):
if
input_file_list
[
i
]
is
not
None
:
dst_input_file
=
model_output_dir
+
'/'
+
input_file_name
(
input_name_list
[
i
])
if
input_file_list
[
i
].
startswith
(
"http://"
)
or
\
input_file_list
[
i
].
startswith
(
"https://"
):
urllib
.
urlretrieve
(
input_file_list
[
i
],
dst_input_file
)
else
:
print
'Copy input data:'
,
dst_input_file
shutil
.
copy
(
input_file_list
[
i
],
dst_input_file
)
if
len
(
input_file_list
)
!=
0
:
input_name_list
=
[]
if
isinstance
(
input_names
,
list
):
input_name_list
.
extend
(
input_names
)
else
:
input_name_list
.
append
(
input_names
)
if
len
(
input_file_list
)
!=
len
(
input_name_list
):
raise
Exception
(
'If input_files set, the input files should match the input names.'
)
for
i
in
range
(
len
(
input_file_list
)):
if
input_file_list
[
i
]
is
not
None
:
dst_input_file
=
model_output_dir
+
'/'
+
input_file_name
(
input_name_list
[
i
])
if
input_file_list
[
i
].
startswith
(
"http://"
)
or
\
input_file_list
[
i
].
startswith
(
"https://"
):
urllib
.
urlretrieve
(
input_file_list
[
i
],
dst_input_file
)
else
:
print
'Copy input data:'
,
dst_input_file
shutil
.
copy
(
input_file_list
[
i
],
dst_input_file
)
def
generate_model_code
():
command
=
"bash tools/generate_model_code.sh"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录