top of page

Day 6
You just trained your scikit-learn model of SVC algorithm. You want to train further by calling the fit() again on the model without changing any parameters. Which of the following is likely to happen?

Avenir Light is a clean and stylish font favored by designers. It's easy on the eyes and a great go to font for titles, paragraphs & more.
Model will be reset and trained again as it was before
Scikit-learn models unlike Deep Learning models, are reset when fit() is called. This is due to the factor that scikit-learn models don't use the concept of epochs.
Credits :
bottom of page