def __call__(self, inputs): x = Conv1D(self.filters, 3, activation='relu')(inputs) return GlobalMaxPooling1D()(x)