/uts

python package for unsupervised text segmentation.

Primary LanguagePythonMIT LicenseMIT

Unsupervised Text Segmentation

Install

For python 2.x:

sudo pip install uts

For python 3.x:

sudo pip3 install uts

Usage

import uts

document = ['this is a good day', 'good day means good weather',\
            'I love computer science', 'computer science is cool']
model = uts.C99(window=2)
boundary = model.segment(document)
# output: [1, 0, 1, 0]
print(boundary)