CellProfiler-plugins icon indicating copy to clipboard operation
CellProfiler-plugins copied to clipboard

module error in unet classification - problem and fix

Open VolkerH opened this issue 7 years ago • 0 comments

When pip-installing the requirements-windows.txt file, pip pulled keras version 2.2.2.

With this version, the classify-unet module will throw an error as the interface to keras.layers.merge seems to have changed recently. To fix it, one has to replace all calls of the kind keras.layers.merge([], concat_axis=3. mode='concat') to

keras.layers.merge.concatenate([e, b], axis=3).

VolkerH avatar Aug 30 '18 10:08 VolkerH