"Hierarchical Text Classification"
Hi,
I am planning to do a hierarchical classification using a top-down approach. My idea of the top-down approach is to first classify the exampleset using the top classes, then filter the examples of each top class and apply another classification using the top class' subclasses.
Here is an example procedure:
1. generate exampleset
2. classify into class X, Y or Z
3. filter examples of predicted X class
4. classify X examples into subclass X1, X2 or X3
... iterate the other top classes
9. merge the filtered examples into one exampleset.
10. end
I was about to start building the process when I realize that using the modelapplier requires also to apply the training word list to the exampleset. That means I need to have as many training word list as the models. How do I load the other training word lists? I know that the first training word list can loaded in the TextInput operator. But how about the other word lists?
Or is there a better way of doing this in RM?
thanks in advance.
Matthew
I am planning to do a hierarchical classification using a top-down approach. My idea of the top-down approach is to first classify the exampleset using the top classes, then filter the examples of each top class and apply another classification using the top class' subclasses.
Here is an example procedure:
1. generate exampleset
2. classify into class X, Y or Z
3. filter examples of predicted X class
4. classify X examples into subclass X1, X2 or X3
... iterate the other top classes
9. merge the filtered examples into one exampleset.
10. end
I was about to start building the process when I realize that using the modelapplier requires also to apply the training word list to the exampleset. That means I need to have as many training word list as the models. How do I load the other training word lists? I know that the first training word list can loaded in the TextInput operator. But how about the other word lists?
Or is there a better way of doing this in RM?
thanks in advance.
Matthew
Find more posts tagged with
Sort by:
1 - 5 of
51
I've a similar question. I have a review dataset, each review with labels 1, 2, 4 and 5. I want to first label test data 1, 2, 4 and 5 and then filter training data set of 1 and 2 -> classify 1 and 2 of test dataset again as 1 and 2 with new model. Similarly for 4 and 5. I'm not sure if I can use hierarchical classification operator in that case.
why don't you use always the same wordlist built over the complete corpus?
Greetings,
Sebastian