mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-24 00:53:22 +08:00

* Add notes for tensors * Optimize some apis * move some warnings * Support build with Paddle2ONNX * Add protobuf support * Fix compile on mac * add clearn package script * Add paddle2onnx code * remove submodule * Add onnx ocde * remove softlink * add onnx code * fix error * Add cmake file * fix patchelf * update paddle2onnx * Delete .gitmodules --------- Co-authored-by: PaddleCI <paddle_ci@example.com> Co-authored-by: pangyoki <pangyoki@126.com> Co-authored-by: jiangjiajun <jiangjiajun@baidu.lcom>
16 lines
1.6 KiB
Python
16 lines
1.6 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# Originally there are some checker failures in weekly-CI
|
|
# Skip them in test_model_zoo.py for now
|
|
# TODO: fix these checker failures
|
|
SKIP_CHECKER_MODELS = {'vision/classification/alexnet/model/bvlcalexnet-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/caffenet/model/caffenet-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/densenet-121/model/densenet-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/inception_and_googlenet/inception_v1/model/inception-v1-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/inception_and_googlenet/inception_v2/model/inception-v2-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/rcnn_ilsvrc13/model/rcnn-ilsvrc13-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/resnet/model/resnet50-caffe2-v1-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/shufflenet/model/shufflenet-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/squeezenet/model/squeezenet1.0-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/vgg/model/vgg19-caffe2-3.onnx', # opset1 typeinference function missing
|
|
'vision/classification/zfnet-512/model/zfnet512-3.onnx'} # opset1 typeinference function missing
|