Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
94592c06
X
X2Paddle
项目概览
PaddlePaddle
/
X2Paddle
大约 1 年 前同步成功
通知
328
Star
698
Fork
167
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
26
列表
看板
标记
里程碑
合并请求
4
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
X2Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
26
Issue
26
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
94592c06
编写于
9月 16, 2019
作者:
M
mamingjie-China
提交者:
GitHub
9月 16, 2019
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1 from PaddlePaddle/develop
更新数据
上级
0cbf3502
461f4cb4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
2 deletion
+12
-2
x2paddle/onnx_infer.py
x2paddle/onnx_infer.py
+11
-1
x2paddle/op_mapper/tf_op_mapper.py
x2paddle/op_mapper/tf_op_mapper.py
+1
-1
未找到文件。
x2paddle/onnx_infer.py
浏览文件 @
94592c06
import
onnxruntime
as
rt
import
os
import
sys
import
numpy
as
np
...
...
@@ -19,6 +18,17 @@ def arg_parser():
def
main
():
try
:
import
onnxruntime
as
rt
version
=
rt
.
__version__
if
version
!=
'0.4.0'
:
print
(
"onnxruntime==0.4.0 is required"
)
return
except
:
print
(
"onnxruntime is not installed, use
\"
pip install onnxruntime==0.4.0
\"
."
)
return
parser
=
arg_parser
()
args
=
parser
.
parse_args
()
...
...
x2paddle/op_mapper/tf_op_mapper.py
浏览文件 @
94592c06
...
...
@@ -591,7 +591,7 @@ class TFOpMapper(OpMapper):
# to change [192, -1]->[-1, 192], allways put -1 in the first dimension
# optimization for Paddle-Lite
in_shape
=
input
.
out_shapes
[
0
]
if
is_variable
and
in_shape
.
count
(
-
1
)
<
1
:
if
not
is_variable
and
in_shape
.
count
(
-
1
)
<
1
:
total_size
=
1
for
i
in
range
(
len
(
in_shape
)):
total_size
*=
in_shape
[
i
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录