From 51c3612831b34b22361aa86c17c36e55b7298f6a Mon Sep 17 00:00:00 2001 From: majorli6 Date: Mon, 20 Mar 2023 10:28:20 +0800 Subject: [PATCH 1/3] update result of summerization, yolact and yolov7 link #I6BFUO Signed-off-by: majorli6 --- cv/detection/yolov7/pytorch/README.md | 2 +- cv/instance_segmentation/yolact/pytorch/README.md | 2 +- nlp/text_summarisation/bert/pytorch/README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cv/detection/yolov7/pytorch/README.md b/cv/detection/yolov7/pytorch/README.md index d27d8037c..1babd9055 100644 --- a/cv/detection/yolov7/pytorch/README.md +++ b/cv/detection/yolov7/pytorch/README.md @@ -70,7 +70,7 @@ python3 detect.py --weights yolov7.pt --conf 0.25 --img-size 640 --source infere ## Results | Model | Test Size | APtest | AP50test | | :-- | :-: | :-: | :-: | -| [**YOLOv7**](https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7.pt) | 640 | **49.51%** | **68.84%** | +| [**YOLOv7**](https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7.pt) | 640 | **49.4%** | **68.6%** | ## Reference diff --git a/cv/instance_segmentation/yolact/pytorch/README.md b/cv/instance_segmentation/yolact/pytorch/README.md index dc04d7924..66456870c 100644 --- a/cv/instance_segmentation/yolact/pytorch/README.md +++ b/cv/instance_segmentation/yolact/pytorch/README.md @@ -80,7 +80,7 @@ python3 train.py --config=yolact_base_config --batch_size 64 --lr 0.000125 | Image Size | Backbone |mAP | |:----------:|:-------------:|:----:| -| 550 | Resnet50-FPN |22.63 | +| 550 | Resnet50-FPN |23.13 | ## Reference https://github.com/dbolya/yolact \ No newline at end of file diff --git a/nlp/text_summarisation/bert/pytorch/README.md b/nlp/text_summarisation/bert/pytorch/README.md index e26daf415..53ca2c85e 100644 --- a/nlp/text_summarisation/bert/pytorch/README.md +++ b/nlp/text_summarisation/bert/pytorch/README.md @@ -28,8 +28,8 @@ bash train_dist.sh | GPUs | Samples/s | Loss | |------|-----------|--------| -| 1x1 | 1834.099 | 0.0281 | -| 1x8 | 6229.625 | 0.0278 | +| 1x1 | 16.71 | 1.8038 | +| 1x8 | 117.576 | 1.8288 | ## Reference https://github.com/huggingface/ -- Gitee From 1708a240db1e3137623968e7cb74cc04c470ba82 Mon Sep 17 00:00:00 2001 From: majorli6 Date: Mon, 20 Mar 2023 10:43:49 +0800 Subject: [PATCH 2/3] update result Signed-off-by: majorli6 --- cv/instance_segmentation/yolact/pytorch/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cv/instance_segmentation/yolact/pytorch/README.md b/cv/instance_segmentation/yolact/pytorch/README.md index 66456870c..55427c2c0 100644 --- a/cv/instance_segmentation/yolact/pytorch/README.md +++ b/cv/instance_segmentation/yolact/pytorch/README.md @@ -78,9 +78,10 @@ python3 train.py --config=yolact_base_config --batch_size 64 --lr 0.000125 ``` ## Results -| Image Size | Backbone |mAP | -|:----------:|:-------------:|:----:| -| 550 | Resnet50-FPN |23.13 | +| | all | .50 | .55 | .60 | .65 | .70 | .75 | .80 | .85 | .90 | .95 | +|-------|-------|-------|-------|-------|-------|-------|-------|-------|-------|-------|-------| +| box | 11.64 | 23.13 | 21.51 | 19.36 | 16.98 | 14.19 | 10.93 | 6.83 | 2.83 | 0.61 | 0.05 | +| mask | 11.20 | 20.51 | 19.07 | 17.51 | 15.52 | 13.23 | 10.74 | 8.10 | 5.13 | 2.06 | 0.13 | ## Reference -https://github.com/dbolya/yolact \ No newline at end of file +https://github.com/dbolya/yolact -- Gitee From 656e1e8b0048b0f2e9bcb2e0d31059057f8b3c18 Mon Sep 17 00:00:00 2001 From: songjian <11941014+songjian1169@user.noreply.gitee.com> Date: Mon, 20 Mar 2023 03:17:54 +0000 Subject: [PATCH 3/3] update cv/detection/yolov7/pytorch/README.md. Signed-off-by: songjian <11941014+songjian1169@user.noreply.gitee.com> --- cv/detection/yolov7/pytorch/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv/detection/yolov7/pytorch/README.md b/cv/detection/yolov7/pytorch/README.md index 1babd9055..a6e9e0002 100644 --- a/cv/detection/yolov7/pytorch/README.md +++ b/cv/detection/yolov7/pytorch/README.md @@ -45,7 +45,7 @@ python3 train.py --workers 8 --device 0 --batch-size 32 --data data/coco.yaml -- ``` ### Multiple GPU training ``` -python3 -m torch.distributed.launch --nproc_per_node 4 --master_port 9527 train.py --workers 8 --device 0,1,2,3 --sync-bn --batch-size 128 --data data/coco.yaml --img 640 640 --cfg cfg/training/yolov7.yaml --weights '' --name yolov7 --hyp data/hyp.scratch.p5.yaml +python3 -m torch.distributed.launch --nproc_per_node 4 --master_port 9527 train.py --workers 8 --device 0,1,2,3 --sync-bn --batch-size 64 --data data/coco.yaml --img 640 640 --cfg cfg/training/yolov7.yaml --weights '' --name yolov7 --hyp data/hyp.scratch.p5.yaml ``` ## Transfer learning -- Gitee