Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

fix train/val scripts for COCO #57

Merged
merged 1 commit into from
Nov 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,16 +196,16 @@ python pose_estimation/train.py \

```
python pose_estimation/valid.py \
--cfg experiments/mpii/resnet50/256x256_d256x3_adam_lr1e-3.yaml \
--cfg experiments/coco/resnet50/256x192_d256x3_adam_lr1e-3.yaml \
--flip-test \
--model-file models/pytorch/pose_coco/pose_resnet_50_256x256.pth.tar
--model-file models/pytorch/pose_coco/pose_resnet_50_256x192.pth.tar
```

### Training on COCO train2017

```
python pose_estimation/train.py \
--cfg experiments/mpii/resnet50/256x256_d256x3_adam_lr1e-3.yaml
--cfg experiments/coco/resnet50/256x192_d256x3_adam_lr1e-3.yaml
```


Expand Down