Skip to content

Commit

Permalink
update knp doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tamuhey committed Apr 13, 2020
1 parent 6d52711 commit 2acc233
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 38 deletions.
5 changes: 5 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
dev:
watchmedo shell-command --patterns='*.rst;source/conf.py' --ignore-pattern=_build/* --recursive --command='make html' &
cd build/html && python -m http.server 5000


# Minimal makefile for Sphinx documentation
#

Expand Down
7 changes: 4 additions & 3 deletions docs/source/notes/knp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
KNP
====


`KNP <http://nlp.ist.i.kyoto-u.ac.jp/index.php?KNP>`_ は日本語の格解析モデルです.
Camphrは,knpの解析結果をspaCyで扱うための機能を提供しています.

Expand Down Expand Up @@ -40,14 +41,14 @@ Usage
>>> doc = nlp("太郎はリンゴとみかんを食べながら富士山へ行った。")
形態素は:code:`Token`に対応します.
形態素は :code:`Token` に対応します.

.. code:: python3
>>> list(doc)
[太郎, は, リンゴ, と, みかん, を, 食べ, ながら, 富士, 山, へ, 行った, 。]
基本句や文節に対応する:code:`Span`は,以下のようにして取ることができます.
基本句や文節に対応する :code:`Span` は,以下のようにして取ることができます.

.. code:: python3
Expand All @@ -57,7 +58,7 @@ Usage
>>> list(doc._.knp_bunsetsu_spans) # 文節
[太郎は, リンゴと, みかんを, 食べながら, 富士山へ, 行った。]
また,:code:`Token`から,それが含まれる文節や基本句の:code:`Span`を取得することができます.
また,:code:`Token` から,それが含まれる文節や基本句の :code:`Span` を取得することができます.

>>> token = doc[8]
>>> print(token)
Expand Down
70 changes: 35 additions & 35 deletions docs/source/notes/knp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2acc233

Please sign in to comment.