Zero-Shot Learning in Modern NLP

By Joe Davison Blog - 2020-05-29

Description

State-of-the-art NLP models for text classification without annotated data

Summary

  • Natural language processing is a very exciting field right now.
  • However, models of this size remain impractical for real-world use.
  • If we were to use word vectors as our label representations, however, we would need annotated data to learn an alignment between the S-BERT sequence representations and the word2vec label representations.
  • In the most recent version of their paper, the authors also discuss an iterative self-training procedure on top of PET which reports an impressive accuracy of $70.7\%$ on Yahoo Answers, which nearly approaches the performance of state-of-the-art supervised classification methods.

 

Topics

  1. NLP (0.29)
  2. Backend (0.27)
  3. Machine_Learning (0.21)

Similar Articles

30 Most Asked Machine Learning Questions Answered

By Medium - 2021-03-18

Machine Learning is the path to a better and advanced future. A Machine Learning Developer is the most demanding job in 2021 and it is going to increase by 20–30% in the upcoming 3–5 years. Machine…

How to put machine learning models into production

By Stack Overflow Blog - 2020-10-12

The goal of building a machine learning model is to solve a problem, and a machine learning model can only do so when it is in production and actively in use by consumers. As such, model deployment is ...