zoome0215 / predictBO

Predicting Binary Option in Highlow Australia's demotrade using tensorflow (or other machine learning algorithms). This project is very incomplete. Please help!
GNU General Public License v3.0
24 stars 14 forks source link

Loop error? #1

Closed oakniiv closed 6 years ago

oakniiv commented 6 years ago

capture \Local\Programs\Python\Python36-32\lib\imp.py", line 170, in load_source module = _exec(spec, sys.modules[name]) File "", line 601, in _exec File "", line 148, in enter File "", line 166, in _get_module_lock RecursionError: maximum recursion depth exceeded while calling a Python object

zoome0215 commented 6 years ago

30 seconds of googling the error message suggested me to try

import sys
sys.setrecursionlimit(10000)

change 10000 to whatever number that is suitable (preferentially less than 1,000,000). This issue is python 3 specific. It shouldn't be occurring on python 2.7.