您可以使用Wapiti (镜像):
Wapiti 是一个非常快速的工具包,用于使用判别模型分割和标记序列。它基于maxent模型、最大熵马尔可夫模型和线性链CRF,提出了各种优化和正则化方法,以提高标准模型的计算复杂度和预测性能。Wapiti 在 MLcomp 网站上连续一年多的序列标记任务排名第一。
Wapiti 由 LIMSI-CNRS 开发,部分资金来自 ANR 项目 CroTaL (ANR-07-MDCO-003) 和 MGA (ANR-07-BLAN-0311-02)。
它是用标准 C99+POSIX 编写的,并且是开源的(BSD 许可证)(镜像)。
它允许加载模型文件并再次训练。从手册 (镜子):
-m | --model <file>
Specify a model file to load and to train again. This allow you
either to continue an interrupted training or to use an old
model as a starting point for a new training. Beware that no new
labels can be inserted in the model. As the training parameters
are not saved in the model file, you have to specify them again,
or specify new one if, for example, you want to continue train-
ing with another algorithm or a different penalty.
似乎存在一些用于 wapiti 的 python 包装器,例如 python-wapiti ( mirror )。