This is an LSTM-based neural network model developed for next token prediction in a translation task from English to Hausa. This model was trained as part of an assignment to demonstrate proficiency in building language models using LSTM architectures.
This model was created as part of a course assignment, focusing on using LSTM to predict the next token in bilingual English-Hausa translation data. The task was to:
The model achieved its best performance with a BLEU score of 0.0998 and a ChrF score of 32.03 after 10 epochs.
To use the model, you can load it directly with the Hugging Face Transformers library:
1from transformers import AutoModel, AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("AppalanaiduSaketi/LSTM-model-based-translator")
4model = AutoModel.from_pretrained("AppalanaiduSaketi/LSTM-model-based-translator")
5