Skip to content

purvapruthi/Srishti2015

Repository files navigation

Srishti2015

Design and implementation of a full-text search engine for the given news dataset with news headlines and newsURL. It allows people to search from a large set of news articles and get results ranked according to relevance to search query. A very basic implementation of news search engine is done by making use of concepts involved in collective intelligence algorithms.

The system is designed to perform the following operations.

  • News articles crawling from URL.
  • Data Indexing
  • Searching relevant results
  • Ranking

Content Crawling from URL : The general method to crawl documents is to start with a small set of documents and follow links to others. But in the given scenario, we have provided with full­featured news dataset to start with, so no need of crawling other linked articles in breadth first manner. So here in this context crawling means extracting the news content of given news entry using URL given. As some URLs are missing domain names, they are also completed by making use of source field in the given dataset. The crawler uses the Beautiful Soup API for extracting news articles contents.

Word Indexing : After the collection of news articles from URL,they need to be indexed. This usually involves creating a big table of the articles and the locations of all different words.

Searching : Retrieving every news article with a given set of words is fairly straightforward once we have term frequency vectors for each news article indexed in database, but the real magic is how the results are sorted. This involves proper ranking of the results on the basis of how relevant they are.

Ranking : Results are ranked using normalized score of different metrics such as word frequency,word position in the news article.

Here, we have not used PageRank for ranking as news articles are not linked with each other or other web-pages. If we can manage to extract the links while crawling content from URLs, then pagerank can also be applied.

data.csv contains sample news headlines data in tabular format with attributes Id,Headline,Duration,Source Id,Source URL. final_database.csv contains final larger news dataset to test the scalability of the system.

searchengine.py contains both crawler and searcher python classes for implementing (crawling,indexing) and (searching,ranking) tasks respectively. The functionality of these class objects can be tested through web-based interactive computational environment Ipython Notebook using files Searcher.ipynb and Crawler.ipynb files.

searchenginev_2.py skips crawling content step and indexes text only from news headlines and thus give search results based on headlines only not content. Thus these two implementation can be used to compare the accuracy of search results of a query with respect to headlines and actual news content.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages