public TextSegmenter(IModel model) { model.ThrowIfNull(nameof(model)); _VTS = new ViterbiTextSegmentation(model); _VTS_Offset = new ViterbiTextSegmentation_Offset(model); }
public void Dispose() { _VTS = null; _VTS_Offset = null; }