Custom Text Classification Flashcards

1
Q

Which are the two types of labelling solution

A

SingleLable
Multi-Lable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is meant by classification

A

To assign a class to an object, text or image or element within an image. The classification itself is akin to how we think of a movie genre to classify a move as thriller, adventure, fantasy…
In Machine Learning parlance, it is to assign lables to text or other information. This is done to prepare a training set to train a model which is then consumed to identify the classification of similar object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Three metrics used to evaluate a trained model performance

A

Recall - % of predited lable out of the total test data

Precision - accuracy of the result

F1 Score is the normalised overall score taking into account both recall and precision.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Two modes of splitting data

A

Manual
Automatic split

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

AI Language model lifecycle

A

Define labels
Tag data
train model
view model performance
improve model
deploy model
classify text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the API pattern for text classification

A

Asynchronous. we submit initial result, followed by another call to get result status by using the URL and object id provided in response to the initial call

How well did you know this?
1
Not at all
2
3
4
5
Perfectly