From df61f253f7c7a174f6582ad57a21bb7d68e4ff3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=9D=BF?= Date: Wed, 30 Nov 2022 16:07:42 +0800 Subject: [PATCH] add paddle result MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 李睿 --- cv/classification/resnet50/paddlepaddle/README.md | 10 ++++++++++ cv/detection/maskrcnn/paddlepaddle/README.md | 12 +++++++++++- cv/detection/ssd/paddlepaddle/README.md | 12 +++++++++++- nlp/language_model/bert/paddlepaddle/README.md | 11 +++++++++++ 4 files changed, 43 insertions(+), 2 deletions(-) diff --git a/cv/classification/resnet50/paddlepaddle/README.md b/cv/classification/resnet50/paddlepaddle/README.md index 08c89e8c5..c3f404bbb 100644 --- a/cv/classification/resnet50/paddlepaddle/README.md +++ b/cv/classification/resnet50/paddlepaddle/README.md @@ -44,3 +44,13 @@ export FLAGS_cudnn_batchnorm_spatial_persistent=True export CUDA_VISIBLE_DEVICES=0,1,2,3 python3 -u -m paddle.distributed.launch --gpus=0,1,2,3 tools/train.py -c ppcls/configs/ImageNet/ResNet/ResNet50.yaml -o Arch.pretrained=False -o Global.device=gpu ``` + +## Results on BI-V100 + +
+ +| GPU | FP32 | +| ----------- | ------------------------------------ | +| 4 cards | Acc@1=76.27,FPS=80.37,BatchSize=64 | + +
diff --git a/cv/detection/maskrcnn/paddlepaddle/README.md b/cv/detection/maskrcnn/paddlepaddle/README.md index 46ef1bc25..fec7c48c7 100644 --- a/cv/detection/maskrcnn/paddlepaddle/README.md +++ b/cv/detection/maskrcnn/paddlepaddle/README.md @@ -40,5 +40,15 @@ sed -i "s#dataset/coco#${coco_dir}#g" configs/datasets/coco_instance.yml export FLAGS_cudnn_exhaustive_search=True export FLAGS_cudnn_batchnorm_spatial_persistent=True export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 -python3 -u -m paddle.distributed.launch --gpus 0,1,2,3,4,5,6,7 tools/train.py -c configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco.yml --use_vdl=true --eval --amp +python3 -u -m paddle.distributed.launch --gpus 0,1,2,3,4,5,6,7 tools/train.py -c configs/mask_rcnn/mask_rcnn_r50_fpn_1x_coco.yml --use_vdl=true --eval ``` + +## Results on BI-V100 + +
+ +| GPU | FP32 | +| ----------- | ------------------------------------ | +| 8 cards | bbox=38.8,FPS=7.5,BatchSize=1 | + +
diff --git a/cv/detection/ssd/paddlepaddle/README.md b/cv/detection/ssd/paddlepaddle/README.md index 5ed24ff0f..1cd9b60f5 100644 --- a/cv/detection/ssd/paddlepaddle/README.md +++ b/cv/detection/ssd/paddlepaddle/README.md @@ -35,5 +35,15 @@ export CUDA_VISIBLE_DEVICES=0,1 python3 -u -m paddle.distributed.launch --gpus 0,1 tools/train.py -c configs/ssd/ssd_mobilenet_v1_300_120e_voc.yml --eval ``` +## Results on BI-V100 + +
+ +| GPU | FP32 | +| ----------- | ------------------------------------ | +| 2 cards | bbox=73.62,FPS=45.49,BatchSize=32 | + +
+ ## Reference -- [PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection) \ No newline at end of file +- [PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection) diff --git a/nlp/language_model/bert/paddlepaddle/README.md b/nlp/language_model/bert/paddlepaddle/README.md index cf6b895ab..f259ac0d7 100644 --- a/nlp/language_model/bert/paddlepaddle/README.md +++ b/nlp/language_model/bert/paddlepaddle/README.md @@ -23,3 +23,14 @@ Download the [MNLI Dataset](http://www.nyu.edu/projects/bowman/multinli/) # Make sure your dataset path is the same as above bash train_bert.sh ``` + + +## Results on BI-V100 + +
+ +| GPU | FP32 | +| ----------- | ------------------------------------ | +| 1 card | Acc@1=84.5,FPS=5.1,BatchSize=32 | + +
-- Gitee