You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a reason to support both types of training endpoint? Why not just pick one?
In MainVertical:
// route for train type model, the given algorithm is pass by parameterrouter.post(Constants.LABEL_ENDPOINT_TRAINING)
.handler(BodyHandler.create())
.handler(this::trainingModel);
// route for train model using given algorithmrouter.post(Constants.LABEL_ENDPOINT_TRAINING_ALGORITHM)
.handler(BodyHandler.create())
.handler(this::trainingModel);
The text was updated successfully, but these errors were encountered:
Is there a reason to support both types of training endpoint? Why not just pick one?
In
MainVertical
:The text was updated successfully, but these errors were encountered: