valentin-fngr

Results 16 comments of valentin-fngr

Author mentioned adding lists to metadata. Is it something that might happen eventually ? The way I store lists is by doing ```str(my_list)```.

> @cir7 thanks for your help. The feature extracted by [tsn_feature_extraction.py](https://github.com/open-mmlab/mmaction2/blob/main/tools/data/activitynet/tsn_feature_extraction.py) is the type of pkl. How can I change it into CSV? [tsn_feature_extraction.py](https://github.com/open-mmlab/mmaction2/blob/main/tools/data/activitynet/tsn_feature_extraction.py) need both RGB feat and flow...

I totally agree with @E-delweiss observation. I am not sure to understand why we have to divide by S=7 again. I did compute the iou with these rescaling methods and...

Hey, what kind of GPU have not been replicated for CPU ? I have installed mmaction for CPU only (not trivial as I had to comment all gpu ops imports)...

Hey, I posted an answer that might help you here : https://github.com/open-mmlab/mmaction2/issues/2805#issuecomment-2031506177

> I have the same problem. Pytorch using cuda 11.8 installed, yet I get this error when installing. > > ```shell > The detected CUDA version (12.1) mismatches the version...

As an additional comment : when using CPU only, you might want to comment this line : [from . import nms_cpu, nms_cuda](https://github.com/MVIG-SJTU/AlphaPose/blob/c60106d19afb443e964df6f06ed1842962f5f1f7/detector/nms/nms_wrapper.py#L4) You can always add an if statement to...

Hi, Happened the same to me. You can use my package where I simply replaced the type here : https://github.com/valentin-fngr/cython_bbox This should work : `pip install git+https://github.com/valentin-fngr/cython_bbox.git `

Hi, So, I was dealing with a similar problem yesterday and realized that the alphapose code itself (not the cython package), uses np.float. Can you try to replace all np.float...

> ```shell > pip install cython==0.27.3 > ``` `pip install cython==0.27.3 ` solved many issues for me thank you. Can someone fix the install.md ? It is clearly impossible to...