Skip to content

Commit

Permalink
perf(Ensemble): Replaced python built-in multiprocessing to pathos mu…
Browse files Browse the repository at this point in the history
…ltiprocessing
  • Loading branch information
muellerdo committed Jun 13, 2022
1 parent 018aed8 commit c79110f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aucmedi/ensemble/bagging.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import os
import tempfile
from tensorflow.keras.callbacks import ModelCheckpoint, CSVLogger
import multiprocessing as mp
from pathos.helpers import mp # instead of 'import multiprocessing as mp'
import numpy as np
import shutil
# Internal libraries
Expand Down
2 changes: 1 addition & 1 deletion aucmedi/ensemble/composite.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import os
import tempfile
from tensorflow.keras.callbacks import ModelCheckpoint, CSVLogger
import multiprocessing as mp
from pathos.helpers import mp # instead of 'import multiprocessing as mp'
import numpy as np
import shutil
# Internal libraries
Expand Down
2 changes: 1 addition & 1 deletion aucmedi/ensemble/stacking.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import os
import tempfile
from tensorflow.keras.callbacks import ModelCheckpoint, CSVLogger
import multiprocessing as mp
from pathos.helpers import mp # instead of 'import multiprocessing as mp'
import numpy as np
import shutil
# Internal libraries
Expand Down

0 comments on commit c79110f

Please sign in to comment.