Document Vector

Hello,

we have a workflow:

Strings to Document --> BoW --> Filters --> Keyword extractor --> Document vector

We give 100 rows into the workflow - create 100 documents and get after document vector node more that 100 records back, some duplicates are created.

I expected that we get back 100 document vectors, but probably we forgot one step in the workflow?

We want to use the vector for the SVM Learner/Predictor.

Thanks

 

Hi Dnreb,

 

the DocumentVector node requires a column containing DocumentCells. For each row of the input table a row in the output table is created. The KeywordExtractor Node extracts a certain number of keywords for each documents. Using the output table of the KeywordExtractor, thus leads to more than one row (vector) per document. You can use the GroupBy node after the KeywordExtractor node and group over the Documents, which creates an output table containing one row per document. This table can be used as input table for the DocumentVector node.

 

Cheers, Kilian

Hello Kilian,

 

thanks for your input. I will use the GroupBy.

 

Bernd

Hi,

 

in my last post in this thread i wrote that the DocumentVector node creates a Row (document vector) for each document in the input table. This is not true, i apologize for this misinformation. The way you used the DocumentVector node is the right way. You can apply the node on a bag of words input table. This is the way the node is ment to be used. The node should create for each unique document in this bag of words input table exactly one row (document vector).

 

Obviously this is not the case in your workflow. Can you give me some more information about  the nodes you are using? What is the exact preprocessing chain and how do you extract the keywords? Are you using the Frequency Filter node to extract keywords? A screenshot of your workflow, or the workflow itself without data would be really helpful. I think there might be a problem but not in the DocumentVector node itself but maybe in the keyword extraction process/node. In the DocumentVector node simply the equals method of a document is used to compare them.

 

Sorry for the inconveniece!

Cheers, Kilian


Hello Kilian,

I attached the workflow (and removed some parts where we add training data etc) and two screenshots.

We start the loop with 100 records.

and ended up after DocumentVector with 159 records.

I just added grouping and it seems to work, but still would be interested what went wrong.

Thanks for your great support

Bernd

Thank you! I will look into that.

In my case DocumentVector gives output less than input number of documents. Is there any progress?

image

At the beginning there are 250 records.
image

When document vector is applied, there are 150 of them.
image

@asenkron What may be happening here is that, due to the BoW, I would expect any empty document (after preprocessing) to be removed. The solution should be to join the filtered ones back in using Document Vector Applier first and then Joiner.

1 Like

Thanks for help. I fixed as you mentioned.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.