From af9d81f36b6cf852d376bc3db0a3571611b5ba31 Mon Sep 17 00:00:00 2001 From: Jason Date: Mon, 5 Aug 2019 13:08:30 +0800 Subject: [PATCH] Create test_model_zoo.md --- test_model_zoo.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test_model_zoo.md diff --git a/test_model_zoo.md b/test_model_zoo.md new file mode 100644 index 0000000..fd5edfb --- /dev/null +++ b/test_model_zoo.md @@ -0,0 +1,26 @@ +目前我们在如下模型列表中测试了X2Paddle的转换 + +# TensorFlow + +| 模型 | 代码 | +|------|----------| +| SqueezeNet | [code](https://github.com/tensorflow/tpu/blob/master/models/official/squeezenet/squeezenet_model.py)| +| MobileNet_V1 | [code](https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md) | +| MobileNet_V2 | [code](https://github.com/tensorflow/models/tree/master/research/slim/nets/mobilenet) | +| ShuffleNet_V2 | [code](https://github.com/TropComplique/shufflenet-v2-tensorflow) | +| mNASNet | [code](https://github.com/tensorflow/tpu/tree/master/models/official/mnasnet) | +| EfficientNet | [code](https://github.com/tensorflow/tpu/tree/master/models/official/efficientnet) | +| Inception_V4 | [code](https://github.com/tensorflow/models/blob/master/research/slim/nets/inception_v4.py) | +| Inception_ResNet_V2 | [code](https://github.com/tensorflow/models/blob/master/research/slim/nets/inception_resnet_v2.py) | +| VGG16 | [code](https://github.com/tensorflow/models/blob/master/research/slim/nets/vgg.py) | +| ResNet_V1_101 | [code](https://github.com/tensorflow/models/blob/master/research/slim/nets/resnet_v1.py) | +| ResNet_V2_101 | [code](https://github.com/tensorflow/models/blob/master/research/slim/nets/resnet_v2.py) | + +# Caffe + +| 模型 | 代码 | +| SqueezeNet | [code](https://github.com/DeepScale/SqueezeNet/tree/master/SqueezeNet_v1.1) | +| MobileNet_V1 | [code](https://github.com/shicai/MobileNet-Caffe) | +| MobileNet_V2 | [code](https://github.com/shicai/MobileNet-Caffe) | +| mNASNet | [code](https://github.com/LiJianfei06/MnasNet-caffe) | +| MTCNN | [code](https://github.com/kpzhang93/MTCNN_face_detection_alignment/tree/master/code/codes/MTCNNv1/model) | -- GitLab