Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
d7bb6da1
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看板
提交
d7bb6da1
编写于
3月 28, 2019
作者:
S
sunyanfang01
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
compatible with python2 and python3
上级
ac848627
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
101 addition
and
93 deletion
+101
-93
caffe2fluid/convert.py
caffe2fluid/convert.py
+1
-1
caffe2fluid/examples/imagenet/tools/diff.sh
caffe2fluid/examples/imagenet/tools/diff.sh
+63
-60
caffe2fluid/examples/imagenet/tools/run.sh
caffe2fluid/examples/imagenet/tools/run.sh
+18
-12
caffe2fluid/kaffe/net_template.py
caffe2fluid/kaffe/net_template.py
+13
-14
caffe2fluid/kaffe/protobuf_to_dict.py
caffe2fluid/kaffe/protobuf_to_dict.py
+6
-6
未找到文件。
caffe2fluid/convert.py
浏览文件 @
d7bb6da1
...
@@ -64,7 +64,7 @@ def main():
...
@@ -64,7 +64,7 @@ def main():
""" main
""" main
"""
"""
parser
=
argparse
.
ArgumentParser
()
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'def_path'
,
help
=
'Model definition (.prototxt) path'
)
parser
.
add_argument
(
'
--
def_path'
,
help
=
'Model definition (.prototxt) path'
)
parser
.
add_argument
(
'--caffemodel'
,
help
=
'Model data (.caffemodel) path'
)
parser
.
add_argument
(
'--caffemodel'
,
help
=
'Model data (.caffemodel) path'
)
parser
.
add_argument
(
'--data-output-path'
,
help
=
'Converted data output path'
)
parser
.
add_argument
(
'--data-output-path'
,
help
=
'Converted data output path'
)
parser
.
add_argument
(
parser
.
add_argument
(
...
...
caffe2fluid/examples/imagenet/tools/diff.sh
浏览文件 @
d7bb6da1
#!/bin/bash
#!/bin/bash
#
#function:
#function:
# a tool used to check the difference of models' results generated by caffe model and paddle model
# a tool used to:
# 1, convert a caffe model
# 2, do inference(only in fluid) using this model
#
#
#
howto
:
#
usage
:
#
bash diff.sh resnet50 #when this has been finished, you can get the difference in precision
#
cd caffe2fluid/examples/imagenet && bash run.sh alexnet ./models/alexnet.prototxt ./models/alexnet.caffemodel ./models/alexnet.py ./models/alexnet.npy
#
#
#notes:
# 0, in order to infer using caffe, we need pycaffe installed
# 1, prepare your caffe model in 'models.caffe/', eg: 'model.caffe/resnet101/resnet101.[prototxt|caffemodel]'
# 2, converted paddle model will be in 'models'
# 3, results of layers will be stored in 'results/${model_name}.[paddle|caffe]'
# 4, only the last layer will be checked by default
model_name
=
"resnet50"
#set -x
results_root
=
"results/"
if
[[
-n
$1
]]
;
then
if
[[
$#
-lt
5
]]
;
then
if
[
$1
=
"-h"
]
;
then
echo
"usage:"
echo
"usage:"
echo
" bash
$0
[model_name
]"
echo
" bash
$0
[model_name] [cf_prototxt_path] [cf_model_path] [pd_py_path] [pd_npy_path] [imagfile] [only_convert
]"
echo
" eg:bash
$0
resnet50
"
echo
" eg: bash
$0
alexnet ./models/alexnet.prototxt ./models/alexnet.caffemodel ./models/alexnet.py ./models/alexnet.npy
"
exit
0
exit
1
fi
else
model_name
=
$1
model_name
=
$1
cf_prototxt_path
=
$2
cf_model_path
=
$3
pd_py_path
=
$4
pd_npy_path
=
$5
only_convert
=
$7
fi
fi
proto_file
=
$cf_prototxt_path
caffemodel_file
=
$cf_model_path
weight_file
=
$pd_npy_path
net_file
=
$pd_py_path
mkdir
-p
$results_root
if
[[
!
-e
$proto_file
]]
;
then
echo
"not found prototxt[
$proto_file
]"
prototxt
=
"
$2
/
${
model_name
}
.prototxt"
exit
1
caffemodel
=
"
$2
/
${
model_name
}
.caffemodel"
fi
#1, dump layers' results from paddle
if
[[
!
-e
$caffemodel_file
]]
;
then
paddle_results
=
"
$results_root
/
${
model_name
}
.paddle"
echo
"not found caffemodel[
$caffemodel_file
]"
rm
-rf
$paddle_results
rm
-rf
"results.paddle"
bash ./tools/run.sh
$model_name
$2
$3
if
[[
$?
-ne
0
]]
||
[[
!
-e
"results.paddle"
]]
;
then
echo
"not found paddle's results, maybe failed to convert"
exit
1
exit
1
fi
fi
mv
results.paddle
$paddle_results
#2, dump layers' results from caffe
if
[[
!
-e
$pd_model_path
]]
;
then
caffe_results
=
"
$results_root
/
${
model_name
}
.caffe"
mkdir
$pd_model_path
rm
-rf
$caffe_results
fi
rm
-rf
"results.caffe"
PYTHON
=
`
which python
`
PYTHON
=
`
which python
`
if
[[
-z
$PYTHON
]]
;
then
if
[[
-z
$PYTHON
]]
;
then
PYTHON
=
`
which python
`
PYTHON
=
`
which python
`
fi
fi
$PYTHON
./infer.py caffe
$prototxt
$caffemodel
$paddle_results
/data.npy
$PYTHON
../../convert.py
\
if
[[
$?
-ne
0
]]
||
[[
!
-e
"results.caffe"
]]
;
then
$proto_file
\
echo
"not found caffe's results, maybe failed to do inference with caffe"
--caffemodel
$caffemodel_file
\
exit
1
--data-output-path
$weight_file
\
fi
--code-output-path
$net_file
mv
results.caffe
$caffe_results
#3, extract layer names
cat
$prototxt
|
grep
name | perl
-ne
'if(/^\s*name\s*:\s+\"([^\"]+)/){ print $1."\n";}'
>
.layer_names
final_layer
=
$(
cat
$prototxt
| perl
-ne
'if(/^\s*top\s*:\s+\"([^\"]+)/){ print $1."\n";}'
|
tail
-n1
)
ret
=
$?
ret
=
$(
grep
"^
$final_layer
$"
.layer_names |
wc
-l
)
if
[[
$ret
-ne
0
]]
;
then
if
[[
$ret
-eq
0
]]
;
then
echo
"failed to convert caffe model[
$cf_model_path
]"
echo
$final_layer
>>
.layer_names
exit
$ret
else
echo
"succeed to convert caffe model[
$cf_model_path
] to fluid model[
$pd_model_path
]"
fi
fi
#4, compare one by one
if
[[
-z
$only_convert
]]
;
then
#for i in $(cat .layer_names);do
PYTHON
=
`
which python
`
for
i
in
$(
cat
.layer_names |
tail
-n1
)
;
do
if
[[
-z
$PYTHON
]]
;
then
i
=
${
i
//\//_
}
PYTHON
=
`
which python
`
echo
"process
$i
"
fi
pd_npy
=
$(
find
$paddle_results
/
-iname
"
${
i
}
.*npy"
|
grep
deleted
-v
|
head
-n1
)
if
[[
-n
$6
]]
;
then
#pd_npy="$paddle_results/${i}.npy"
imgfile
=
$6
if
[[
-f
$pd_npy
]]
;
then
$PYTHON
compare.py
$caffe_results
/
${
i
}
.npy
$pd_npy
else
else
echo
"not found npy file[
${
i
}
.*npy] for layer[
$i
]"
imgfile
=
"data/65.jpeg"
exit
1
fi
fi
done
#FIX ME:
# only look the first line in prototxt file for the name of this network, maybe not correct
net_name
=
`
grep
"name"
$proto_file
|
head
-n1
| perl
-ne
'if(/^name\s*:\s*\"([^\"]+)\"/){ print $1."\n";}'
`
if
[[
-z
$net_name
]]
;
then
net_name
=
"MyNet"
fi
cmd
=
"
$PYTHON
./infer.py dump
$net_file
$weight_file
$imgfile
$net_name
"
echo
$cmd
eval
$cmd
ret
=
$?
fi
exit
$ret
caffe2fluid/examples/imagenet/tools/run.sh
浏览文件 @
d7bb6da1
...
@@ -6,27 +6,29 @@
...
@@ -6,27 +6,29 @@
# 2, do inference(only in fluid) using this model
# 2, do inference(only in fluid) using this model
#
#
#usage:
#usage:
# cd caffe2fluid/examples/imagenet && bash run.sh
resnet50 ./models.caffe/resnet50 ./models/resnet50
# cd caffe2fluid/examples/imagenet && bash run.sh
alexnet ./models/alexnet.prototxt ./models/alexnet.caffemodel ./models/alexnet.py ./models/alexnet.npy
#
#
#set -x
#set -x
if
[[
$#
-lt
3
]]
;
then
if
[[
$#
-lt
5
]]
;
then
echo
"usage:"
echo
"usage:"
echo
" bash
$0
[model_name] [cf_
model_path] [pd_model_path
] [only_convert]"
echo
" bash
$0
[model_name] [cf_
prototxt_path] [cf_model_path] [pd_py_path] [pd_npy_path] [imagfile
] [only_convert]"
echo
" eg: bash
$0
resnet50 ./models.caffe/resnet50 ./models/resnet50
"
echo
" eg: bash
$0
alexnet ./models/alexnet.prototxt ./models/alexnet.caffemodel ./models/alexnet.py ./models/alexnet.npy
"
exit
1
exit
1
else
else
model_name
=
$1
model_name
=
$1
cf_model_path
=
$2
cf_prototxt_path
=
$2
pd_model_path
=
$3
cf_model_path
=
$3
only_convert
=
$4
pd_py_path
=
$4
pd_npy_path
=
$5
only_convert
=
$7
fi
fi
proto_file
=
$cf_
model_path
/
${
model_name
}
.prototxt
proto_file
=
$cf_
prototxt_path
caffemodel_file
=
$cf_model_path
/
${
model_name
}
.caffemodel
caffemodel_file
=
$cf_model_path
weight_file
=
$pd_
model_path
/
${
model_name
}
.npy
weight_file
=
$pd_
npy_path
net_file
=
$pd_
model_path
/
${
model_name
}
.py
net_file
=
$pd_
py_path
if
[[
!
-e
$proto_file
]]
;
then
if
[[
!
-e
$proto_file
]]
;
then
echo
"not found prototxt[
$proto_file
]"
echo
"not found prototxt[
$proto_file
]"
...
@@ -65,7 +67,11 @@ if [[ -z $only_convert ]];then
...
@@ -65,7 +67,11 @@ if [[ -z $only_convert ]];then
if
[[
-z
$PYTHON
]]
;
then
if
[[
-z
$PYTHON
]]
;
then
PYTHON
=
`
which python
`
PYTHON
=
`
which python
`
fi
fi
if
[[
-n
$6
]]
;
then
imgfile
=
$6
else
imgfile
=
"data/65.jpeg"
imgfile
=
"data/65.jpeg"
fi
#FIX ME:
#FIX ME:
# only look the first line in prototxt file for the name of this network, maybe not correct
# only look the first line in prototxt file for the name of this network, maybe not correct
net_name
=
`
grep
"name"
$proto_file
|
head
-n1
| perl
-ne
'if(/^name\s*:\s*\"([^\"]+)\"/){ print $1."\n";}'
`
net_name
=
`
grep
"name"
$proto_file
|
head
-n1
| perl
-ne
'if(/^name\s*:\s*\"([^\"]+)\"/){ print $1."\n";}'
`
...
...
caffe2fluid/kaffe/net_template.py
浏览文件 @
d7bb6da1
...
@@ -88,21 +88,20 @@ def main():
...
@@ -88,21 +88,20 @@ def main():
import
sys
import
sys
import
os
import
os
import
argparse
filename
=
os
.
path
.
splitext
(
os
.
path
.
basename
(
sys
.
argv
[
0
]))[
0
]
filename
=
os
.
path
.
splitext
(
os
.
path
.
basename
(
sys
.
argv
[
0
]))[
0
]
if
len
(
sys
.
argv
)
<
3
:
parser
=
argparse
.
ArgumentParser
()
print
(
'usage:'
)
parser
.
add_argument
(
'--npy_path'
,
help
=
'Model
\'
s parameters (.npy) path'
)
print
(
' python %s %s.npy [save_dir] [layer names seperated by comma]'
\
parser
.
add_argument
(
'--model-param-path'
,
help
=
'The path of model and param which are convertd by .npy'
,
%
(
sys
.
argv
[
0
],
filename
))
default
=
'./fluid'
)
print
(
' eg: python %s %s.npy ./fluid'
%
(
sys
.
argv
[
0
],
filename
))
parser
.
add_argument
(
print
(
' eg: python %s %s.npy ./fluid layer_name1,layer_name2'
\
'--need-layers-name'
,
help
=
'The layers need to save (split by ,)'
)
%
(
sys
.
argv
[
0
],
filename
))
args
=
parser
.
parse_args
()
return
1
npy_weight
=
args
.
npy_path
fluid_model
=
args
.
model_param_path
npy_weight
=
sys
.
argv
[
1
]
fluid_model
=
sys
.
argv
[
2
]
outputs
=
None
outputs
=
None
if
len
(
sys
.
argv
)
>=
4
:
if
len
(
sys
.
argv
)
>=
6
:
outputs
=
sys
.
argv
[
3
]
.
split
(
','
)
outputs
=
args
.
need_layers_name
.
split
(
','
)
ret
=
MyNet
.
convert
(
npy_weight
,
fluid_model
,
outputs
)
ret
=
MyNet
.
convert
(
npy_weight
,
fluid_model
,
outputs
)
if
ret
==
0
:
if
ret
==
0
:
...
...
caffe2fluid/kaffe/protobuf_to_dict.py
浏览文件 @
d7bb6da1
...
@@ -15,17 +15,17 @@ TYPE_CALLABLE_MAP = {
...
@@ -15,17 +15,17 @@ TYPE_CALLABLE_MAP = {
FieldDescriptor
.
TYPE_DOUBLE
:
float
,
FieldDescriptor
.
TYPE_DOUBLE
:
float
,
FieldDescriptor
.
TYPE_FLOAT
:
float
,
FieldDescriptor
.
TYPE_FLOAT
:
float
,
FieldDescriptor
.
TYPE_INT32
:
int
,
FieldDescriptor
.
TYPE_INT32
:
int
,
FieldDescriptor
.
TYPE_INT64
:
long
,
FieldDescriptor
.
TYPE_INT64
:
int
,
FieldDescriptor
.
TYPE_UINT32
:
int
,
FieldDescriptor
.
TYPE_UINT32
:
int
,
FieldDescriptor
.
TYPE_UINT64
:
long
,
FieldDescriptor
.
TYPE_UINT64
:
int
,
FieldDescriptor
.
TYPE_SINT32
:
int
,
FieldDescriptor
.
TYPE_SINT32
:
int
,
FieldDescriptor
.
TYPE_SINT64
:
long
,
FieldDescriptor
.
TYPE_SINT64
:
int
,
FieldDescriptor
.
TYPE_FIXED32
:
int
,
FieldDescriptor
.
TYPE_FIXED32
:
int
,
FieldDescriptor
.
TYPE_FIXED64
:
long
,
FieldDescriptor
.
TYPE_FIXED64
:
int
,
FieldDescriptor
.
TYPE_SFIXED32
:
int
,
FieldDescriptor
.
TYPE_SFIXED32
:
int
,
FieldDescriptor
.
TYPE_SFIXED64
:
long
,
FieldDescriptor
.
TYPE_SFIXED64
:
int
,
FieldDescriptor
.
TYPE_BOOL
:
bool
,
FieldDescriptor
.
TYPE_BOOL
:
bool
,
FieldDescriptor
.
TYPE_STRING
:
unicode
,
FieldDescriptor
.
TYPE_STRING
:
str
,
FieldDescriptor
.
TYPE_BYTES
:
lambda
b
:
b
.
encode
(
"base64"
),
FieldDescriptor
.
TYPE_BYTES
:
lambda
b
:
b
.
encode
(
"base64"
),
FieldDescriptor
.
TYPE_ENUM
:
int
,
FieldDescriptor
.
TYPE_ENUM
:
int
,
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录