You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
break out all the active learning bits into a separate class or multiple separate classes
train a blocking model, using the familiar fit_transform syntax. this is a separate class that emits a stream of pairs. (is this something that could really fit into the sklearn pattern)
train a classification model using fit_transform., this takes in a stream of pairs and emits a stream of classification decisions
break out all the active learning bits into a separate class or multiple separate classes
train a blocking model, using the familiar fit_transform syntax. this is a separate class that emits a stream of pairs. (is this something that could really fit into the sklearn pattern)
train a classification model using fit_transform., this takes in a stream of pairs and emits a stream of classification decisions
actually, this all would work quite well.
https://scikit-learn.org/stable/modules/generated/sklearn.pipeline.Pipeline.html
The text was updated successfully, but these errors were encountered: