From: Martin Pitt Date: Sat, 29 Aug 2020 19:29:39 +0000 (+0200) Subject: Process many images in parallel X-Git-Url: https://piware.de/gitweb/?p=handwriting-recognition.git;a=commitdiff_plain;h=1de3cdb5ecba32a8a3b0a02bbf71e883383a689d;hp=1de3cdb5ecba32a8a3b0a02bbf71e883383a689d Process many images in parallel Provide one object per NN layer and implement their functionality separately, like in https://www.kdnuggets.com/2019/08/numpy-neural-networks-computational-graphs.html Each layer does not take only one image vector, but a whole 10,000 of them, which massively speeds up the computation -- much less time spent in Python iterations. ---