DEV Community

Toru Furukawa
Toru Furukawa

Posted on

2 2

入門自然言語処理 pp.204-215

5.3 は、Python の辞書に関する説明。nltk.defaultdict と collections.defaultdict は同じものらしい。たぶん標準ライブラリに defaultdict が追加される前に、nltk に defaultdict が入ってたのであろうと想像する。

>>> import collections
>>> collections.defaultdict
<class 'collections.defaultdict'>
>>> import nltk
>>> nltk.defaultdict
<class 'collections.defaultdict'>
>>> collections.defaultdict == nltk.defaultdict
True
Enter fullscreen mode Exit fullscreen mode

5.4 は自動タグ付け。

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay