EduNLP
EduNLP copied to clipboard
A library for advanced Natural Language Processing towards multi-modal educational items.
EduNLP
EduNLP is a library for advanced Natural Language Processing in Python and is one of the projects of EduX plan of BDAA. It's built on the very latest research, and was designed from day one to be used in real educational products.
EduNLP now comes with pretrained pipelines and currently supports segment, tokenization and vertorization. It supports varies of preprocessing for NLP in educational scenario, such as formula parsing, multi-modal segment.
EduNLP is commercial open-source software, released under the Apache-2.0 license.
Quickstart
Installation
Git and install by pip
# basic installation
pip install .
# full installation
pip install .[full]
or install from pypi:
# basic installation
pip install EduNLP
# full installation
pip install EduNLP[full]
Usage
from EduNLP import get_pretrained_i2v
i2v = get_pretrained_i2v("d2v_all_300", "./model")
item_vector, token_vector = i2v(["the content of item 1", "the content of item 2"])
Tutorial
For more details, please refer to the full documentation (latest | stable).
Resource
We will continuously publish new datasets in Standard Item Format (SIF) to encourage the relevant research works. The data resources can be accessed via another EduX project EduData
Contribute
EduNLP is still under development. More algorithms and features are going to be added and we always welcome contributions to help make EduNLP better. If you would like to contribute, please follow this guideline(开发指南).
Citation
If this repository is helpful for you, please cite our work
@misc{bigdata2021edunlp,
title={EduNLP},
author={bigdata-ustc},
publisher = {GitHub},
journal = {GitHub repository},
year = {2021},
howpublished = {\url{https://github.com/bigdata-ustc/EduNLP}},
}