I am analyzing Python code and I don’t understand what the function call x_class = Convolution2D means (num_anchors, (1, 1), activation = 'sigmoid', kernel_initializer = 'uniform', name = 'rpn_out_class') (x)
That is, the function call has the form: x_class = Convolution2D (params) (x)
In other languages I have not seen such constructions. (params) - this is understandable, but why are there second brackets with X? Or just say the name of such a structure - look for the name.