Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
Mace
提交
0e4a49a8
Mace
项目概览
慢慢CG
/
Mace
与 Fork 源项目一致
Fork自
Xiaomi / Mace
通知
1
Star
0
Fork
0
代码
文件
提交
分支
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看板
提交
0e4a49a8
编写于
3月 05, 2018
作者:
L
Liangliang He
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add model checksum and change build path format
上级
16f2f26c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
15 addition
and
6 deletion
+15
-6
python/tools/tf_converter.py
python/tools/tf_converter.py
+15
-6
未找到文件。
python/tools/tf_converter.py
浏览文件 @
0e4a49a8
...
@@ -12,19 +12,23 @@ from lib.python.tools import source_converter_lib
...
@@ -12,19 +12,23 @@ from lib.python.tools import source_converter_lib
FLAGS
=
None
FLAGS
=
None
def
md5
(
fname
):
def
file_checksum
(
fname
):
hash_
md5
=
hashlib
.
md5
()
hash_
func
=
hashlib
.
sha256
()
with
open
(
fname
,
"rb"
)
as
f
:
with
open
(
fname
,
"rb"
)
as
f
:
for
chunk
in
iter
(
lambda
:
f
.
read
(
4096
),
b
""
):
for
chunk
in
iter
(
lambda
:
f
.
read
(
4096
),
b
""
):
hash_
md5
.
update
(
chunk
)
hash_
func
.
update
(
chunk
)
return
hash_
md5
.
hexdigest
()
return
hash_
func
.
hexdigest
()
def
main
(
unused_args
):
def
main
(
unused_args
):
if
not
gfile
.
Exists
(
FLAGS
.
input
):
if
not
gfile
.
Exists
(
FLAGS
.
input
):
print
(
"Input graph file '"
+
FLAGS
.
input
+
"' does not exist!"
)
print
(
"Input graph file '"
+
FLAGS
.
input
+
"' does not exist!"
)
return
-
1
return
-
1
mode_pb_checksum
=
md5
(
FLAGS
.
input
)
model_checksum
=
file_checksum
(
FLAGS
.
input
)
if
FLAGS
.
model_checksum
!=
""
and
FLAGS
.
model_checksum
!=
model_checksum
:
print
(
"Model checksum mismatch: %s != %s"
%
(
model_checksum
,
FLAGS
.
model_checksum
))
return
-
1
input_graph_def
=
tf
.
GraphDef
()
input_graph_def
=
tf
.
GraphDef
()
with
gfile
.
Open
(
FLAGS
.
input
,
"rb"
)
as
f
:
with
gfile
.
Open
(
FLAGS
.
input
,
"rb"
)
as
f
:
data
=
f
.
read
()
data
=
f
.
read
()
...
@@ -42,7 +46,7 @@ def main(unused_args):
...
@@ -42,7 +46,7 @@ def main(unused_args):
FLAGS
.
data_type
,
FLAGS
.
runtime
,
FLAGS
.
winograd
)
FLAGS
.
data_type
,
FLAGS
.
runtime
,
FLAGS
.
winograd
)
if
FLAGS
.
output_type
==
'source'
:
if
FLAGS
.
output_type
==
'source'
:
source_converter_lib
.
convert_to_source
(
output_graph_def
,
mode
_pb
_checksum
,
FLAGS
.
template
,
FLAGS
.
obfuscate
,
source_converter_lib
.
convert_to_source
(
output_graph_def
,
mode
l
_checksum
,
FLAGS
.
template
,
FLAGS
.
obfuscate
,
FLAGS
.
model_tag
,
FLAGS
.
output
,
FLAGS
.
runtime
,
FLAGS
.
embed_model_data
)
FLAGS
.
model_tag
,
FLAGS
.
output
,
FLAGS
.
runtime
,
FLAGS
.
embed_model_data
)
else
:
else
:
with
gfile
.
GFile
(
FLAGS
.
output
,
"wb"
)
as
f
:
with
gfile
.
GFile
(
FLAGS
.
output
,
"wb"
)
as
f
:
...
@@ -69,6 +73,11 @@ def parse_args():
...
@@ -69,6 +73,11 @@ def parse_args():
type
=
str
,
type
=
str
,
default
=
""
,
default
=
""
,
help
=
"TensorFlow
\'
GraphDef
\'
file to load."
)
help
=
"TensorFlow
\'
GraphDef
\'
file to load."
)
parser
.
add_argument
(
"--model_checksum"
,
type
=
str
,
default
=
""
,
help
=
"Model file sha256 checksum"
)
parser
.
add_argument
(
parser
.
add_argument
(
"--output"
,
"--output"
,
type
=
str
,
type
=
str
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录