I am not a data scientist and very new to data science/ machine learning.
My goal is to predict if certain text is of a specific class or not.
I have looked naive bays to classify the text in different classes, but here I have only one class. Eventually, I want to predict if the text is of a certain class or not (e.g. if the text is of type technical
or not as opposed to text is technical
or political
). I have only the positive dataset (all texts of type technical
) for training.
As far as I know, Naive bays will require both positive as well as the negative dataset for the training. Not sure if this is the best algo to use here for the problem. Would like to learn the better approach if there is any. Thanks.