GithubHelp home page GithubHelp logo

Comments (1)

heibei2020 avatar heibei2020 commented on June 28, 2024

git clone https://github.com/takuyaa/kuromoji.js.git

cd kuromoji.js

npm install gulp
 ・・・npm installとかしちゃいけない、、、gulpのみ追加する

<以下から辞書をダウンロードして解凍しておく>
 https://github.com/neologd/mecab-ipadic-neologd/tree/master/seed
 mecab-user-dict-seed.20200910.csv.xz

cp ../mecabdic/mecab-user-dict-seed.20200910.csv ./node_modules/mecab-ipadic-seed/lib/dict/.

<何回か実行して、Out of memoryが出て止まったので、メモリ増やしました>

gulp build-dict --max_old_space_size=5120

vi sample.js

"use strict";

var kuromoji = require("./src/kuromoji");
var DIC_DIR = "dict/";

// Load dictionaries from file, and prepare tokenizer
kuromoji.builder({ dicPath: DIC_DIR }).build(function (error, tokenizer) {
var path = tokenizer.tokenize("鬼滅の刃ととなりのトトロはどちらが面白い");
console.log(path);
module.exports = tokenizer;
});

node sample.js |more

<分析結果>

[
{
word_id: 35387780,
word_type: 'KNOWN',
word_position: 1,
surface_form: '鬼滅の刃',
pos: '名詞',
pos_detail_1: '固有名詞',
pos_detail_2: '一般',
pos_detail_3: '',
conjugated_type: '
',
conjugated_form: '',
basic_form: '鬼滅の刃',
reading: 'キメツノヤイバ',
pronunciation: 'キメツノヤイバ'
},
{
word_id: 77960,
word_type: 'KNOWN',
word_position: 5,
surface_form: 'と',
pos: '助詞',
pos_detail_1: '並立助詞',
pos_detail_2: '
',
pos_detail_3: '',
conjugated_type: '
',
conjugated_form: '',
basic_form: 'と',
reading: 'ト',
pronunciation: 'ト'
},
{
word_id: 8261830,
word_type: 'KNOWN',
word_position: 6,
surface_form: 'となりのトトロ',
pos: '名詞',
pos_detail_1: '固有名詞',
pos_detail_2: '一般',
pos_detail_3: '
',
conjugated_type: '',
conjugated_form: '
',
basic_form: 'となりのトトロ',
reading: 'トナリノトトロ',
pronunciation: 'トナリノトトロ'
},
{
word_id: 77850,
word_type: 'KNOWN',
word_position: 13,
surface_form: 'は',
pos: '助詞',
pos_detail_1: '係助詞',

、、、略、、、

from kuromoji.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.