RamAnanth1 commited on
Commit
55b8905
1 Parent(s): 98fc92a

Update model.py

Browse files
Files changed (1) hide show
  1. model.py +1 -1
model.py CHANGED
@@ -153,7 +153,7 @@ class Model:
153
  subprocess.run(shlex.split(f'wget {det_checkpoint_file} -O models/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth'))
154
  det_checkpoint = 'models/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth'
155
 
156
- pose_config_file = model_path+"rnet_w48_coco_256x192.py"
157
  subprocess.run(shlex.split(f'wget {pose_config_file} -O models/rnet_w48_coco_256x192.py'))
158
  pose_config = 'models/hrnet_w48_coco_256x192.py'
159
 
 
153
  subprocess.run(shlex.split(f'wget {det_checkpoint_file} -O models/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth'))
154
  det_checkpoint = 'models/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth'
155
 
156
+ pose_config_file = model_path+"hrnet_w48_coco_256x192.py"
157
  subprocess.run(shlex.split(f'wget {pose_config_file} -O models/rnet_w48_coco_256x192.py'))
158
  pose_config = 'models/hrnet_w48_coco_256x192.py'
159