0 purchases
uts 0.0.4
## Unsupervised Text Segmentation### Install sudo pip install uts### Usage```pythonimport utsdocument = ['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)```
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.