This repository was archived by the owner on Jun 15, 2021. It is now read-only.
This repository was archived by the owner on Jun 15, 2021. It is now read-only.
maximum recursion depth exceeded #28
Open
Description
I was following the instructions and trying to reproduce the examples. But it raises a recursion error when calling the sigmoid function here.
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\user\Desktop\temp\hand_tracking\hand_tracker.py", line 170, in __call__
source, keypoints = self.detect_hand(img_norm)
File "C:\Users\user\Desktop\temp\hand_tracking\hand_tracker.py", line 125, in detect_hand
detecion_mask = self._sigm(out_clf) > 0.7
File "C:\Users\user\Desktop\temp\hand_tracking\hand_tracker.py", line 95, in _sigm
return 1 / (1 + np.exp(-x) )
RecursionError: maximum recursion depth exceeded while calling a Python object
Any idea of how to deal with this? I am using TensorFlow 2.0, python 35 in virtualenv of anaconda. Much appreciated!