4141done / ex_kr_dict

Dictionary lookup and autocomplete for Korean in Elixir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KrDict

Currently this is kind of a playground to experiment with tools for working with Korean in Elixir.

This project borrows liberally from open-korean-text. In some cases there is some directly ported code (KrDict.Util.Hangul).

Todo

Stemming notes

  • By doing basic strategy of removing syllables from the end and then performing a prefix search reliably performs at about 50% accuracy depending on the text

  • This strategy is highly susceptible to how

    1. Complete
    2. Tailored The dictionary is. I have not been able to find a very complete word list including a good number of foreign loan words.
  • Next strategies to try:

    1. Find a really good dictionary
    2. Try stemming by deconstructing instead of syllable by syllable
    3. Create additional pipelines for words not found in dictionary
    4. Smarter strategies for choosing matches
    • Can't be longer than original word? (might have some issues there)
    • Can't have too large a difference in length?
    • Partial POS tagging to know whether we prefer 다 at the end since we think it's a verb
    1. What are the mechanisms to help this thing learn as we use it. (Manual submission?)

Installation

If [available in Hex] (Ehttps://hex.pm/docs/publish), the package can be installed by adding kr_dict to your list of dependencies in mix.exs:

def deps do
  [
    {:kr_dict, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/kr_dict.

About

Dictionary lookup and autocomplete for Korean in Elixir


Languages

Language:Elixir 100.0%