-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# 自然言語処理(Natural Language Processing) | ||
|
||
## 形態素解析器 | ||
|
||
### MeCab | ||
https://taku910.github.io/mecab/ | ||
* install | ||
```bash | ||
# install library | ||
apt-get -y install mecab libmecab-dev mecab-ipadic-utf8 | ||
|
||
# setup dictionary NEologd | ||
git clone --depth 1 https://github.com/neologd/mecab-ipadic-neologd.git | ||
cd mecab-ipadic-neologd | ||
./bin/install-mecab-ipadic-neologd -n -y | ||
|
||
# install python lib | ||
pip install mecab-python3 --upgrade | ||
``` | ||
|
||
### Janome | ||
https://mocobeta.github.io/janome/ | ||
* install | ||
```bash | ||
pip install janome | ||
``` | ||
|
||
### Sudachi | ||
https://github.com/WorksApplications/SudachiPy | ||
* install | ||
```bash | ||
pip install sudachipy | ||
``` | ||
|
||
### Nagisa | ||
https://github.com/taishi-i/nagisa | ||
* install | ||
```bash | ||
pip install nagisa | ||
``` |