Research Article

Automated Amharic News Categorization Using Deep Learning Models

Algorithm 1

The framework for the proposed system.
Input: Raw document Doc
Output: Category of Doc
Begin
 Preprocess document Doc (tokenization, normalization, stop word removal, and stemming)
 Create a list of distinct words in document Doc
 Use word embedding by transforming Doc into feature vector using fastText model
 Classify using CNN model
End