File size: 1,387 Bytes
4c75c81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ee03742
 
 
 
 
 
 
4c75c81
 
 
 
 
 
 
 
 
 
 
 
ee03742
4c75c81
ee03742
 
 
4c75c81
 
 
 
 
 
 
 
 
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
configs:
- config_name: default
  data_files: vocabulary.jsonl
  default: true
---

# anki:Kaishi 1.5k Vocabulary Dataset

Japanese vocabulary dataset exported from Anki deck.

## Dataset Information

- **Deck Name**: anki:Kaishi 1.5k
- **Word Count**: 478
- **Format**: JSONL (one word per line)
- **Last Updated**: 2026-02-21

## Schema

Each word entry contains:

- `word` (string): The Japanese word in kanji/kana
- `reading` (string): The reading in hiragana/katakana
- `meaning` (string): English translation/meaning

- `jlpt`: JLPT level (N5, N4, N3, N2, N1)
  - N5: Basic level (easiest)
  - N4: Elementary level
  - N3: Intermediate level
  - N2: Pre-advanced level
  - N1: Advanced level (hardest)

Optional fields (may be added in future updates):
- `pos`: Part of speech (noun, verb, adjective, etc.)
- `tags`: List of tags/categories
- `frequency_rank`: Frequency ranking
- `note`: Additional notes

## Usage

### Load with Hugging Face datasets

```python
from datasets import load_dataset

# Load all words
dataset = load_dataset("username/anki-words", split="train")

# Filter by JLPT level (if available)
n5_words = dataset.filter(lambda x: x.get("jlpt") == "N5")
```

### View in dataset viewer

The dataset viewer on Hugging Face Hub will display all words with their readings and meanings.

## License

Personal vocabulary dataset for language learning purposes.