Optimizing heavy models with early exit branches
Everyday models get heavier and heavier (in terms of learnable parameters). For example, LEMON_large has 200M parameters and GPT-3 has over 175 billion parameters!
Read moreDeep Learning, NLP, NMT, AI, ML
Python tutorials
Everyday models get heavier and heavier (in terms of learnable parameters). For example, LEMON_large has 200M parameters and GPT-3 has over 175 billion parameters!
Read moreDetermining sentiment in the text using neural network models has become almost a school task for beginner data scientists. However, despite the high quality of models and the ease of working with them, it is not so easy to characterize real data from reviews of restaurants, hotels, or museums. Even Google’s algorithms can’t do it properly. What are
Read moreThis is the second step of the NLP end-to-end pipeline. In this step, We generally perform basic preprocessing and then advanced preprocessing but it depends on problem to problem. Let’s see the steps of text preprocessing. Lowercasing:- This is the first step of data preprocessing. It’s compulsory for all kinds of problems because whenever we work on an
Read moreHave you ever wished for a magic box that could create art? I am usually a bad artist😔, but often times with creative ideas. I wished to have a magic box that could produce amazing artwork by thinking about it.
Read moreAs always, October was an eventful month for the Python community this year. It brought the final Python 3.11 release, a few beta versions of the next major releases of popular Python libraries, and some exciting developments in the Python community. Here’s a quick recap of the most interesting happenings from October 2022. The Python 3.11 Release By far, this month’s most exciting event was the release of Python 3.11, overshadowing a few other interesting news items. October was chosen […]
Read moreOver the past few months, I had done quite a number of courses in Machine Learning (the popular ones) — Machine Learning by Andrew Ng, and the first three courses of the Deep Learning Specialisation. Just as I was thinking whether to move on to Convolutional Neural Networks or not, I thought it would be best to give myself a chance to implement what I’ve learnt so far. It would help me to strengthen my fundamentals, and that would definitely […]
Read morefirst of all, import the BeautifulSoup library from BS4 and request the library. from bs4 import BeautifulSoupimport requests The next
Read morePhoto by Roman
Read moreWord Sense Disambiguation is the task of understanding the meaning of the focus/target word’s meaning in the context of the sentence. Paper: https://arxiv.org/pdf/1908.07245.pdf
Read more