ASReview has support for extensions, which enable you to seemlessly integrate your own programs with the ASReview framework. This template can extent ASReview with new data.
See the section Extensions on ReadTheDocs for more information on writing extensions.
Click the Use this template
button and add/modify the algorithms. Install
your new classifier with
pip install .
or
pip install git@github.com:{USER_NAME}/{REPO_NAME}.git
and replace {USER_NAME}
and {REPO_NAME}
by your own details.
The new dataset is defined in
asreviewcontrib/dataset_name/your_dataset.py
and can be used as a new dataset.
By supplying the from_config()
method with a
config object, a new DataSet object is created, and integrated to ASReview. See
asreview.datasets.BaseDataSet.from_config
for more information on this function.
setup.py
contains the code needed for integration into ASReview.
asreviewcontrib/dataset_name/__init__.py
contains directions for loading the dataset module.
MIT license