Vowpal Wabbit Active Labeler for Dedupe
This module provides an class for active learning using Vowpal Wabbit.
Part of the Dedupe.io cloud service and open source toolset for de-duplicating and finding fuzzy matches in your data.
pip install https://github.com/datamade/dedupe-vowpal/zipball/master
Instead of using the normal Dedupe classes, you will create a subclass with the ActiveLearner from this module
import dedupe
from vowpal_labeler import VowpalLearner
class Dedupe(dedupe.Dedupe):
ActiveLearner = VowpalLearner
....