Closed paul-dls closed 1 year ago
the Jupyter notebbok in acconeer-a121-gesture-control-main\model_development.ipynb doesn't work The code in Gesture detection crashes in line 3
clone the github repo and lunch the jupyter notebook
replace line 71 in util.py vels, _ = get_approx_fft_vels(sensor_config) by vels, _ = get_approx_fft_vels(None,sensor_config)
vels, _ = get_approx_fft_vels(sensor_config)
vels, _ = get_approx_fft_vels(None,sensor_config)
Hi,
Thanks for reporting this. It should be fixed now!
BR Anders
Describe the bug
the Jupyter notebbok in acconeer-a121-gesture-control-main\model_development.ipynb doesn't work The code in Gesture detection crashes in line 3
Screenshots/Video
To Reproduce
clone the github repo and lunch the jupyter notebook
Config
quick fix :
replace line 71 in util.py
vels, _ = get_approx_fft_vels(sensor_config)
byvels, _ = get_approx_fft_vels(None,sensor_config)