Hello all,
I have a text classification where labels have inherent tree relationships. I can do simple text classification where given "text", predict "label", but since labels are actually end nodes of a tree with various level of nodes, such as:
Parent 1 > Parent 2 > Terminal Node (label 1)
or
Parent 3 > Parent 4 > Parent 5 >Terminal Node (label 2)
I'd like to see if I can turn this into given "text", predict node to utilize the inherent tree structure behind the labels. Given that there are hundreds of labels, the search space in general is not that small.
Is this a plausible approach worth exploring in general?
Update:
I also just realized Node Classification is the wrong terminology. I'm classifying text into nodes