activegit

Uses git for distributed active learning


License
Other
Install
pip install activegit==0.38

Documentation

activegit

Active learning is a machine learning technique to iteratively train a classifier. activegit uses git to create shareable, distributable repositories of data and classifiers for active learning. activegit runs in python.

Build Status codecov Documentation Status

Usage

ag = activegit.ActiveGit('repopath')
ActiveGit initializing from repo at repopath
Available versions: initial

(Build up targets for features. Update classifier.)

ag.write_training_data(features, targets)
ag.write_classifier(clf)
ag.commit_version('newversion')
ag.versions
['initial', 'newversion']
ag.set_version('newversion')

Install

pip install activegit