This pull request introduces updates to the return values of the Model class in the project. The changes enhance the return types to provide more informative and consistent responses, thereby improving code clarity and usability.
Changes Made
Modified the return type of the predict method in the Model class to return a list of predictions instead of a single prediction.
Adjusted the return type of the fit method in the Model class to return training performance metrics and loss history.
Description
This pull request introduces updates to the return values of the
Model
class in the project. The changes enhance the return types to provide more informative and consistent responses, thereby improving code clarity and usability.Changes Made
predict
method in theModel
class to return a list of predictions instead of a single prediction.fit
method in theModel
class to return training performance metrics and loss history.