Skip to main content

Japanese text tokenization with deinflection support, reimplementing the algorithm from 10ten Reader

Project description

Tentoku Logo

Tentoku (天読) - Japanese Tokenizer

A dictionary-driven Japanese tokenizer with built-in deinflection.

PyPI version Python versions License

Tentoku is a Python port of the high-accuracy tokenization engine used in 10ten Japanese Reader.

Unlike statistical segmenters (such as MeCab or Sudachi), Tentoku uses a greedy longest-match algorithm paired with a rule-based system that resolves conjugated words back to their dictionary forms. It prioritizes lookup accuracy over speed, making it well suited for reading aids, dictionary tools, and annotation workflows.

Features

  • Greedy longest-match tokenization: Finds the longest possible words in text
  • Deinflection support: Handles ~400 conjugation rules to resolve verbs and adjectives back to dictionary forms
  • Tense and form detection: Identifies verb forms like "polite past", "continuous", "negative", etc.
  • Automatic database setup: Downloads and builds the JMDict database automatically on first use
  • Dictionary lookup: Uses JMDict SQLite database for word lookups
  • Text variations: Handles choon (ー) expansion and kyuujitai (旧字体) to shinjitai (新字体) conversion
  • Type validation: Validates deinflected forms against part-of-speech tags

Installation

The tokenizer requires Python 3.8+ and uses only standard library modules (sqlite3, unicodedata, dataclasses, typing).

From PyPI

pip install tentoku

From source

git clone https://github.com/eridgd/tentoku.git
cd tentoku
pip install -e .

Optional Dependencies

For better performance and progress bars:

  • lxml - Faster XML parsing (recommended)
  • tqdm - Progress bars during database building

Install with:

pip install tentoku[full]  # From PyPI
# or
pip install -e ".[full]"   # From source

Or individually:

pip install lxml tqdm

Usage

Basic Usage

The dictionary will automatically download and build the JMDict database on first use:

from tentoku import tokenize

tokens = tokenize("私は学生です")

for token in tokens:
    print(f"{token.text} ({token.start}-{token.end})")
    if token.dictionary_entry:
        entry = token.dictionary_entry
        sense = entry.senses[0]
        meaning = sense.glosses[0].text
        
        print(f"  Entry: {entry.ent_seq}")
        print(f"  Meaning: {meaning}")
        
        # Parts of speech
        if sense.pos_tags:
            print(f"  POS: {', '.join(sense.pos_tags)}")
        
        # Register/formality (misc)
        if sense.misc:
            print(f"  Usage: {', '.join(sense.misc)}")
        
        # Domain/field (e.g., computing, medicine)
        if sense.field:
            print(f"  Field: {', '.join(sense.field)}")
        
        # Dialect information
        if sense.dial:
            print(f"  Dialect: {', '.join(sense.dial)}")
        
        print()
        
# Output:
# 私 (0-1)
#   Entry: 1311110
#   Meaning: I
#   POS: pronoun

# は (1-2)
#   Entry: 2028920
#   Meaning: indicates sentence topic
#   POS: particle

# 学生 (2-4)
#   Entry: 1206900
#   Meaning: student (esp. a university student)
#   POS: noun (common) (futsuumeishi)

# です (4-6)
#   Entry: 1628500
#   Meaning: be
#   POS: copula, auxiliary verb
#   Usage: polite (teineigo) language

Verb Forms and Deinflection

The tokenizer automatically handles verb conjugation and provides deinflection information:

from tentoku import tokenize

tokens = tokenize("食べました")

for token in tokens:
    if token.deinflection_reasons:
        for chain in token.deinflection_reasons:
            reasons = [r.name for r in chain]
            print(f"{token.text} -> {', '.join(reasons)}")

# Output: 食べました -> PolitePast

Available Reason values include:

  • PolitePast - Polite past (ました)
  • Polite - Polite form (ます)
  • Past - Past tense (た)
  • Negative - Negative (ない)
  • Continuous - Continuous (ている)
  • Potential - Potential form
  • Causative - Causative form
  • Passive - Passive form
  • Tai - Want to (たい)
  • Volitional - Volitional (う/よう)
  • And many more (see Reason enum in _types.py)

Using a Custom Dictionary

If you need to use a custom database path or want to manage the dictionary instance yourself:

from tentoku import SQLiteDictionary, tokenize

# Create dictionary with custom path
dictionary = SQLiteDictionary(db_path="/path/to/custom/jmdict.db")

# Pass it explicitly to tokenize
tokens = tokenize("私は学生です", dictionary)

# Don't forget to close when done
dictionary.close()

Manual Database Building

You can also build the database manually:

from tentoku import build_database

# Build database at specified location
build_database("/path/to/custom/jmdict.db")

Or from the command line:

python -m tentoku.build_database --db-path /path/to/custom/jmdict.db

Word Search (Advanced)

For advanced usage, you can use the word search function directly:

from tentoku import SQLiteDictionary
from tentoku.word_search import word_search
from tentoku.normalize import normalize_input

dictionary = SQLiteDictionary()

# Normalize input
text = "食べています"
normalized, input_lengths = normalize_input(text)

# Search for words
result = word_search(normalized, dictionary, max_results=7, input_lengths=input_lengths)

if result:
    for word_result in result.data:
        # Show matched text and entry
        matched_text = text[:word_result.match_len]
        entry_word = word_result.entry.kana_readings[0].text if word_result.entry.kana_readings else "N/A"
        print(f"'{matched_text}' -> {entry_word} (entry: {word_result.entry.ent_seq})")
        
        if word_result.reason_chains:
            for chain in word_result.reason_chains:
                reason_names = [r.name for r in chain]
                print(f"  Deinflected from: {' -> '.join(reason_names)}")

# Output:
# '食べています' -> たべる (entry: 1358280)
#   Deinflected from: Continuous -> Polite

Deinflection (Advanced)

For advanced usage, you can use the deinflection function directly:

from tentoku.deinflect import deinflect

# Deinflect a conjugated verb
candidates = deinflect("食べました")

# Show the most relevant deinflected form
for candidate in candidates:
    if candidate.reason_chains and candidate.word == "食べる":
        for chain in candidate.reason_chains:
            reason_names = [r.name for r in chain]
            print(f"{candidate.word} <- {' -> '.join(reason_names)}")
            break

# Output: 食べる <- PolitePast

Architecture

The tokenizer consists of several modules:

  • _types.py: Core type definitions (Token, WordEntry, WordResult, WordType, Reason)
  • normalize.py: Text normalization (Unicode, full-width numbers, ZWNJ stripping)
  • variations.py: Text variations (choon expansion, kyuujitai conversion)
  • yoon.py: Yoon (拗音) detection
  • deinflect.py: Core deinflection algorithm
  • deinflect_rules.py: ~400 deinflection rules
  • dictionary.py: Dictionary interface abstraction
  • sqlite_dict.py: SQLite dictionary implementation
  • word_search.py: Backtracking word search algorithm
  • type_matching.py: Word type validation
  • sorting.py: Result sorting by priority
  • tokenizer.py: Main tokenization function
  • database_path.py: Database path utilities
  • build_database.py: Database building and downloading

Algorithm

The tokenization algorithm works as follows:

  1. Normalize input: Convert to full-width numbers, normalize Unicode, strip ZWNJ
  2. Greedy longest-match: Start at position 0, find longest matching word
  3. Word search: For each substring:
    • Generate variations (choon expansion, kyuujitai conversion)
    • Deinflect to get candidate dictionary forms
    • Look up candidates in dictionary and validate against word types
    • Track longest successful match
    • If no match, shorten input and repeat (by 2 characters if ending in yoon like きゃ, else 1)
  4. Advance: Move forward by match length, or 1 character if no match

Database

The tokenizer uses a JMDict SQLite database. On first use, it will:

  1. Check for an existing database in the appropriate location:
    • When installed from PyPI: User data directory
      • Linux: ~/.local/share/tentoku/jmdict.db
      • macOS: ~/Library/Application\ Support/tentoku/jmdict.db
      • Windows: %APPDATA%/tentoku/jmdict.db
    • When running from source: Module's data directory
      • data/jmdict.db (relative to where the module files are located)
  2. If not found, download JMdict_e.xml.gz from the official EDRDG source (https://www.edrdg.org/pub/Nihongo/JMdict_e.gz)
  3. Extract and parse the XML file (~10MB compressed, ~113MB uncompressed)
  4. Build the SQLite database with all necessary indexes (~105MB)
  5. Save the database for future use
  6. Clean up temporary XML files

This is a one-time operation that takes several minutes. Subsequent uses are instant.

The database includes:

  • entries: Entry IDs and sequence numbers
  • kanji: Kanji readings with priority
  • readings: Kana readings with priority
  • senses: Word senses with POS tags
  • glosses: Definitions/glosses
  • Additional metadata tables: sense_pos, sense_field, sense_misc, sense_dial

Testing

Run the test suite:

python tests/run_all_tests.py

Or run individual test files:

python -m unittest tentoku.tests.test_basic
python -m unittest tentoku.tests.test_deinflect
# etc.

See TEST_COVERAGE_INVENTORY.md for detailed test coverage information.

Performance Benchmarking

A comprehensive benchmark suite is available to measure performance:

python benchmark.py

This will run performance tests on:

  • Tokenization speed (tokens/sec, chars/sec)
  • Deinflection performance
  • Dictionary lookup performance
  • Different text complexity scenarios
  • Throughput with many texts

You can customize the number of iterations:

python benchmark.py --iterations 1000

Or skip the warmup phase:

python benchmark.py --no-warmup

The benchmark script provides detailed metrics including:

  • Mean, median, min, max execution times
  • Standard deviation
  • Throughput (operations per second)
  • Time per token/character

Performance tests are also included in the test suite (tests/test_stress.py) and can be run with:

python -m unittest tentoku.tests.test_stress

Credits

The tokenization logic, including the deinflection rules and matching strategy, is derived from the original TypeScript implementation used by 10ten Japanese Reader.

Dictionary Data

This module uses the JMDict dictionary data, which is the property of the Electronic Dictionary Research and Development Group (EDRDG). The dictionary data is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0).

Copyright is held by James William BREEN and The Electronic Dictionary Research and Development Group.

The JMDict data is automatically downloaded from the official EDRDG source when building the database. For more information about JMDict and its license, see:

See JMDICT_ATTRIBUTION.md for complete attribution details.

License

This project is licensed under the GNU General Public License v3.0 or later (GPL-3.0-or-later).

See the LICENSE file for the full license text.

Note on Dictionary Data: While this software is licensed under GPL-3.0-or-later, the JMDict dictionary data used by this module is separately licensed under CC BY-SA 4.0. When distributing this software with the database, both licenses apply to their respective components.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tentoku-0.1.6.tar.gz (72.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tentoku-0.1.6-py3-none-any.whl (54.6 kB view details)

Uploaded Python 3

File details

Details for the file tentoku-0.1.6.tar.gz.

File metadata

  • Download URL: tentoku-0.1.6.tar.gz
  • Upload date:
  • Size: 72.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tentoku-0.1.6.tar.gz
Algorithm Hash digest
SHA256 d6ab55ecea572956599c5103ed1f50755bf27846dce895681a3600b9b8923fe1
MD5 8208978cfc6848b6cb5286667183b07e
BLAKE2b-256 102d652d3ce61b4d1a4eaed508510ffc88b6dca8b74f60eb6bc80c898aaa0985

See more details on using hashes here.

File details

Details for the file tentoku-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: tentoku-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 54.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tentoku-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d5e0ccea8c50cafde2dc3c8f73cbc1b73c795a1a03aa016f23c2a21192b3196b
MD5 4bf82d580ec707a337ed82f26078b0fb
BLAKE2b-256 dfd1ac85bd59df1530c4fc6357a6b225b0cd0d5f01086454c65a7bb9209afd30

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page