Skip to content

Commit

Permalink
Create
Browse files Browse the repository at this point in the history
  • Loading branch information
sakasa authored Jun 29, 2020
1 parent 378397d commit 6a69a2d
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions NLP/memo.md
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
```

0 comments on commit 6a69a2d

Please sign in to comment.