Hi,
I am trying to build prediction model to predict the category of any case by looking the description of it. I have two training data set, the first data set contains case id and description and category.
ID   Description    Category
1    "some txt"         A
2    "some text 2"    B
 
and second data set contains following rows. which is basically tells me that which case should not fall for particular category.
 
ID   Description             Category
1    "some other txt"         notA
2    "some other text 2"    notB
 
I want to tain my model using both the dataset. I am having problem to feed the second data set to my model. I want to feed the second data set in such as way that it give correct information to my model. Any help would be great. Thanks!