alexcuesta / mapreduce-words-per-author

Map-Reduce experiment written in Python about counting frequency of words in book titles per author

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Map-Reduce: Words per Author

Introduction

Map-Reduce experiment to count words in book title per author stored in multiple files.

Written in python using the map-reduce lightweight implementation mincemeat.py

This is an exercise proposed in the Web Intelligence and Big Data course in Coursera.org

This is the first time I write something in Python so ignore the quality of my code. The important thing is the actual logic behind map-reduce.

Problem description

There are some files containing entries that look like:

journals/cl/SantoNR90:::Michele Di Santo::Libero Nigro::Wilma Russo:::Programmer-Defined Control Abstractions in Modula-2.

that represent bibliographic information about publications, formatted as follows:

paper-id:::author1::author2::…. ::authorN:::title

The task is to compute how many times every term occurs across titles, for each author.

For example, the author Alberto Pettorossi the following terms occur in titles with the indicated cumulative frequencies (across all his papers): program:3, transformation:2, transforming:2, using:2, programs:2, and logic:2.

Remember that an author might have written multiple papers, which might be listed in multiple files. Further notice that ‘terms’ must exclude common stop-words, such as prepositions etc. For the purpose of this assignment, the stop-words that need to be omitted are listed in the script stopwords.py. In addition, single letter words, such as "a" can be ignored; also hyphens can be ignored (i.e. deleted). Lastly, periods, commas, etc. need to be ignored; in other words, only alphabets and numbers can be part of a title term: Thus, “program” and “program.” should both be counted as the term ‘program’, and "map-reduce" should be taken as 'map reduce'. Note: You do not need to do stemming, i.e. "algorithm" and "algorithms" can be treated as separate terms.

The assignment is to write a parallel map-reduce program for the above task using either octo.py, or mincemeat.py, each of which is a lightweight map-reduce implementation written in Python.

Map-Reduce comments

The main functions in the program are:

  • mapfn: This one reads all documents, combines information about authors in a given file. So the output is authors with partial count of words per file.
  • reducefn: This one gets the output from the previous function. Gets all partial counts for all documents for a given author and computes them.

About

Map-Reduce experiment written in Python about counting frequency of words in book titles per author