MVIG-SJTU / AlphaPose

Real-Time and Accurate Full-Body Multi-Person Pose Estimation&Tracking System
http://mvig.org/research/alphapose.html
Other
8.04k stars 1.98k forks source link

ssd format for detection #320

Open xiaoheizi123 opened 5 years ago

xiaoheizi123 commented 5 years ago

Is there a guide for using the ssd format for the detection part? when I run the demo.py , the class DetectionLoder cannot return the right answer,

` (Pdb) data_loader.Q.empty() False (Pdb) n Loading YOLO model..

/home/zhengr/Documents/projects/keypoints/AlphaPose/demo.py(54)() -> sys.stdout.flush() (Pdb) /home/zhengr/Documents/projects/keypoints/AlphaPose/demo.py(56)() -> det_loader = DetectionLoader(data_loader, batchSize=args.detbatch).start() (Pdb) /home/zhengr/Documents/projects/keypoints/AlphaPose/demo.py(59)() -> det_processor = DetectionProcessor(det_loader).start() (Pdb) Process Process-2: Traceback (most recent call last): File "/home/zhengr/anaconda3/envs/keypoint/lib/python3.5/multiprocessing/process.py", line 252, in _bootstrap self.run() File "/home/zhengr/anaconda3/envs/keypoint/lib/python3.5/multiprocessing/process.py", line 93, in run self._target(*self._args, **self._kwargs) File "/home/zhengr/Documents/projects/keypoints/AlphaPose/dataloader.py", line 315, in update img, orig_img, im_name, im_dim_list = self.dataloder.getitem() File "/home/zhengr/Documents/projects/keypoints/AlphaPose/dataloader.py", line 171, in getitem return self.Q.get() File "/home/zhengr/anaconda3/envs/keypoint/lib/python3.5/multiprocessing/queues.py", line 113, in get return ForkingPickler.loads(res) File "/home/zhengr/anaconda3/envs/keypoint/lib/python3.5/site-packages/torch/multiprocessing/reductions.py", line 86, in rebuild_storage_filename storage = cls._new_shared_filename(manager, handle, size) RuntimeError: No such file or directory at /pytorch/torch/lib/libshm/core.cpp:125

`

michaelHaha commented 5 years ago

I met the same issue

vishaldhull09 commented 2 years ago

Hi , were you able to solve it