4 releases

0.1.3 Jul 6, 2023
0.1.2 Oct 19, 2020
0.1.1 Aug 20, 2020
0.1.0 Aug 20, 2020

#321 in Text processing

Download history 12/week @ 2023-12-06 1/week @ 2024-01-24 9/week @ 2024-01-31 19/week @ 2024-02-21 22/week @ 2024-02-28 10/week @ 2024-03-06 9/week @ 2024-03-13 1/week @ 2024-03-20

58 downloads per month

Apache-2.0 OR MIT

70KB
1.5K SLoC

rust-pragmatic-segmenter version

Rust port of pySBD v3.1.0 and Ruby pragmatic_segmenter. Documentations

rust-pragmatic-segmenter is rule-based SBD. It uses a lot of regular expressions to separate sentences.

use pragmatic_segmenter::Segmenter;

let segmenter = Segmenter::new()?;
let result: Vec<_> = segmenter.segment("Hi Mr. Kim. Let's meet at 3 P.M.").collect();
//=> vec!["Hi Mr. Kim. ", "Let's meet at 3 P.M."]

How to build

sudo apt install -y libclang-dev
cargo build

TODOs

  • Perfectly match the behavior with pySBD (current: 99%)
  • Support languages other than English
  • Remove regexes with look around and back references
  • Try Intel Hyperscan
  • Fix mistakes of pySBD, possibly send patches to the upstream
  • Optimize copies and allocations
  • Use proper error types instead of Boxed error
  • Import test cases from pySBD and ruby pragmatic_segmenter

 


rust-pragmatic-segmenter is primarily distributed under the terms of both the Apache License (Version 2.0) and the MIT license. See COPYRIGHT for details.

Dependencies

~7MB
~159K SLoC