Skip to content

Commit

Permalink
Merge pull request #271 from PyThaiNLP/Command-Line-Docs (build and d…
Browse files Browse the repository at this point in the history
…eploy docs)

Update command_line.rst
  • Loading branch information
wannaphong authored Sep 13, 2019
2 parents 23ba97e + 206a115 commit 49fe5b0
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions docs/notes/command_line.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,45 @@ Run Command Line and type the commands:::

pythainlp

**Word segment**::
**Word tokenization**::

pythainlp -t TEXT -seg
pythainlp tokenization word --text TEXT

*Example*::

$ pythainlp -t แมวกินปลา -seg
แมว|กิน|ปลา
$ pythainlp tokenization word --text "ผมร<0e31>กประเทศไทย? สามารถ" --engine newmm
ผม|รัก|ประเทศไทย|?| |สามารถ

**Postag**::

pythainlp -t TEXT -pos
**Syllable tokenization**::

pythainlp tokenization syllable --text TEXT

*Example*::

$ pythainlp tokenization syllable --text "ผมร<0e31>กประเทศไทย? สามารถ"
ผม~รัก~ประ~เทศ~ไทย~? ~สา~มารถ

**Part-Of-Speech tagging**::

pythainlp tagging pos --text TEXT

*Example*::

$ pythainlp tagging pos --text "ผม|ไม่|กิน|เผ็ด"

**Soundex**::

pythainlp soundex --text TEXT

*Example*::

$ pythainlp -t แมวกินปลา -pos
แมว/NCMN กิน/VACT ปลา/NCMN
$ pythainlp soundex --text "บ<0e39>รณการ" --engine lk82
บE419

**Mange corpus**::

pythainlp -c
pythainlp corpus

**Help**::

Expand Down

0 comments on commit 49fe5b0

Please sign in to comment.