├── LICENSE ├── README.md ├── code ├── baselines │ ├── classic_models │ │ └── Readme.txt │ └── neural_models │ │ ├── BiGRU.py │ │ ├── CNN.py │ │ └── char-cnn.py ├── cleaning │ └── clean_dataset.py └── embeddings │ └── word2vec_training.py └── stopwords ├── Kinyarwanda ├── Kinyarwanda stopwords set.txt └── listed.txt └── Kirundi ├── Kirundi stopwords set.txt └── listed.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/README.md -------------------------------------------------------------------------------- /code/baselines/classic_models/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/code/baselines/classic_models/Readme.txt -------------------------------------------------------------------------------- /code/baselines/neural_models/BiGRU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/code/baselines/neural_models/BiGRU.py -------------------------------------------------------------------------------- /code/baselines/neural_models/CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/code/baselines/neural_models/CNN.py -------------------------------------------------------------------------------- /code/baselines/neural_models/char-cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/code/baselines/neural_models/char-cnn.py -------------------------------------------------------------------------------- /code/cleaning/clean_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/code/cleaning/clean_dataset.py -------------------------------------------------------------------------------- /code/embeddings/word2vec_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/code/embeddings/word2vec_training.py -------------------------------------------------------------------------------- /stopwords/Kinyarwanda/Kinyarwanda stopwords set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/stopwords/Kinyarwanda/Kinyarwanda stopwords set.txt -------------------------------------------------------------------------------- /stopwords/Kinyarwanda/listed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/stopwords/Kinyarwanda/listed.txt -------------------------------------------------------------------------------- /stopwords/Kirundi/Kirundi stopwords set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/stopwords/Kirundi/Kirundi stopwords set.txt -------------------------------------------------------------------------------- /stopwords/Kirundi/listed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrews2017/KINNEWS-and-KIRNEWS-Corpus/HEAD/stopwords/Kirundi/listed.txt --------------------------------------------------------------------------------