1

I'm blanking on the basic ML vocabulary term for the best performing model in the literature.

"Industry best" works, but there's a specific term that's used everywhere that I can't find at the moment or recall.

The winner of imagenet would be called this.

BERT would be called this when it first came out.

Tim
  • 138,066
SwimBikeRun
  • 163
  • 1
  • 1
  • 6

1 Answers1

2

As noticed by @Dave, it's called state of the art, often abbreviated as SOTA.

However always when you hear this phrase keep in mind that people often use it rather loosely. For example, you can find claims in machine learning literature of models being "SOTA" where proper benchmarks (running your model and another model using exactly the same procedure, data preprocessing, etc) were never done. One example is LSTM models commonly considered as "outperformed" by more modern "SOTA" models, where there are empirical results showing that LSTMs can be no worse than the more complicated models.

Tim
  • 138,066