- Notifications
You must be signed in to change notification settings - Fork12
🔤 Natural language detection for Elixir without AI
License
NotificationsYou must be signed in to change notification settings
minibikini/paasaa
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Natural language detection for Elixir
API Documentation |Hex Package
Addpaasaa
to your list of dependencies inmix.exs
:
defdepsdo[{:paasaa,"~> 0.6.0"}]end
After you are done, runmix deps.get
in your shell to fetch and compilePaasaa.
Detect a language:
iex>Paasaa.detect"Detect this!""eng"
Detect language and return a scored list of languages:
iex>Paasaa.all("Detect this!")[{"eng",1.0},{"sco",0.8675529295913343},{"nob",0.6065977351058591},{"swe",0.5923190546528804},...]
mix bench
mix run script/generate_language_data.exs
Paasaa is a derivative work fromFranc (JavaScript, MIT) byTitus Wormer.
About
🔤 Natural language detection for Elixir without AI