Exemplo n.º 1
0
        public TextSegmenter(IModel model)
        {
            model.ThrowIfNull(nameof(model));

            _VTS        = new ViterbiTextSegmentation(model);
            _VTS_Offset = new ViterbiTextSegmentation_Offset(model);
        }
Exemplo n.º 2
0
 public void Dispose()
 {
     _VTS        = null;
     _VTS_Offset = null;
 }