ve_dart

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

ve dart

ve_dart #
"離さないって決めたから" => ["離さない", "って", "決めた", "から"]
"そぞろに鼻を利かせては" => ["そぞろに", "鼻", "を", "利かせて", "は"]
"無作為に伸びてる雑草も" => ["無", "作為に", "伸びてる", "雑草", "も"]
"守りたいって言ったのさ" => ["守りたい", "って", "言った", "の", "さ"]
"何が起きようと変わらないままで" => ["何", "が", "起きよ", "う", "と", "変わらない", "まま", "で"]
copied to clipboard
A Dart implementation of Ve. A linguistic framework that's easy to use. No degree required.

Segments Japanese morphemes to words via the mecab_dart package
Based on the Java port of Jamie Birch, original Ruby implementation by Kim Ahlström
Used in jidoujisho as a text segmentation parser for tap to select subtitle functionality

🚨 Dependencies #
This package requires use of the mecab_dart package, which in turn makes use of ipadic dictionary files.

Add the following dependencies in your pubspec.yaml file.

dependencies:
mecab_dart: 0.1.2
ve_dart: 0.2.1
copied to clipboard


Copy the ipadic dictionary files in the mecab_dart example's assets/ipadic to your own assets folder.


Append the following to the assets section of your pubspec.yaml file


flutter:
assets:
- assets/ipadic/
copied to clipboard

Add the following imports to your code.

import 'package:mecab_dart/mecab_dart.dart';
import 'package:ve_dart/ve_dart.dart';
copied to clipboard
When done, you're ready to use the example below.
📖 Example #
// Initialise a mecab_dart tagger.
mecabTagger = Mecab();
await mecabTagger.init("assets/ipadic", true);

// Use parseVe with the initialised tagger and your unparsed term.
List<Word> words = parseVe(mecabTagger, "今未練なんかこれっぽっちも無い");

List<String> output = [];
for (var word in words) {
output.add(word.toString());
}

print(output); // ["今", "未練", "なんか", "これ", "っぽっ", "ち", "も", "無い"]
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.