Logo Lanfrica
  • Accueil
  • Atlas
  • Analyses
  • Documentation
  • Sign in

© 2026 Lanfrica. Tous droits réservés. Tous les droits d'auteur des ressources affichées sur le site Web Lanfrica appartiennent aux détenteurs de droits d'auteur d'origine, sauf indication contraire explicite.

tayebrhn/amharic-writing-assistant

Domaine:

natural language processing

Type de record:

software
Créateur:
tay
Hôte:
# Amharic Writing Assistant Status: Phase 1 (spell check) working end to end. Grammar, similarity, and rewrite are stubbed out as empty folders for later phases. ## Run it docker-compose up --build This starts the API on localhost (docs at /docs) and a Postgres instance with the pgvector extension on :5432. The `db` service isn't used by any code yet - it's provisioned early for Phase 2 (similarity engine). Check it's up: curl localhost Spell-check some text: curl -X POST localhost \ -H "Content-Type: application/json" \ -d '{"text": "ሰላም እንደምን ነህ"}' Response is one entry per word, in reading order: { "results": [ {"word": "ሰላም", "is_correct": true, "suggestions": []}, {"word": "እንደምን", "is_correct": true, "suggestions": []}, {"word": "ነህ", "is_correct": true, "suggestions": []} ] } ## Local dev without Docker pip install -r api/requirements.txt uvicorn api.main:app --reload ## Tests pip install pytest httpx pytest tests/ -v ## How the spell checker works 1. `nlp/preprocessing/amharic_normalizer.py` folds Amharic's homophone letter families (e.g. ሰ/ሠ, ጸ/ፀ, ሀ/ሐ/ኀ/ኸ, አ/ዐ - letters pronounced identically today but historically distinct) down to one canonical spelling, and cleans whitespace/legacy punctuation. 2. `nlp/dictionaries/amharic_words.txt` is a ~270k word frequency dictionary, normalized with the *exact same* folding function, built by `nlp/dictionaries/build_dictionary.py` from a public ~490k word Amharic web-crawl frequency list (yididiyan/amharic_spell_corrector, MIT licensed). Words appearing fewer than 3 times in the source crawl are dropped as likely noise. 3. `api/services/spell_checker.py` wraps `symspellpy` (Symmetric Delete algorithm) over that dictionary for fast fuzzy lookup, edit distance ≤2. 4. `api/models/loaded_models.py` loads the dictionary once at startup (~7s) and caches it, so requests don't pay that cost. ## Known limitations (read before you trust the output) - **Th …

Visit

github.com

Tasks

text normalization

Languages

Amharic

Similaires

tayebrhn/ecalendarYonasTewabe/Amharic-Voice-AssistantIsaakAlemu/amharic-rag-assistantyab2/amharic-translation-assistantEtheal9/Amharic-ai-assistantThe Sepedi Helper Writing Assistant: A User Study

tayebrhn/ecalendar

Ken Mekuteria (የቀን መቁጠሪያ) is an Ethiopian calendar app that displays a full month view alongside the

YonasTewabe/Amharic-Voice-Assistant

Siri type digital assistant app that works with Amharic language commands

IsaakAlemu/amharic-rag-assistant

# Conversational Amharic RAG Assistant An end-to-end **conversational Retrieval-Augmented Generatio

yab2/amharic-translation-assistant

Local, single-operator Amharic translation assistant for church announcements — drafts EN→AM, checks

Etheal9/Amharic-ai-assistant

Amharic-AI-Assistant ## Table of Contents * About * Features * Getting Started * Prerequisites * I

The Sepedi Helper Writing Assistant: A User Study