Construct sentences from tabular data
Posted
by
Sumeet
on Programmers
See other posts from Programmers
or by Sumeet
Published on 2012-10-19T08:35:39Z
Indexed on
2012/10/19
11:23 UTC
Read the original article
Hit count: 223
machine-learning
|nlp
I have a huge set of html files an have to retrieve the meaningful information from them. Most of the task is accomplished, now the problem is with HTML tables.
I have some literature on how to extract meaningful tables from html, but my problem is with creating meaningful sentences from tabular data (or attribute value pairs extracted from a table).
Are there any NLP/Machine learning techniques to do this?
Here is what I expect. Suppose below is a sample table:
col_Name: Sumeet
col_year: 2011
col_winner: quiz
Can this be made to something meaningful like "Sumeet won quiz in 2011"?
© Programmers or respective owner