text analytics toolbox and MeCab

1 visualización (últimos 30 días)
Shuichi Obuchi
Shuichi Obuchi el 25 de Dic. de 2019
Comentada: Shuichi Obuchi el 10 de Mzo. de 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.

Respuestas (1)

Christopher Creutzig
Christopher Creutzig el 9 de Mzo. de 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 comentario
Shuichi Obuchi
Shuichi Obuchi el 10 de Mzo. de 2020
Thank you for your reply. I already solved the problem by using UserModel option. Anyway I am very happy to have your information.

Iniciar sesión para comentar.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by