This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Is there a need for SingleOutputProblem and MultiOutputProblem? #1372
Labels
You can continue the conversation there. Go to discussion →
Both methods take the same arguments. Indeed, looking at the two classes, they're both virtually identical.
They both use
model.n_parameters()
to check that the user has provided an object of which outputs the correct dimensions. By the same token, couldn't we just usemodel.n_outputs()
in a singleOutputProblem
method to determine whether it's a single or multiple output problem internally (so a user doesn't have to specify this)?The text was updated successfully, but these errors were encountered: