From f7945dc747e5d470313e91a88d13e36a4c47ca8c Mon Sep 17 00:00:00 2001 From: "Kin-Yiu, Wong" <102582011@cc.ncu.edu.tw> Date: Wed, 13 Jul 2022 10:11:42 +0800 Subject: [PATCH] main code update readme --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 04023de..e217a1e 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,10 @@ To measure accuracy, download [COCO-annotations for Pycocotools](http://images.c ## Training +Data preparation + +Download MS COCO dataset images ([train](http://images.cocodataset.org/zips/train2017.zip), [val](http://images.cocodataset.org/zips/val2017.zip), [test](http://images.cocodataset.org/zips/test2017.zip)) and [labels](https://github.com/WongKinYiu/yolov7/releases/download/v0.1/coco2017labels-segments.zip). If you have previously used a different version of YOLO, we strongly recommend that you delete `train2017.cache` and `val2017.cache` files, and redownload [labels](https://github.com/WongKinYiu/yolov7/releases/download/v0.1/coco2017labels-segments.zip) + Single GPU training ``` @@ -91,8 +95,6 @@ python -m torch.distributed.launch --nproc_per_node 4 --master_port 9527 train.p The training code and instruction of p6 models will release soon. -Download MS COCO dataset images ([train](http://images.cocodataset.org/zips/train2017.zip), [val](http://images.cocodataset.org/zips/val2017.zip), [test](http://images.cocodataset.org/zips/test2017.zip)) and [labels](https://github.com/WongKinYiu/yolov7/releases/download/v0.1/coco2017labels-segments.zip). If you have previously used a different version of YOLO, we strongly recommend that you delete `train2017.cache` and `val2017.cache` files, and redownload [labels](https://github.com/WongKinYiu/yolov7/releases/download/v0.1/coco2017labels-segments.zip) - ## Re-parameterization See [reparameterization.ipynb](tools/reparameterization.ipynb)