Slashdot Mirror


Computers Summarize the News

oily_ants writes "I get sick and tired of reading the same story on different web sites. That's why I like slashdot so much. Good (??) summaries of all of the stuff out there on the net. Now there is a project at Columbia University by the nlp group that attempts to generate computer summaries of all of those news articles on different web sites. The project is called Newsblaster and the summaries are excellent. You can read about the project on regular news sites like Online Journalism Review or USA Today."

3 of 175 comments (clear)

  1. Also try... by SlashChick · · Score: 5, Informative

    news.google.com. Just released yesterday. I haven't yet played around with it enough to say whether it's cool or not, but it does look promising.

  2. Impressive by Reality+Master+101 · · Score: 5, Informative

    To tell you the truth, at first I thought the summaries were TOO good; I was suspicious that it wasn't really automated.

    But after looking at a few more stories, it looks like it just pulls sentences out of the stories that seem to have a different point to make, and strings them together.

    Sometimes you see some redundancy and some non-sequiturs, but I have to admit the illusion is pretty good.

    --
    Sometimes it's best to just let stupid people be stupid.
  3. Re:Read the papers by DavidKirkEvans · · Score: 5, Informative

    We have a summarization strategy that selects from three summarizers: one that works over documents describing a "single event" which is novel, one that works over documents describing a person (so-called biography events) using sentence extraction, and one that is a general sentence extractor based on the biographical summarizer which does use more than just TFIDF weighting for the extraction. (It has a notion of semantic classes, and some other stuff.)

    The "single event" summarizer is novel though. It uses a clustering component to cluster the sentences, then for each cluster it takes the intersection of the sentences (yes, we need to parse the text to do this, and we do) and RE-GENERATES (does not extract) a sentence that synthesizes the information from the cluster.

    There's a lot of other stuff going on as well, we're using a text categorization system that we developed here, a text clustering system, our own system for categorizing the images that come with the articles (you'll be able to browse by image categories soon as well) and some other stuff.