Toshal Patel
Toshal Patel
Faced the same problem. Any leads? Thanks!
You can navigate to `config/config.xml` and on [line 6](https://github.com/cwlroda/falldetection_openpifpaf/blob/master/config/config.xml#L6), ```python ... /your/own/path/to/video.mp4 ... ```
@SmileKylin 's solution worked for me. Thanks!
I am using `pycocotools==2.0.6`, and faced the same error as above. I changed in `mmskeleton/datasets/coco.py` ```python from pycocotools import COCO, COCOeval ``` to ```python from pycocotools.coco import COCO from pycocotools.cocoeval...