File size: 1,070 Bytes
327adb9
 
30143df
 
 
 
 
 
 
327adb9
30143df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
license: mit
tags:
- stopwords
pretty_name: stopwords
size_categories:
- n<1K
language:
- ja
---

# Japanese stopwords for nagisa


This is a stopword list of frequently used words in the Japanese language, created according to the tokenization rules of the Japanese text analysis library, [nagisa](https://github.com/taishi-i/nagisa).

This list is constructed by extracting the top 100 most commonly used words from the [CC-100 dataset](https://data.statmt.org/cc-100/) and [Wikipedia](https://dumps.wikimedia.org/other/cirrussearch/).

To access this list of words, simply run the provided program code below.

Please install Huggingface datasets library.

```bash
$ pip install datasets
```

After installing the library, please run the following code next.

```python
from datasets import load_dataset

dataset = load_dataset("taishi-i/nagisa_stopwords")

# the top 100 most commonly used words
words = dataset["nagisa_stopwords"]["words"]

# the part-of-speech list for the top 100 most commonly used words
postags = dataset["nagisa_stopwords"]["postags"]
```