├── .gitignore ├── ALMa ├── __init__.py └── activelearningmanager.py ├── LICENSE ├── README.md ├── examples └── text_classification_with_modAL.py ├── requirements.txt ├── setup.py └── tests └── alma_tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightTag/ALMa/HEAD/.gitignore -------------------------------------------------------------------------------- /ALMa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightTag/ALMa/HEAD/ALMa/__init__.py -------------------------------------------------------------------------------- /ALMa/activelearningmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightTag/ALMa/HEAD/ALMa/activelearningmanager.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightTag/ALMa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightTag/ALMa/HEAD/README.md -------------------------------------------------------------------------------- /examples/text_classification_with_modAL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightTag/ALMa/HEAD/examples/text_classification_with_modAL.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightTag/ALMa/HEAD/setup.py -------------------------------------------------------------------------------- /tests/alma_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightTag/ALMa/HEAD/tests/alma_tests.py --------------------------------------------------------------------------------