I have a neural network model which I wish to fit to my training data. When I compile the below line of code
history = pipeline.fit(inputs[train], targets[train], epochs=epochs, batchsize=batchsize)
I receive the following error message:
Pipeline.fit does not accept the epochs parameter. You can pass parameters to specific
steps of your pipeline using the stepname__parameter format, e.g.
`Pipeline.fit(X, y, logisticregression__sample_weight=sample_weight)`
How to resolve this issue?