Sha256: 6270fad6e9e922f0a4947d32718a5e71bac3e7a98c1bebb554b615549d8bb599
Contents?: true
Size: 699 Bytes
Versions: 2
Compression:
Stored size: 699 Bytes
Contents
require "ruby-spacy" require "terminal-table" nlp = Spacy::Language.new("ja_core_news_sm") doc = nlp.read("私は論文を読んでいるところだった。") headings = ["text", "lemma"] rows = [] doc.each do |token| rows << [token.text, token.lemma] end table = Terminal::Table.new rows: rows, headings: headings puts table # +--------+--------+ # | text | lemma | # +--------+--------+ # | 私 | 私 | # | は | は | # | 論文 | 論文 | # | を | を | # | 読ん | 読む | # | で | で | # | いる | いる | # | ところ | ところ | # | だっ | だ | # | た | た | # | 。 | 。 | # +--------+--------+
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-spacy-0.1.4.1 | examples/japanese/lemmatization.rb |
ruby-spacy-0.1.4 | examples/japanese/lemmatization.rb |