joshyang92

Results 4 comments of joshyang92

it's probably due to your input data dimensions (I would presume your label dimension). I have it working with the multi_target_strategy parameter, though my accuracy is not really good but...

@utility-aagrawal You should one-hot encode the labels so that they are [0 or 1, 0 or 1, 0 or 1] where [negative, neutral, positive] Eg. If a sentence is neutral...

> I am getting the following error after encoding my target variables as [1, 0, 0] for negative , [0, 1, 0] for neutral, [0, 0, 1] for positive. I...

@MattiL I am not sure if you understood my question correctly. I am talking about multilabel problem where the input data can have multiple labels at the same time out...