Skip to content

Commit

Permalink
[doc fix] fix detr docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostxsl committed Aug 3, 2021
1 parent 73bbc91 commit e3c97c7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions configs/deformable_detr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ Deformable DETR is an object detection model based on DETR. We reproduced the mo
- Deformable DETR is trained on COCO train2017 dataset and evaluated on val2017 results of `mAP(IoU=0.5:0.95)`.
- Deformable DETR uses 8GPU to train 50 epochs.

GPU multi-card training
```bash
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
python -m paddle.distributed.launch --gpus 0,1,2,3,4,5,6,7 tools/train.py -c configs/deformable_detr/deformable_detr_r50_1x_coco.yml --fleet -o find_unused_parameters=True
```

## Citations
```
@inproceedings{
Expand Down
6 changes: 6 additions & 0 deletions configs/detr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ DETR is an object detection model based on transformer. We reproduced the model
- DETR is trained on COCO train2017 dataset and evaluated on val2017 results of `mAP(IoU=0.5:0.95)`.
- DETR uses 8GPU to train 500 epochs.

GPU multi-card training
```bash
export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
python -m paddle.distributed.launch --gpus 0,1,2,3,4,5,6,7 tools/train.py -c configs/detr/detr_r50_1x_coco.yml --fleet -o find_unused_parameters=True
```

## Citations
```
@inproceedings{detr,
Expand Down

0 comments on commit e3c97c7

Please sign in to comment.