In Jupyter notebooks (version notebook==5.0.0), new lines are printed when print is called among multiple process via parallel_map.
where _progress above is the same code as State._progress. The solution is probably to change the print statement to sys.stdout.write. Make sure to do the same for lovecat progress.
In Jupyter notebooks (version
notebook==5.0.0
), new lines are printed when print is called among multiple process viaparallel_map
.where
_progress
above is the same code asState._progress
. The solution is probably to change theprint
statement tosys.stdout.write
. Make sure to do the same for lovecat progress.