How can i make an Android app with NLP using Python?
I create an app that makes sentences from cards, but since each card is a different word, the constructed sentence is more often than not not worded correctly. To correct the errors, I use torch and model pipeline(“text2text-generation”, model=“cointegrated/rut5-base-paraphraser”), and pymorphy2 for full correction. I embed Python code into the mobile app using chaquopy, but this way my app weighs about 2GB, which is not good. Is there any way to reduce the amount of space it takes up?