Keras Concatenate TypeError: __init__() got multiple values for argument 'axis'
问题 I am currently trying to recreate the Unet. At the "upconvolution" part where the outputs of two layers needs to be merged I got the mentioned error. (TypeError: init () got multiple values for argument 'axis') Keras Version: 2.0.6 Tensorflow-gpu: 1.2.1 Code snippet: import gzip import os from six.moves import urllib import tensorflow as tf import numpy as np from keras.models import Sequential, Model from keras.layers import Input, Dropout, Flatten, Concatenate from keras.layers import