A volition classifier for Japanese
Project description
Ishi: A volition classifier for Japanese
Requirements
Installation
$ pip install ishi
How to Use
from ishi import Ishi ishi = Ishi() # Ishi accepts a string print(ishi('自然言語処理の勉強をする')) # True print(ishi('自然言語処理は楽しい')) # False because "楽しい" is an adjective print(ishi('自然言語処理を学べる')) # False because "学べる" is a potential verb print(ishi('自然言語処理の勉強を始めてびっくりした')) # False because "びっくり (した)" is in a non-volition dictionary # Ishi also accepts a KNP output from pyknp import KNP knp = KNP() knp_output = knp.parse('自然言語処理の研究に必要なのは言語に対する深い洞察だ') print(ishi(knp_output)) # False
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ishi-0.0.3.tar.gz
(14.0 kB
view hashes)
Built Distribution
ishi-0.0.3-py3-none-any.whl
(16.1 kB
view hashes)