You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Face detection models](configs/face_detection/README.md) BlazeFace series model with the highest precision of 91.5% on Wider-Face dataset and outstanding inference performance.
109
110
-[Pretrained models for pedestrian and vehicle detection](contrib/README.md) Models for object detection in specific scenarios.
110
-
-[YOLOv3 enhanced model](docs/YOLOv3_ENHANCEMENT.md) Compared to MAP of 33.0% in paper, enhanced YOLOv3 reaches the MAP of 41.4% and inference speed is improved as well
111
+
-[YOLOv3 enhanced model](docs/YOLOv3_ENHANCEMENT.md) Compared to MAP of 33.0% in paper, enhanced YOLOv3 reaches the MAP of 43.2% and inference speed is improved as well
111
112
-[Objects365 2019 Challenge champion model](docs/CACascadeRCNN.md) One of the best single models in Objects365 Full Track of which MAP reaches 31.7%.
112
113
-[Open Images Dataset V5 and Objects365 Dataset models](docs/OIDV5_BASELINE_MODEL.md)
Copy file name to clipboardexpand all lines: docs/tutorials/GETTING_STARTED.md
+1-27
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ list below can be viewed by `--help`
89
89
90
90
##### NOTES
91
91
92
-
-`CUDA_VISIBLE_DEVICES` can specify different gpu numbers. Such as: `export CUDA_VISIBLE_DEVICES=0,1,2,3`. GPU calculation rules can refer [FAQ](#faq)
92
+
-`CUDA_VISIBLE_DEVICES` can specify different gpu numbers. Such as: `export CUDA_VISIBLE_DEVICES=0,1,2,3`. GPU calculation rules can refer [FAQ](./FAQ.md)
93
93
- Dataset will be downloaded automatically and cached in `~/.cache/paddle/dataset` if not be found locally.
94
94
- Pretrained model is downloaded automatically and cached in `~/.cache/paddle/weights`.
95
95
- Checkpoints are saved in `output` by default, and can be revised from save_dir in configure files.
@@ -169,29 +169,3 @@ moment, but it is a planned feature
169
169
```
170
170
171
171
Save inference model `tools/export_model.py`, which can be loaded by PaddlePaddle predict library.
172
-
173
-
## FAQ
174
-
175
-
**Q:** Why do I get `NaN` loss values during single GPU training? </br>
176
-
**A:** The default learning rate is tuned to multi-GPU training (8x GPUs), it must
177
-
be adapted for single GPU training accordingly (e.g., divide by 8).
178
-
The calculation rules are as follows,they are equivalent: </br>
0 commit comments