DevsOnFlutter / sentence_detection

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sentence_detection

A flutter plugin that recognises sentences in paragraphs using lingpipe NLP.

Installation

dependencies

dependencies:
  file_manager: ^1.0.0

import

import 'package:sentence_detection/sentence_detection.dart';

Usages

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

About

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

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Java 63.7%Language:Dart 36.3%