text analytics toolbox and MeCab

1 vue (au cours des 30 derniers jours)
Shuichi Obuchi
Shuichi Obuchi le 25 Déc 2019
Commenté : Shuichi Obuchi le 10 Mar 2020
I would like to add some words into MeCab dictionary that I suppose it is used behind Matlab textanalytics toolbox.
The tokenized procedure makes some words too short.
If you have any idea to solve my problem, it will be appricated.

Réponses (1)

Christopher Creutzig
Christopher Creutzig le 9 Mar 2020
Text Analytics Toolbox does not ship the tooling to compile an extended MeCab dictionary. But if you have one for your field (I know there are such compiled dictionaries for medical purposes, for example), you can use mecabOptions to have tokenizedDocument use it.
Alternatively, if you only have a handful of words you want to preserve, and are not worried about inflections, you can use "CustomTokens" to pass them to the tokenizer:
tokenizedDocument("日本睡眠学会のガイドライン")
ans =
tokenizedDocument:
5 tokens: 日本 睡眠 学会 の ガイドライン
tokenizedDocument("日本睡眠学会のガイドライン","CustomTokens","日本睡眠学会")
ans =
tokenizedDocument:
3 tokens: 日本睡眠学会 の ガイドライン
  1 commentaire
Shuichi Obuchi
Shuichi Obuchi le 10 Mar 2020
Thank you for your reply. I already solved the problem by using UserModel option. Anyway I am very happy to have your information.

Connectez-vous pour commenter.

Produits


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by