Add a new API named `partial_fit()`, which allows the user to train on a single sequence. This API will target at the advanced users. The user needs to write his own code for things like data shuffling. Ideally, the `fit()` function should be calling the `partial_fit()` function.
Add a new API named
partial_fit(), which allows the user to train on a single sequence.This API will target at the advanced users. The user needs to write his own code for things like data shuffling.
Ideally, the
fit()function should be calling thepartial_fit()function.