Skip to content

Commit

Permalink
attempt to fix issue of Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhao062 committed Oct 27, 2023
1 parent a733f2b commit af87503
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions suod/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@

import joblib
from joblib import Parallel, delayed, effective_n_jobs
from joblib.externals.loky.backend.context import set_start_method
set_start_method('spawn')
# need to do this to fix issue on Python 3.7

from pyod.models.sklearn_base import _pprint
from pyod.utils.utility import check_parameter
Expand Down

0 comments on commit af87503

Please sign in to comment.