Word processing: How can I get token numbers from a document?

7 ビュー (過去 30 日間)
E
E 2021 年 12 月 17 日
回答済み: Rishabh Singh 2022 年 1 月 5 日
I'm trying to tokenize a huge document (wikipedia) (so that I can convert the document to word vectors). I want to convert the giant char array into a numeric array of token IDs (indexing into a dictionary I have) in word order. I was able to write code for this using for loops of regexp()'s, but it's taking days and days to run. I see that tokenizedDocument() might be a good alternative, except that I can't figure out how to get the document back as a list of numeric token IDs.
Has anyone successfully tokenized a document in this way? If so, how?
Thanks!
  1 件のコメント
E
E 2021 年 12 月 17 日
For example, 'a cat ran ...' should be converted to [1,49,34,...] (where cat is the 49th word in the dictionary, etc).

サインインしてコメントする。

回答 (1 件)

Rishabh Singh
Rishabh Singh 2022 年 1 月 5 日
Hi,
You can use "tokenzedDocument" to tokenize your document. The actual performance will be impacted when you will assign rank number to each token. I would suggest you to use map containter for the purpose.

カテゴリ

Help Center および File ExchangeScripts についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by