File size: 430 Bytes
60465e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Run Experiments (MMPose)
The configuration files for our models can be found here:
- [Custom configuration files](../../mmpose/local_configs)
## Training
```shell
python tools/train.py 'path/to/config'
```
## Evaluation
```shell
python tools/test.py 'path/to/config' 'path/to/checkpoint'
```
## FPS
```shell
python tools/analysis_tools/random_benchmark.py -c 'path/to/config' -i 3x480x640 -b 16
``` |