sklearn partial_fit() not showing accurate results as fit()
I am training 3 lists of data L1, L2, L3. First i train all one them with SGDClassifier fit() and later instance by instance with partial_fit(). I I test the data with L4, L5. [The data in lists is image data and L4, L5 images are same as L2]. The predictions with fit() is correct and it is what i am expecting with partial_fit(). However the output of below code shows that both behave differently irrespective of 10,000 number of iterations for partial_fit(). Output: fit [1] #Tested L1. Predicts label as 1 correctly [2] #Tested L2. Predicts label as 2 correctly [3] #Tested L3. Predicts label as