dmmiller612 / bert-extractive-summarizer

Easy to use extractive text summarization with BERT
MIT License
1.39k stars 305 forks source link

Can I used this bert extractive summarizer for Myanmar Language(Burmese) news summairzation? #31

Closed Soe2Lwin closed 3 years ago

dmmiller612 commented 4 years ago

It would depend on a couple of factors. One you would need a Burmese pretrained Bert model, and the other would require that spacy has Burmese in their language library. I am not too sure if either of these exist.

Soe2Lwin commented 4 years ago

Thank you for replying

dmmiller612 commented 4 years ago

It looks like Bert has a pretrained multi-lingual model that includes Burmese: https://github.com/google-research/bert/blob/master/multilingual.md. You would have to load this model into the transformers bert model to properly work (They have a lot of tutorials on how to do this: https://github.com/huggingface/transformers). I didn't see the Burmese language in Spacy though.

Soe2Lwin commented 4 years ago

Thank you for your kind. I will try to test.