VIPL-SLP / pointlstm-gesture-recognition-pytorch

This repo holds the codes of paper: An Efficient PointLSTM for Point Clouds Based Gesture Recognition (CVPR 2020).
https://openaccess.thecvf.com/content_CVPR_2020/html/Min_An_Efficient_PointLSTM_for_Point_Clouds_Based_Gesture_Recognition_CVPR_2020_paper.html
Apache License 2.0
117 stars 19 forks source link

Testing on CPU #3

Closed shravanchndr closed 3 years ago

shravanchndr commented 3 years ago

Hi, @Blueprintf

Can you please list out the changes that are required when testing the model on a CPU?

Thank you!

ycmin95 commented 3 years ago

You can set device in pointlstm.yaml as empty, for example:

# device: 1
device:  

More details can be found in ./experiments/utils/device.py

shravanchndr commented 3 years ago

Okay. Will try. Thank you so much!