Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
df8da649
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看板
提交
df8da649
编写于
8月 06, 2019
作者:
S
SunAhong1993
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix the convert.py
上级
8ec03d57
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
16 addition
and
17 deletion
+16
-17
x2paddle/convert.py
x2paddle/convert.py
+8
-8
x2paddle/decoder/caffe_decoder.py
x2paddle/decoder/caffe_decoder.py
+8
-9
未找到文件。
x2paddle/convert.py
浏览文件 @
df8da649
...
@@ -45,11 +45,12 @@ def arg_parser():
...
@@ -45,11 +45,12 @@ def arg_parser():
type
=
_text_type
,
type
=
_text_type
,
default
=
None
,
default
=
None
,
help
=
"define which deeplearning framework"
)
help
=
"define which deeplearning framework"
)
parser
.
add_argument
(
"--caffe_proto"
,
parser
.
add_argument
(
"--caffe_proto"
,
"-c"
,
"-c"
,
type
=
_text_type
,
type
=
_text_type
,
default
=
'./x2paddle/decoder/caffe_pb2.py'
,
default
=
None
,
help
=
"
caffe proto file of caffe model"
)
help
=
"the .py file compiled by
caffe proto file of caffe model"
)
parser
.
add_argument
(
"--version"
,
parser
.
add_argument
(
"--version"
,
"-v"
,
"-v"
,
action
=
"store_true"
,
action
=
"store_true"
,
...
@@ -92,9 +93,8 @@ def tf2paddle(model_path, save_dir):
...
@@ -92,9 +93,8 @@ def tf2paddle(model_path, save_dir):
def
caffe2paddle
(
proto
,
weight
,
save_dir
,
caffe_proto
):
def
caffe2paddle
(
proto
,
weight
,
save_dir
,
caffe_proto
):
if
caffe_proto
is
not
None
:
if
caffe_proto
is
not
None
:
import
os
import
os
print
(
caffe_proto
)
if
caffe_proto
is
not
None
and
not
os
.
path
.
isfile
(
caffe_proto
):
if
caffe_proto
!=
'None'
and
not
os
.
path
.
isfile
(
caffe_proto
):
print
(
"The .py file compiled by caffe.proto is not exist."
)
print
(
"The file that resolve caffe is not exist."
)
return
return
else
:
else
:
try
:
try
:
...
...
x2paddle/decoder/caffe_decoder.py
浏览文件 @
df8da649
...
@@ -24,7 +24,7 @@ from x2paddle.op_mapper import caffe_shape
...
@@ -24,7 +24,7 @@ from x2paddle.op_mapper import caffe_shape
class
CaffeResolver
(
object
):
class
CaffeResolver
(
object
):
def
__init__
(
self
,
caffe_proto
):
def
__init__
(
self
,
caffe_proto
):
self
.
proto_path
=
caffe_proto
self
.
proto_path
=
caffe_proto
if
self
.
proto_path
==
'None'
:
if
self
.
proto_path
is
None
:
self
.
use_default
=
True
self
.
use_default
=
True
else
:
else
:
self
.
use_default
=
False
self
.
use_default
=
False
...
@@ -143,11 +143,12 @@ class CaffeGraph(Graph):
...
@@ -143,11 +143,12 @@ class CaffeGraph(Graph):
]))).
to_proto
().
layer
[
0
])
]))).
to_proto
().
layer
[
0
])
except
:
except
:
print
(
print
(
"The .py fi
el
compiled by .proto file does not work for the old style prototxt. "
"The .py fi
le
compiled by .proto file does not work for the old style prototxt. "
)
)
print
(
"There are 2 solutions for you as below:"
)
print
(
"There are 2 solutions for you as below:"
)
print
(
print
(
"1. install caffe and set
\'
--caffe_proto=None
\'
."
)
"1. install caffe and don
\'
t set
\'
--caffe_proto
\'
."
)
print
(
print
(
"2. modify your .prototxt from the old style to the new style."
"2. modify your .prototxt from the old style to the new style."
)
)
...
@@ -166,11 +167,12 @@ class CaffeGraph(Graph):
...
@@ -166,11 +167,12 @@ class CaffeGraph(Graph):
]))).
to_proto
().
layer
[
0
])
]))).
to_proto
().
layer
[
0
])
except
:
except
:
print
(
print
(
"The .py fi
el
compiled by .proto file does not work for the old style prototxt. "
"The .py fi
le
compiled by .proto file does not work for the old style prototxt. "
)
)
print
(
"There are 2 solutions for you as below:"
)
print
(
"There are 2 solutions for you as below:"
)
print
(
print
(
"1. install caffe and set
\'
--caffe_proto=None
\'
."
)
"1. install caffe and don
\'
t set
\'
--caffe_proto
\'
."
)
print
(
print
(
"2. modify your .prototxt from the old style to the new style."
"2. modify your .prototxt from the old style to the new style."
)
)
...
@@ -219,10 +221,7 @@ class CaffeGraph(Graph):
...
@@ -219,10 +221,7 @@ class CaffeGraph(Graph):
class
CaffeDecoder
(
object
):
class
CaffeDecoder
(
object
):
def
__init__
(
self
,
def
__init__
(
self
,
proto_path
,
model_path
,
caffe_proto
=
None
):
proto_path
,
model_path
,
caffe_proto
=
'./x2paddle/decoder/caffe_pb2.py'
):
self
.
proto_path
=
proto_path
self
.
proto_path
=
proto_path
self
.
model_path
=
model_path
self
.
model_path
=
model_path
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录