Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
Mace
提交
9142790a
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,发现更多精彩内容 >>
提交
9142790a
编写于
7月 17, 2018
作者:
刘
刘琦
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' into 'master'
Calculate shape if it cannot be inferred See merge request !666
上级
fc1c855e
e29dcb56
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
16 addition
and
7 deletion
+16
-7
mace/python/tools/converter_tool/tensorflow_converter.py
mace/python/tools/converter_tool/tensorflow_converter.py
+16
-7
未找到文件。
mace/python/tools/converter_tool/tensorflow_converter.py
浏览文件 @
9142790a
...
...
@@ -200,6 +200,8 @@ class TensorflowConverter(base_converter.ConverterInterface):
tf_graph_def
=
tf
.
GraphDef
()
with
tf
.
gfile
.
Open
(
src_model_file
,
'rb'
)
as
f
:
tf_graph_def
.
ParseFromString
(
f
.
read
())
self
.
_placeholders
=
{}
self
.
add_shape_info
(
tf_graph_def
)
with
tf
.
Session
()
as
session
:
...
...
@@ -240,6 +242,8 @@ class TensorflowConverter(base_converter.ConverterInterface):
tensor_shape_pb2
.
TensorShapeProto
.
Dim
(
size
=
i
)
for
i
in
input_node
.
shape
])
self
.
_placeholders
[
node
.
name
+
':0'
]
=
\
np
.
zeros
(
shape
=
input_node
.
shape
,
dtype
=
float
)
@
staticmethod
def
get_scope
(
tensor_name
):
...
...
@@ -288,13 +292,18 @@ class TensorflowConverter(base_converter.ConverterInterface):
# this function tries to infer tensor shape, but some dimension shape
# may be undefined due to variance of input length
@
staticmethod
def
infer_tensor_shape
(
tensor
):
shape
=
tensor
.
shape
.
as_list
()
def
normalize_func
(
dim
):
return
dim
if
dim
else
-
1
return
[
normalize_func
(
dim
)
for
dim
in
shape
]
def
infer_tensor_shape
(
self
,
tensor
):
inferred_tensor_shape
=
tensor
.
shape
.
as_list
()
inferred_success
=
True
for
_
,
dim
in
enumerate
(
inferred_tensor_shape
):
if
dim
is
None
:
inferred_success
=
False
break
if
inferred_success
:
return
inferred_tensor_shape
tensor_shape
=
tf
.
shape
(
tensor
).
eval
(
feed_dict
=
self
.
_placeholders
)
return
tensor_shape
def
convert_nop
(
self
,
tf_op
):
pass
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录