convert.py 10.9 KB
Newer Older
S
SunAhong1993 已提交
1
# Copyright (c) 2020  PaddlePaddle Authors. All Rights Reserved.
J
jiangjiajun 已提交
2 3 4 5 6 7 8 9 10 11 12 13
#
# Licensed under the Apache License, Version 2.0 (the "License"
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
S
SunAhong1993 已提交
14

15
from six import text_type as _text_type
S
SunAhong1993 已提交
16
from x2paddle import program
17
import argparse
J
jiangjiajun 已提交
18
import sys
19

J
jiangjiajun 已提交
20

21 22
def arg_parser():
    parser = argparse.ArgumentParser()
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
    parser.add_argument(
        "--model",
        "-m",
        type=_text_type,
        default=None,
        help="define model file path for tensorflow or onnx")
    parser.add_argument(
        "--prototxt",
        "-p",
        type=_text_type,
        default=None,
        help="prototxt file of caffe model")
    parser.add_argument(
        "--weight",
        "-w",
        type=_text_type,
        default=None,
        help="weight file of caffe model")
    parser.add_argument(
        "--save_dir",
        "-s",
        type=_text_type,
        default=None,
        help="path to save translated model")
J
upgrade  
jiangjiajun 已提交
47 48 49 50 51
    parser.add_argument(
        "--framework",
        "-f",
        type=_text_type,
        default=None,
52 53
        help="define which deeplearning framework(tensorflow/caffe/onnx/paddle2onnx)"
    )
S
SunAhong1993 已提交
54 55 56 57 58
    parser.add_argument(
        "--caffe_proto",
        "-c",
        type=_text_type,
        default=None,
J
upgrade  
jiangjiajun 已提交
59 60
        help="optional: the .py file compiled by caffe proto file of caffe model"
    )
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
    parser.add_argument(
        "--version",
        "-v",
        action="store_true",
        default=False,
        help="get version of x2paddle")
    parser.add_argument(
        "--define_input_shape",
        "-d",
        action="store_true",
        default=False,
        help="define input shape for tf model")
    parser.add_argument(
        "--params_merge",
        "-pm",
        action="store_true",
        default=False,
        help="define whether merge the params")
S
SunAhong1993 已提交
79
    parser.add_argument(
S
SunAhong1993 已提交
80 81 82 83 84 85
        "--paddle_type",
        "-pt",
        type=_text_type,
        default="dygraph",
        help="define the paddle model type after converting(dygraph/static)"
    )
S
SunAhong1993 已提交
86 87 88 89 90 91
    parser.add_argument(
        "--without_data_format_optimization",
        "-wo",
        type=_text_type,
        default="True",
        help="tf model conversion without data format optimization")
S
SunAhong1993 已提交
92
    
93
    return parser
J
jiangjiajun 已提交
94

C
Channingss 已提交
95

96 97
def tf2paddle(model_path,
              save_dir,
J
jiangjiajun 已提交
98
              without_data_format_optimization=False,
M
mamingjie-China 已提交
99
              define_input_shape=False,
S
SunAhong1993 已提交
100
              paddle_type="dygraph",
M
mamingjie-China 已提交
101
              params_merge=False):
J
jiangjiajun 已提交
102 103
    # check tensorflow installation and version
    try:
104 105
        import os
        os.environ["TF_CPP_MIN_LOG_LEVEL"] = '3'
J
jiangjiajun 已提交
106 107 108 109
        import tensorflow as tf
        version = tf.__version__
        if version >= '2.0.0' or version < '1.0.0':
            print(
J
jiangjiajun@baidu.com 已提交
110
                "[ERROR] 1.0.0<=tensorflow<2.0.0 is required, and v1.14.0 is recommended"
J
jiangjiajun 已提交
111 112 113
            )
            return
    except:
J
jiangjiajun@baidu.com 已提交
114 115 116
        print(
            "[ERROR] Tensorflow is not installed, use \"pip install tensorflow\"."
        )
J
jiangjiajun 已提交
117
        return
S
SunAhong1993 已提交
118
    
J
jiangjiajun 已提交
119
    from x2paddle.decoder.tf_decoder import TFDecoder
S
SunAhong1993 已提交
120 121 122 123 124
    if paddle_type == "dygraph":
        from x2paddle.op_mapper.dygraph.tf2paddle.tf_op_mapper import TFOpMapper
    else:
        from x2paddle.op_mapper.static.tf2paddle.tf_op_mapper import TFOpMapper
        
S
SunAhong1993 已提交
125
    
J
jiangjiajun 已提交
126
    print("Now translating model from tensorflow to paddle.")
127
    model = TFDecoder(model_path, define_input_shape=define_input_shape)
S
SunAhong1993 已提交
128
    mapper = TFOpMapper(model)
S
SunAhong1993 已提交
129
    mapper.paddle_graph.build()
S
SunAhong1993 已提交
130 131 132 133 134
    if paddle_type == "dygraph":
        from x2paddle.optimizer.optimizer import GraphOptimizer
        graph_opt = GraphOptimizer(source_frame="tf", paddle_type=paddle_type)
        graph_opt.optimize(mapper.paddle_graph)
    else:
S
SunAhong1993 已提交
135 136 137
        from x2paddle.optimizer.optimizer import GraphOptimizer
        graph_opt = GraphOptimizer(source_frame="tf", paddle_type=paddle_type)
        graph_opt.optimize(mapper.paddle_graph)
S
SunAhong1993 已提交
138 139
    mapper.paddle_graph.gen_model(save_dir)
        
140 141


S
SunAhong1993 已提交
142 143
def caffe2paddle(proto, weight, save_dir, caffe_proto, 
                 paddle_type, params_merge=False):
J
jiangjiajun 已提交
144
    from x2paddle.decoder.caffe_decoder import CaffeDecoder
S
SunAhong1993 已提交
145
    if paddle_type == "dygraph":
S
SunAhong1993 已提交
146
        from x2paddle.op_mapper.dygraph.caffe2paddle.caffe_op_mapper import CaffeOpMapper
S
SunAhong1993 已提交
147
    else:
S
SunAhong1993 已提交
148
        from x2paddle.op_mapper.static.caffe2paddle.caffe_op_mapper import CaffeOpMapper
S
SunAhong1993 已提交
149
    import google.protobuf as gpb
S
SunAhong1993 已提交
150 151 152 153 154
    ver_part = gpb.__version__.split('.')
    version_satisfy = False
    if (int(ver_part[0]) == 3 and int(ver_part[1]) >= 6) \
        or (int(ver_part[0]) > 3):
        version_satisfy = True
J
jiangjiajun@baidu.com 已提交
155
    assert version_satisfy, '[ERROR] google.protobuf >= 3.6.0 is required'
J
jiangjiajun 已提交
156
    print("Now translating model from caffe to paddle.")
S
SunAhong1993 已提交
157
    model = CaffeDecoder(proto, weight, caffe_proto)
J
jiangjiajun 已提交
158
    mapper = CaffeOpMapper(model)
S
SunAhong1993 已提交
159 160 161 162 163 164 165
    mapper.paddle_graph.build()
    print("Model optimizing ...")
    from x2paddle.optimizer.optimizer import GraphOptimizer
    graph_opt = GraphOptimizer(source_frame="caffe", paddle_type=paddle_type)
    graph_opt.optimize(mapper.paddle_graph)
    print("Model optimized.")
    mapper.paddle_graph.gen_model(save_dir)
166 167


S
SunAhong1993 已提交
168
def onnx2paddle(model_path, save_dir, paddle_type, params_merge=False):
C
update  
channingss 已提交
169 170 171 172
    # check onnx installation and version
    try:
        import onnx
        version = onnx.version.version
S
SunAhong1993 已提交
173 174
        if version < '1.6.0':
            print("[ERROR] onnx>=1.6.0 is required")
C
update  
channingss 已提交
175 176
            return
    except:
J
jiangjiajun@baidu.com 已提交
177
        print("[ERROR] onnx is not installed, use \"pip install onnx==1.6.0\".")
C
update  
channingss 已提交
178
        return
C
channingss 已提交
179
    print("Now translating model from onnx to paddle.")
C
update  
channingss 已提交
180 181

    from x2paddle.decoder.onnx_decoder import ONNXDecoder
S
SunAhong1993 已提交
182 183 184 185
    if paddle_type == "dygraph":
        from x2paddle.op_mapper.dygraph.onnx2paddle.onnx_op_mapper import ONNXOpMapper
    else:
        from x2paddle.op_mapper.static.onnx2paddle.onnx_op_mapper import ONNXOpMapper
R
root 已提交
186
    model = ONNXDecoder(model_path)
C
Channingss 已提交
187
    mapper = ONNXOpMapper(model)
S
SunAhong1993 已提交
188 189 190 191 192 193 194 195 196 197
    if paddle_type == "dygraph":
        mapper.paddle_graph.build()
        mapper.paddle_graph.gen_model(save_dir)
    else:
        from x2paddle.optimizer.onnx_optimizer import ONNXOptimizer
        print("Model optimizing ...")
        optimizer = ONNXOptimizer(mapper)
        optimizer.delete_redundance_code()
        print("Model optimized.")
        mapper.save_inference_model(save_dir, params_merge)
C
Channingss 已提交
198 199


S
SunAhong1993 已提交
200
def pytorch2paddle(module, save_dir, jit_type="trace", input_examples=None):
S
SunAhong1993 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
    # check pytorch installation and version
    try:
        import torch
        version = torch.__version__
        ver_part = version.split('.')
        print(ver_part)
        if int(ver_part[1]) < 5:
            print("[ERROR] pytorch>=1.5.0 is required")
            return
    except:
        print(
            "[ERROR] Pytorch is not installed, use \"pip install torch==1.5.0 torchvision\"."
        )
        return
    print("Now translating model from pytorch to paddle.")
S
SunAhong1993 已提交
216
    
S
SunAhong1993 已提交
217
    from x2paddle.decoder.pytorch_decoder import ScriptDecoder, TraceDecoder
S
SunAhong1993 已提交
218
    from x2paddle.op_mapper.dygraph.pytorch2paddle.pytorch_op_mapper import PyTorchOpMapper
S
SunAhong1993 已提交
219

S
SunAhong1993 已提交
220
    if jit_type == "trace":
S
SunAhong1993 已提交
221
        model = TraceDecoder(module, input_examples)
S
SunAhong1993 已提交
222
    else:
S
SunAhong1993 已提交
223
        model = ScriptDecoder(module, input_examples)
S
SunAhong1993 已提交
224 225
    mapper = PyTorchOpMapper(model)
    mapper.paddle_graph.build()
S
SunAhong1993 已提交
226
    print("Model optimizing ...")
S
SunAhong1993 已提交
227 228 229
    from x2paddle.optimizer.optimizer import GraphOptimizer
    graph_opt = GraphOptimizer(source_frame="pytorch", paddle_type="dygraph", jit_type=jit_type)
    graph_opt.optimize(mapper.paddle_graph)
S
SunAhong1993 已提交
230
    print("Model optimized.")
S
SunAhong1993 已提交
231
    mapper.paddle_graph.gen_model(save_dir, jit_type=jit_type)
S
SunAhong1993 已提交
232 233


234
def main():
J
jiangjiajun 已提交
235
    if len(sys.argv) < 2:
C
update  
channingss 已提交
236
        print("Use \"x2paddle -h\" to print the help information")
J
jiangjiajun 已提交
237 238
        print("For more information, please follow our github repo below:)")
        print("\nGithub: https://github.com/PaddlePaddle/X2Paddle.git\n")
J
jiangjiajun 已提交
239 240
        return

241 242 243
    parser = arg_parser()
    args = parser.parse_args()

J
jiangjiajun 已提交
244
    if args.version:
J
jiangjiajun 已提交
245
        import x2paddle
M
mamingjie-China 已提交
246
        print("x2paddle-{} with python>=3.5, paddlepaddle>=1.6.0\n".format(
J
jiangjiajun 已提交
247
            x2paddle.__version__))
J
jiangjiajun 已提交
248 249
        return

J
Jason 已提交
250
    assert args.framework is not None, "--framework is not defined(support tensorflow/caffe/onnx)"
251
    assert args.save_dir is not None, "--save_dir is not defined"
S
SunAhong1993 已提交
252
    assert args.paddle_type in ["dygraph", "static"], "--paddle_type must be 'dygraph' or 'static'"
M
mamingjie-China 已提交
253

M
mamingjie-China 已提交
254 255 256
    try:
        import paddle
        v0, v1, v2 = paddle.__version__.split('.')
257 258 259
        print("paddle.__version__ = {}".format(paddle.__version__))
        if v0 == '0' and v1 == '0' and v2 == '0':
            print("[WARNING] You are use develop version of paddlepaddle")
S
SunAhong1993 已提交
260 261
        elif int(v0) != 2 or int(v1) < 0:
            print("[ERROR] paddlepaddle>=2.0.0 is required")
M
mamingjie-China 已提交
262 263
            return
    except:
J
jiangjiajun@baidu.com 已提交
264 265 266
        print(
            "[ERROR] paddlepaddle not installed, use \"pip install paddlepaddle\""
        )
267 268

    if args.framework == "tensorflow":
J
jiangjiajun 已提交
269
        assert args.model is not None, "--model should be defined while translating tensorflow model"
S
SunAhong1993 已提交
270 271 272
        assert args.without_data_format_optimization in [
            "True", "False"
        ], "--the param without_data_format_optimization should be defined True or False"
273
        define_input_shape = False
M
mamingjie-China 已提交
274
        params_merge = False
S
SunAhong1993 已提交
275
        without_data_format_optimization = True if args.without_data_format_optimization == "True" else False
276 277
        if args.define_input_shape:
            define_input_shape = True
M
mamingjie-China 已提交
278 279
        if args.params_merge:
            params_merge = True
280
        tf2paddle(args.model, args.save_dir, without_data_format_optimization,
S
SunAhong1993 已提交
281
                  define_input_shape, args.paddle_type, params_merge)
282 283

    elif args.framework == "caffe":
S
SunAhong1993 已提交
284
        assert args.prototxt is not None and args.weight is not None, "--prototxt and --weight should be defined while translating caffe model"
M
mamingjie-China 已提交
285 286 287
        params_merge = False
        if args.params_merge:
            params_merge = True
S
SunAhong1993 已提交
288
        caffe2paddle(args.prototxt, args.weight, args.save_dir,
S
SunAhong1993 已提交
289
                     args.caffe_proto, args.paddle_type, params_merge)
C
update  
channingss 已提交
290 291
    elif args.framework == "onnx":
        assert args.model is not None, "--model should be defined while translating onnx model"
M
mamingjie-China 已提交
292
        params_merge = False
293

M
mamingjie-China 已提交
294 295
        if args.params_merge:
            params_merge = True
S
SunAhong1993 已提交
296
        onnx2paddle(args.model, args.save_dir, args.paddle_type, params_merge)
297
    elif args.framework == "paddle2onnx":
C
Channingss 已提交
298
        print("Paddle to ONNX tool has been migrated to the new github: https://github.com/PaddlePaddle/paddle2onnx")
299

300
    else:
301
        raise Exception(
S
SunAhong1993 已提交
302
            "--framework only support tensorflow/caffe/onnx now")
303 304 305


if __name__ == "__main__":
S
SunAhong1993 已提交
306
    main()