I am currently using scikit-learn to create and fit a SVC classifier. To do this, I wrote the following code:
clf = SVC(probability=True).fit(X_labeled, Y_labeled)
I then use an active learning technique to get more data to improve the classifier's performance. To train the classifier on the new data, can I do this:
clf.fit(newData, newY)
or do I need to do this:
clf.fit(newData+X_labeled, newY+Y_labeled) #pseudocode