152334H / DL-Art-School

TorToiSe fine-tuning with DLAS
GNU Affero General Public License v3.0
214 stars 96 forks source link

Please help RecursionError: maximum recursion depth exceeded while calling a Python object #73

Open volome opened 1 year ago

volome commented 1 year ago

what ever I do I always get this error

Is there anyone out there to give a hand RecursionError: maximum recursion depth exceeded while calling a Python object

Press any key to continue . . .

vitalifa commented 1 year ago

I found this as a workaround. If you edit the file:

DL-Art-School/codes/data/audio/paired_voice_audio_dataset.py

Add this under the "import sys" line, so it looks like:

import sys
sys.setrecursionlimit(100000)

GL