An error occurs for a ModelArts training job.
RuntimeError: maximum recursion depth exceeded in __instancecheck__
The training failed because the recursion depth exceeded the default recursion depth of Python.
If the maximum recursion depth is exceeded, increase the recursion depth in the boot file as follows:
import sys sys.setrecursionlimit(1000000)