Sentence Pair Classification Task
A task that measures natural language inference and semantic similarity between two given sentences.

Similar to single-sentence classification, a classifier on the CLS token handles the classification. The difference is that both sentences are fed into the model together, separated by a SEP token.
NLI
Natural language inference.
- A task that verifies whether a language model understands natural language context
- Classifies Premise and Hypothesis as follows:
- Entailment: hypothesis is true
- Contradiction: hypothesis is false
- Neutral: hypothesis is presumably true, or hard to judge definitively
Semantic text pair
A task that checks whether two sentences have the same meaning.
IRAQ
Information Retrieval Question and Answering. A task that finds the most appropriate answer from a predefined QA set for a given question. 
The basic structure is the same as a typical chatbot. It compares the user’s query with predefined queries by similarity and returns the answer for the most similar query.
The difference is that Paraphrase Detection is attached at the end of the model. The preceding task produces the top n answers with high similarity, and this model finds the most appropriate answer among them. It becomes a model that infers semantic similarity.