An open API service indexing awesome lists of open source software.

https://github.com/devsonflutter/sentence_detection

A flutter plugin that recognizes sentences in paragraphs using LingPipe NLP.
https://github.com/devsonflutter/sentence_detection

android flutter java nlp plugins

Last synced: 6 months ago
JSON representation

A flutter plugin that recognizes sentences in paragraphs using LingPipe NLP.

Awesome Lists containing this project

README

          

# sentence_detection

A flutter plugin that recognises sentences in paragraphs using [lingpipe NLP](http://www.alias-i.com/lingpipe/).

## Installation

### dependencies

````dart
dependencies:
file_manager: ^1.0.0
````

### import

````dart
import 'package:sentence_detection/sentence_detection.dart';
````````

### Usages

````dart
String paragraph =
"This is first sentence. I was born in 01.05.2000. This is third sentence";
List _sentences = await SentenceDetection.getSentences(paragraph);
````