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.
- Host: GitHub
- URL: https://github.com/devsonflutter/sentence_detection
- Owner: DevsOnFlutter
- License: bsd-3-clause
- Created: 2021-07-10T08:15:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-25T03:45:08.000Z (over 4 years ago)
- Last Synced: 2024-05-01T18:12:43.108Z (almost 2 years ago)
- Topics: android, flutter, java, nlp, plugins
- Language: Java
- Homepage:
- Size: 1.1 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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);
````