Commit 958870a3 by Sanjay Krishnan
parents 2f2c443c 293bd130
...@@ -21,9 +21,9 @@ Git is installed on all of the CSIL computers, and to install git on your machin ...@@ -21,9 +21,9 @@ Git is installed on all of the CSIL computers, and to install git on your machin
Every student in the class has a git repository (a place where you can store completed assignments). This git repository can be accessed from: Every student in the class has a git repository (a place where you can store completed assignments). This git repository can be accessed from:
[https://mit.cs.uchicago.edu/cmsc13600-spr-21/<your cnetid>.git] [https://mit.cs.uchicago.edu/cmsc13600-spr-21/<your cnetid>.git]
The first thing to do is to open your terminal application, and ``clone`` this repository (NOTE skr is ME, replace it with your CNET id!!!): The first thing to do is to open your terminal application, and ``clone`` this repository (NOTE replace < > with your CNET id!!!):
``` ```
$ git clone https://mit.cs.uchicago.edu/cmsc13600-spr-21/skr.git cmsc13600-submit $ git clone https://mit.cs.uchicago.edu/cmsc13600-spr-21/<your cnet id>.git cmsc13600-submit
``` ```
Your username and id is your CNET id and CNET password. This will create a new folder that is empty titled cmsc13600-submit. There is similarly a course repository where all of the homework materials will stored. Youshould clone this repository as well: Your username and id is your CNET id and CNET password. This will create a new folder that is empty titled cmsc13600-submit. There is similarly a course repository where all of the homework materials will stored. Youshould clone this repository as well:
``` ```
......
# Homework 1. Introduction to Data Extraction # Homework 1. Introduction to Data Extraction
In this assignment, you will extract meaningful information from unstructured data. In this assignment, you will extract meaningful information from unstructured data.
Due Date: *Friday April 9, 2020 11:59 pm* Due Date: *Friday April 9, 2021 11:59 pm*
## Initial Setup ## Initial Setup
These initial setup instructions assume you've done ``hw0``. Before you start an assingment you should sync your cloned repository with the online one: These initial setup instructions assume you've done ``hw0``. Before you start an assingment you should sync your cloned repository with the online one:
...@@ -85,7 +85,8 @@ It is up to you to read the documentation on the python xml module if you are co ...@@ -85,7 +85,8 @@ It is up to you to read the documentation on the python xml module if you are co
``` ```
def _reddit_extract(file) def _reddit_extract(file)
``` ```
That returns a Pandas DataFrame with three columns (*title*, *link*, *updated*). On `reddit.xml` your output should be a 25 row, 3 column pandas data frame. That returns a Pandas DataFrame with three columns (*title*, *link*, *updated*). On `reddit.xml` your output should be a 25 row, 3 column pandas data frame.
Hint: if you are getting 26 rows, you are probably extracting the first dummy header row as well--this can be safely skipped.
### TODO 2. Extract Ticker Symbols ### TODO 2. Extract Ticker Symbols
Each title of a reddit post might mention a stock of interest and most use a consistent format to denote a ticker symbol (starting with a dollar sign). For example: "$ISWH Takes Center Stage at Crypto Conference". You will now write a function called extract ticker which given a single title extracts all of the ticker symbols present in the title: Each title of a reddit post might mention a stock of interest and most use a consistent format to denote a ticker symbol (starting with a dollar sign). For example: "$ISWH Takes Center Stage at Crypto Conference". You will now write a function called extract ticker which given a single title extracts all of the ticker symbols present in the title:
......
# Homework 1. Introduction to Python and File I/O # HW2 String Matching
This homework assignment is meant to be an introduction to Python programming and introduces some basic concepts of encoding and decoding.
Due Date: *Friday April 17, 2020 11:59 pm* *Friday April 23, 2020 11:59 PM*
## Initial Setup Entity Resolution is the task of disambiguating manifestations of real world entities in various records or mentions by linking and grouping. For example, there could be different ways of addressing the same person in text, different addresses for businesses, or photos of a particular object. In this assignment, you will link two product catalogs.
These initial setup instructions assume you've done ``hw0``. Before you start an assingment you should sync your cloned repository with the online one:
## Getting Started
First, pull the most recent changes from the cmsc13600-public repository:
``` ```
$ cd cmsc13600-materials
$ git pull $ git pull
``` ```
Then, copy the `hw2` folder to your submission repository. Change directories to enter your submission repository. Your code will go into `analzey.py`. You can the files to the repository using `git add`:
Copy the folder ``hw1`` to your newly cloned submission repository. Enter that repository from the command line and enter the copied ``hw1`` folder. In this homework assignment, you will only modify ``encoding.py``. Once you are done, you must add 'encoding.py' to git:
``` ```
$ git add encoding.py $ git add analyze.py
$ git commit -m'initialized homework'
``` ```
After adding your files, to submit your code you must run: You will also need to fetch the datasets used in this homework assignment:
``` ```
$ git commit -m"My submission" https://www.dropbox.com/s/vq5dyl5hwfhbw98/Amazon.csv?dl=0
$ git push https://www.dropbox.com/s/fbys7cqnbl3ch1s/Amzon_GoogleProducts_perfectMapping.csv?dl=0
https://www.dropbox.com/s/o6rqmscmv38rn1v/GoogleProducts.csv?dl=0
``` ```
We will NOT grade any code that is not added, committed, and pushed to your submission repository. You can confirm your submission by visiting the web interface[https://mit.cs.uchicago.edu/cmsc13600-spr-20/skr] Download each of the files and put it into your `hw2` folder.
## Delta Encoding
Delta encoding is a way of storing or transmitting data in the form of differences (deltas) between sequential data rather than complete files.
In this first assignment, you will implement a delta encoding module in python.
The module will:
* Load a file of integers
* Delta encode them
* Write back a file in binary form
The instructions in this assignment are purposefully incomplete for you to read Python's API and to understand how the different functions work. All of the necessary parts that you need to write are marked with *TODO*. Before we can get started, let us understand the main APIs in this project. We have provided a file named `core.py` for you. This file loads and processes the data that you've just downloaded. For example, you can load the Amazon catalog with the `amazon_catalog()` function. This returns an iterator over data tuples in the Amazon catalog. The fields are id, title, description, mfg (manufacturer), and price if any:
```
## TODO 1. Loading the data file >>>for a in amazon_catalog():
In `encoding.py`, your first task is to write `load_orig_file`. This function reads from a specified filename and returns a list of integers in the file. You may assume the file is formatted like ``data.txt`` provided with the code, where each line contains a single integer number. The input of this function is a filename and the output is a list of numbers. If the file does not exist you must raise an exception. ... print(a)
... break
## TODO 2. Compute the basic encoding {'id': 'b000jz4hqo', 'title': 'clickart 950 000 - premier image pack (dvd-rom)', 'description': '', 'mfg': 'broderbund', 'price': '0'}
In `encoding.py`, your next task is to write `delta_encoding`. This function takes a list of numbers and computes the delta encoding. The delta encoding encodes the list in terms of successive differences from the previous element. The first element is kept as is in the encoding. ```
You can similarly, do the same for the Google catalog:
```
>>>for a in google_catalog():
... print(a)
... break
For example: {'id': 'http://www.google.com/base/feeds/snippets/11125907881740407428', 'title': 'learning quickbooks 2007', 'description': 'learning quickbooks 2007', 'mfg': 'intuit', 'price': '38.99'}
``` ```
> data = [1,3,4,3] A matching is a pairing between id's in the Google catalog and the Amazon catalog that refer to the same product. The ground truth is listed in the file `Amzon_GoogleProducts_perfectMapping.csv`. Your job is to construct a list of pairs (or iterator of pairs) of `(amazon.id, google.id)`. These matchings can be evaluated for accuracy using the `eval_matching` function:
> enc = delta_encoding(data)
1,2,1,-1
``` ```
>>> my_matching = [('b000jz4hqo', http://www.google.com/base/feeds/snippets/11125907881740407428'),...]
>>> {'false positive': 0.9768566493955095, 'false negative': 0.43351268255188313, 'accuracy': 0.04446992095577143}
```
False positive refers to the false positive rate, false negative refers to the false negative rate, and accuracy refers to the overall accuracy.
Or, ## Assignment
Your job is write the `match` function in `analzye.py`. You can run your code by running:
```
python3 auto_grader.py
``` ```
> data = [1,0,6,1] Running the code will print out a result report as follows (accuracy, precision, and recall):
> enc = delta_encoding(data)
1,-1,6,-5
``` ```
Your job is to write a function that computes this encoding. Pay close attention to how python passes around references and where you make copies of lists v.s. modify a list in place. ----Accuracy----
0.5088062622309197 0.6998654104979811 0.3996925441967717
---- Timing ----
168.670348 seconds
## TODO 3. Integer Shifting ```
When we write this data to a file, we will want to represent each encoded value as an unsigned short integer (1 single byte of data). To do so, we have to "shift" all of the values upwards so there are no negatives. You will write a function `shift` that adds a pre-specified offset to each value. *For full credit, you must write a program that achieves at least 50% accuracy in less than 5 mins on a standard laptop.*
## TODO 4. Write Encoding The project is complete unstructured and it is up to you to figure out how to make this happen. Here are some hints:
Now, we are ready to write the encoded data to disk. In the function `write_encoding`, you will do the following steps:
* Open the specified filename in the function arguments for writing
* Convert the encoded list of numbers into a bytearray
* Write the bytearray to the file
* Close the file
Reading from such a file is a little tricky, so we've provided that function for you. * The amazon product database is redundant (multiple same products), the google database is essentially unique.
## TODO 5. Delta Decoding * Jaccard similarity will be useful but you may have to consider "n-grams" of words (look at the lecture notes!) and "cleaning" up the strings to strip formatting and punctuation.
Finally, you will write a function that takes a delta encoded list and recovers the original data. This should do the opposite of what you did before. Don't forget to unshift the data when you are testing!
For example: * Price and manufacturer will also be important attributes to use.
```
> enc = [1,2,1,-1]
> data = delta_decoding(enc)
1,3,4,3
```
Or, ## Submission
After you finish the assignment you can submit your code with:
``` ```
> data = [1,-1,6,-5] $ git push
> data = delta_decoding(enc)
1,0,6,1
``` ```
## Testing
We've provided a sample dataset ``data.txt`` which can be used to test your code as well as an autograder script `autograder.py` which runs a bunch of interesting tests. The autograder is not comprehensive but it is a good start. It's up to you to figure out what the test do and why they work.
import random import datetime
from encoding import * import csv
from analyze import match
def test_load():
data = load_orig_file('data.txt') def eval_matching(your_matching):
f = open('Amzon_GoogleProducts_perfectMapping.csv', 'r', encoding = "ISO-8859-1")
try: reader = csv.reader(f, delimiter=',', quotechar='"')
assert(sum(data) == 1778744) matches = set()
except AssertionError: proposed_matches = set()
print('TODO 1. Failure check your load_orig_file function')
tp = set()
def test_encoding(): fp = set()
data = load_orig_file('data.txt') fn = set()
encoded = delta_encoding(data) tn = set()
try: for row in reader:
assert(sum(encoded) == data[-1]) matches.add((row[0],row[1]))
assert(sum(encoded) == 26) #print((row[0],row[1]))
assert(len(data) == len(encoded))
except AssertionError: for m in your_matching:
print('TODO 2. Failure check your delta_encoding function') proposed_matches.add(m)
def test_shift(): if m in matches:
data = load_orig_file('data.txt') tp.add(m)
encoded = delta_encoding(data) else:
N = len(data) fp.add(m)
try: for m in matches:
assert(sum(shift(data, 10)) == N*10 + sum(data)) if m not in proposed_matches:
assert(all([d >=0 for d in shift(encoded,4)])) fn.add(m)
except AssertionError:
print('TODO 3. Failure check your shift function') if len(your_matching) == 0:
prec = 1.0
def test_decoding(): else:
data = load_orig_file('data.txt') prec = len(tp)/(len(tp) + len(fp))
encoded = delta_encoding(data)
sencoded = shift(encoded ,4) rec = len(tp)/(len(tp) + len(fn))
data_p = delta_decoding(unshift(sencoded,4))
return {'precision': prec,
try: 'recall': rec,
assert(data == data_p) 'accuracy': 2*(prec*rec)/(prec+rec) }
except AssertionError:
print('TODO 5. Cannot recover data with delta_decoding') #prints out the accuracy
now = datetime.datetime.now()
def generate_file(size, seed): out = eval_matching(match())
FILE_NAME = 'data.gen.txt' timing = (datetime.datetime.now()-now).total_seconds()
print("----Accuracy----")
f = open(FILE_NAME,'w') print(out['accuracy'], out['precision'] ,out['recall'])
print("---- Timing ----")
initial = seed print(timing,"seconds")
for i in range(size):
f.write(str(initial) + '\n')
initial += random.randint(-4, 4)
def generate_random_tests():
SIZES = (1,1000,16,99)
SEEDS = (240,-3, 9, 1)
cnt = 0
for trials in range(10):
generate_file(random.choice(SIZES), random.choice(SEEDS))
data = load_orig_file('data.gen.txt')
encoded = delta_encoding(data)
sencoded = shift(encoded ,4)
write_encoding(sencoded, 'data_out.txt')
loaded = unshift(read_encoding('data_out.txt'),4)
decoded = delta_decoding(loaded)
cnt += (decoded == data)
try:
assert(cnt == 10)
except AssertionError:
print('Failed Random Tests', str(10-cnt), 'out of 10')
test_load()
test_encoding()
test_shift()
test_decoding()
generate_random_tests()
\ No newline at end of file
# Homework 2. Bloom Filter # Homework 3. Introduction to Python and File I/O
This homework assignment introduces an advanced use of hashing called a Bloom filter. This homework assignment is meant to be an introduction to Python programming and introduces some basic concepts of encoding and decoding.
Due Date: *Friday May 1st, 2020 11:59 pm* Due Date: *Friday April 30, 2020 11:59 pm*
## Initial Setup ## Initial Setup
These initial setup instructions assume you've done ``hw0``. Before you start an assingment you should sync your cloned repository with the online one: Before you start an assingment you should sync your cloned repository with the online one:
``` ```
$ cd cmsc13600-materials $ cd cmsc13600-materials
$ git pull $ git pull
``` ```
Copy the folder ``hw2`` to your newly cloned submission repository. Enter that repository from the command line and enter the copied ``hw2`` folder. In this homework assignment, you will only modify ``bloom.py``. Once you are done, you must add 'bloom.py' to git: Copy the folder ``hw3`` to your newly cloned submission repository. Enter that repository from the command line and enter the copied ``hw3`` folder. In this homework assignment, you will only modify ``encoding.py``. Once you are done, you must add 'encoding.py' to git:
``` ```
$ git add bloom.py $ git add encoding.py
``` ```
After adding your files, to submit your code you must run: After adding your files, to submit your code you must run:
``` ```
...@@ -21,44 +21,65 @@ $ git push ...@@ -21,44 +21,65 @@ $ git push
``` ```
We will NOT grade any code that is not added, committed, and pushed to your submission repository. You can confirm your submission by visiting the web interface[https://mit.cs.uchicago.edu/cmsc13600-spr-20/skr] We will NOT grade any code that is not added, committed, and pushed to your submission repository. You can confirm your submission by visiting the web interface[https://mit.cs.uchicago.edu/cmsc13600-spr-20/skr]
## Bloom filter ## Delta Encoding
A Bloom filter is a space-efficient probabilistic data structure, conceived by Burton Howard Bloom in 1970, that is used to test whether an element is a member of a set. False positive matches are possible, but false negatives are not – in other words, a query returns either "possibly in set" or "definitely not in set." Elements can be added to the set, but not removed (though this can be addressed with the counting Bloom filter variant); the more items added, the larger the probability of false positives. All of the necessary parts that you need to write are marked with *TODO*. Delta encoding is a way of storing or transmitting data in the form of differences (deltas) between sequential data rather than complete files.
In this first assignment, you will implement a delta encoding module in python.
The module will:
* Load a file of integers
* Delta encode them
* Write back a file in binary form
Here's how the basic Bloom filter works: The instructions in this assignment are purposefully incomplete for you to read Python's API and to understand how the different functions work. All of the necessary parts that you need to write are marked with *TODO*.
### Initialization ## TODO 1. Loading the data file
* An empty Bloom filter is initialized with an array of *m* elements each with value 0. In `encoding.py`, your first task is to write `load_orig_file`. This function reads from a specified filename and returns a list of integers in the file. You may assume the file is formatted like ``data.txt`` provided with the code, where each line contains a single integer number. The input of this function is a filename and the output is a list of numbers. If the file does not exist you must raise an exception.
* Generate *k* independent hash functions whose output domain are integers {0,...,m}.
### Adding An Item e ## TODO 2. Compute the basic encoding
* For each hash function calculate the hash value of the item "e" (should be a number from 0 to m). In `encoding.py`, your next task is to write `delta_encoding`. This function takes a list of numbers and computes the delta encoding. The delta encoding encodes the list in terms of successive differences from the previous element. The first element is kept as is in the encoding.
* Treat those calculated hash values as indices for the array and set each corresponding index in the array to 1 (if it is already 1 from a previous addition keep it as is).
### Contains An Item e For example:
* For each hash function calculate the hash value of the item "e" (should be a number from 0 to m). ```
* Treat those calculated hash values as indices for the array and retrieve the array value for each corresponding index. If any of the values is 0, we know that "e" could not have possibly been inserted in the past. > data = [1,3,4,3]
> enc = delta_encoding(data)
1,2,1,-1
```
## TODO 1. Generate K independent Hash Functions Or,
Your first task is to write the function `generate_hashes`. This function is a higher-order function that returns a list of *k* random hash functions each with a range from 0 to *m*. Here are some hints that will help you write this function. ```
> data = [1,0,6,1]
> enc = delta_encoding(data)
1,-1,6,-5
```
Your job is to write a function that computes this encoding. Pay close attention to how python passes around references and where you make copies of lists v.s. modify a list in place.
* Step 1. Review the "linear" hash function described in lecture and write a helper function that generates such a hash function for a pre-defined A and B. How would you restrict the domain of this hash function to be with 0 to m? ## TODO 3. Integer Shifting
When we write this data to a file, we will want to represent each encoded value as an unsigned short integer (1 single byte of data). To do so, we have to "shift" all of the values upwards so there are no negatives. You will write a function `shift` that adds a pre-specified offset to each value.
* Step 2. Generate k of such functions with different random settings of A and B. Pay close attention to how many times you call "random.x" because of how the seeded random variable works. ## TODO 4. Write Encoding
Now, we are ready to write the encoded data to disk. In the function `write_encoding`, you will do the following steps:
* Open the specified filename in the function arguments for writing
* Convert the encoded list of numbers into a bytearray
* Write the bytearray to the file
* Close the file
* Step 3. Return the functions themselves so they can be applied to data. Look at the autograder to understand what inputs these functions should take. Reading from such a file is a little tricky, so we've provided that function for you.
## TODO 2. Put ## TODO 5. Delta Decoding
Write a function that uses the algorithm listed above to add a string to the bloom filter. In pseudo-code: Finally, you will write a function that takes a delta encoded list and recovers the original data. This should do the opposite of what you did before. Don't forget to unshift the data when you are testing!
* For each of the k hash functions:
* Compute the hash code of the string, and store the code in i
* Set the ith element of the array to 1
## TODO 3. Get For example:
Write a function that uses the algorithm listed above to test whether the bloom filter possibly contains the string. In pseudo-code: ```
* For each of the k hash functions: > enc = [1,2,1,-1]
* Compute the hash code of the string, and store the code in i > data = delta_decoding(enc)
* if the ith element is 0, return false 1,3,4,3
* if all code-indices are 1, return true ```
Or,
```
> data = [1,-1,6,-5]
> data = delta_decoding(enc)
1,0,6,1
```
## Testing ## Testing
We've provided an autograder script `autograder.py` which runs a bunch of interesting tests. The autograder is not comprehensive but it is a good start. It's up to you to figure out what the test do and why they work. We've provided a sample dataset ``data.txt`` which can be used to test your code as well as an autograder script `autograder.py` which runs a bunch of interesting tests. The autograder is not comprehensive but it is a good start. It's up to you to figure out what the test do and why they work.
import random import random
import string from encoding import *
from bloom import * def test_load():
data = load_orig_file('data.txt')
def generate_random_string(seed=True):
chars = string.ascii_uppercase + string.digits
size = 10
return ''.join(random.choice(chars) for x in range(size))
def test_hash_generation():
b = Bloom(5,10)
try:
assert(len(b.hashes) == 10)
except:
print('[#1] Failure the number of generated hashes is wrong')
try: try:
assert(sum(data) == 1778744)
except AssertionError:
print('TODO 1. Failure check your load_orig_file function')
for h in b.hashes: def test_encoding():
h(generate_random_string()) data = load_orig_file('data.txt')
encoded = delta_encoding(data)
except:
print('[#2] The hashes are not properly represented as a lambda')
s = generate_random_string()
try: try:
for h in b.hashes: assert(sum(encoded) == data[-1])
assert(h(s) == h(s)) assert(sum(encoded) == 26)
except: assert(len(data) == len(encoded))
print('[#3] Hashes are not deterministic') except AssertionError:
print('TODO 2. Failure check your delta_encoding function')
def test_shift():
data = load_orig_file('data.txt')
encoded = delta_encoding(data)
N = len(data)
try: try:
b = Bloom(100,10) assert(sum(shift(data, 10)) == N*10 + sum(data))
b1h = b.hashes[0](s) assert(all([d >=0 for d in shift(encoded,4)]))
b = Bloom(100,10) except AssertionError:
b2h = b.hashes[0](s) print('TODO 3. Failure check your shift function')
assert(b1h == b2h)
except:
print('[#4] Seeds are not properly set')
def test_decoding():
data = load_orig_file('data.txt')
encoded = delta_encoding(data)
sencoded = shift(encoded ,4)
data_p = delta_decoding(unshift(sencoded,4))
try: try:
b = Bloom(100,10) assert(data == data_p)
except AssertionError:
for h in b.hashes: print('TODO 5. Cannot recover data with delta_decoding')
for i in range(10):
assert( h(generate_random_string())< 100 )
except: def generate_file(size, seed):
print('[#5] Hash exceeds range') FILE_NAME = 'data.gen.txt'
f = open(FILE_NAME,'w')
try: initial = seed
b = Bloom(1000,2) for i in range(size):
s = generate_random_string() f.write(str(initial) + '\n')
bh1 = b.hashes[0](s) initial += random.randint(-4, 4)
bh2 = b.hashes[1](s)
assert(bh1 != bh2) def generate_random_tests():
SIZES = (1,1000,16,99)
SEEDS = (240,-3, 9, 1)
except: cnt = 0
print('[#6] Hashes generated are not independent') for trials in range(10):
generate_file(random.choice(SIZES), random.choice(SEEDS))
def test_put(): data = load_orig_file('data.gen.txt')
b = Bloom(100,10,seed=0) encoded = delta_encoding(data)
b.put('the') sencoded = shift(encoded ,4)
b.put('university') write_encoding(sencoded, 'data_out.txt')
b.put('of')
b.put('chicago')
try: loaded = unshift(read_encoding('data_out.txt'),4)
assert(sum(b.array) == 30) decoded = delta_decoding(loaded)
except:
print('[#7] Unexpected Put() Result') cnt += (decoded == data)
def test_put_get():
b = Bloom(100,5,seed=0)
b.put('the')
b.put('quick')
b.put('brown')
b.put('fox')
b.put('jumped')
b.put('over')
b.put('the')
b.put('lazy')
b.put('dog')
results = [b.contains('the'),\
b.contains('cow'), \
b.contains('jumped'), \
b.contains('over'),\
b.contains('the'), \
b.contains('moon')]
try: try:
assert(results == [True, False, True, True, True, False]) assert(cnt == 10)
except: except AssertionError:
print('[#8] Unexpected contains result') print('Failed Random Tests', str(10-cnt), 'out of 10')
test_hash_generation() test_load()
test_put() test_encoding()
test_put_get() test_shift()
test_decoding()
generate_random_tests()
\ No newline at end of file
# HW3 String Matching # Homework 4. Bloom Filter
This homework assignment introduces an advanced use of hashing called a Bloom filter.
*Due 5/14/20 11:59 PM* Due Date: *Friday May 7, 11:59 pm*
Entity Resolution is the task of disambiguating manifestations of real world entities in various records or mentions by linking and grouping. For example, there could be different ways of addressing the same person in text, different addresses for businesses, or photos of a particular object. In this assignment, you will link two product catalogs.
## Getting Started ## Initial Setup
First, pull the most recent changes from the cmsc13600-public repository: Before you start an assingment you should sync your cloned repository with the online one:
``` ```
$ cd cmsc13600-materials
$ git pull $ git pull
``` ```
Then, copy the `hw3` folder to your submission repository. Change directories to enter your submission repository. Your code will go into `analzey.py`. You can the files to the repository using `git add`:
Copy the folder ``hw4`` to your newly cloned submission repository. Enter that repository from the command line and enter the copied ``hw4`` folder. In this homework assignment, you will only modify ``bloom.py``. Once you are done, you must add 'bloom.py' to git:
``` ```
$ git add analyze.py $ git add bloom.py
$ git commit -m'initialized homework'
``` ```
You will also need to fetch the datasets used in this homework assignment: After adding your files, to submit your code you must run:
``` ```
https://www.dropbox.com/s/vq5dyl5hwfhbw98/Amazon.csv?dl=0 $ git commit -m"My submission"
https://www.dropbox.com/s/fbys7cqnbl3ch1s/Amzon_GoogleProducts_perfectMapping.csv?dl=0 $ git push
https://www.dropbox.com/s/o6rqmscmv38rn1v/GoogleProducts.csv?dl=0
``` ```
Download each of the files and put it into your `hw3` folder. We will NOT grade any code that is not added, committed, and pushed to your submission repository. You can confirm your submission by visiting the web interface[https://mit.cs.uchicago.edu/cmsc13600-spr-20/skr]
Before we can get started, let us understand the main APIs in this project. We have provided a file named `core.py` for you. This file loads and processes the data that you've just downloaded. For example, you can load the Amazon catalog with the `amazon_catalog()` function. This returns an iterator over data tuples in the Amazon catalog. The fields are id, title, description, mfg (manufacturer), and price if any: ## Bloom filter
``` A Bloom filter is a space-efficient probabilistic data structure, conceived by Burton Howard Bloom in 1970, that is used to test whether an element is a member of a set. False positive matches are possible, but false negatives are not – in other words, a query returns either "possibly in set" or "definitely not in set." Elements can be added to the set, but not removed (though this can be addressed with the counting Bloom filter variant); the more items added, the larger the probability of false positives. All of the necessary parts that you need to write are marked with *TODO*.
>>>for a in amazon_catalog():
... print(a)
... break
{'id': 'b000jz4hqo', 'title': 'clickart 950 000 - premier image pack (dvd-rom)', 'description': '', 'mfg': 'broderbund', 'price': '0'} Here's how the basic Bloom filter works:
```
You can similarly, do the same for the Google catalog:
```
>>>for a in google_catalog():
... print(a)
... break
{'id': 'http://www.google.com/base/feeds/snippets/11125907881740407428', 'title': 'learning quickbooks 2007', 'description': 'learning quickbooks 2007', 'mfg': 'intuit', 'price': '38.99'} ### Initialization
``` * An empty Bloom filter is initialized with an array of *m* elements each with value 0.
A matching is a pairing between id's in the Google catalog and the Amazon catalog that refer to the same product. The ground truth is listed in the file `Amzon_GoogleProducts_perfectMapping.csv`. Your job is to construct a list of pairs (or iterator of pairs) of `(amazon.id, google.id)`. These matchings can be evaluated for accuracy using the `eval_matching` function: * Generate *k* independent hash functions whose output domain are integers {0,...,m}.
```
>>> my_matching = [('b000jz4hqo', http://www.google.com/base/feeds/snippets/11125907881740407428'),...]
>>> {'false positive': 0.9768566493955095, 'false negative': 0.43351268255188313, 'accuracy': 0.04446992095577143}
```
False positive refers to the false positive rate, false negative refers to the false negative rate, and accuracy refers to the overall accuracy.
## Assignment ### Adding An Item e
Your job is write the `match` function in `analzye.py`. You can run your code by running: * For each hash function calculate the hash value of the item "e" (should be a number from 0 to m).
``` * Treat those calculated hash values as indices for the array and set each corresponding index in the array to 1 (if it is already 1 from a previous addition keep it as is).
python3 auto_grader.py
```
Running the code will print out a result report as follows (accuracy, precision, and recall):
```
----Accuracy----
0.5088062622309197 0.6998654104979811 0.3996925441967717
---- Timing ----
168.670348 seconds
``` ### Contains An Item e
*For full credit, you must write a program that achieves at least 50% accuracy in less than 5 mins on a standard laptop.* * For each hash function calculate the hash value of the item "e" (should be a number from 0 to m).
* Treat those calculated hash values as indices for the array and retrieve the array value for each corresponding index. If any of the values is 0, we know that "e" could not have possibly been inserted in the past.
The project is complete unstructured and it is up to you to figure out how to make this happen. Here are some hints: ## TODO 1. Generate K independent Hash Functions
Your first task is to write the function `generate_hashes`. This function is a higher-order function that returns a list of *k* random hash functions each with a range from 0 to *m*. Here are some hints that will help you write this function.
* The amazon product database is redundant (multiple same products), the google database is essentially unique. * Step 1. Review the "linear" hash function described in lecture and write a helper function that generates such a hash function for a pre-defined A and B. How would you restrict the domain of this hash function to be with 0 to m?
* Jaccard similarity will be useful but you may have to consider "n-grams" of words (look at the lecture notes!) and "cleaning" up the strings to strip formatting and punctuation. * Step 2. Generate k of such functions with different random settings of A and B. Pay close attention to how many times you call "random.x" because of how the seeded random variable works.
* Price and manufacturer will also be important attributes to use. * Step 3. Return the functions themselves so they can be applied to data. Look at the autograder to understand what inputs these functions should take.
## Submission ## TODO 2. Put
After you finish the assignment you can submit your code with: Write a function that uses the algorithm listed above to add a string to the bloom filter. In pseudo-code:
``` * For each of the k hash functions:
$ git push * Compute the hash code of the string, and store the code in i
``` * Set the ith element of the array to 1
## TODO 3. Get
Write a function that uses the algorithm listed above to test whether the bloom filter possibly contains the string. In pseudo-code:
* For each of the k hash functions:
* Compute the hash code of the string, and store the code in i
* if the ith element is 0, return false
* if all code-indices are 1, return true
## Testing
We've provided an autograder script `autograder.py` which runs a bunch of interesting tests. The autograder is not comprehensive but it is a good start. It's up to you to figure out what the test do and why they work.
import datetime import random
import csv import string
from analyze import match
from bloom import *
def eval_matching(your_matching):
f = open('Amzon_GoogleProducts_perfectMapping.csv', 'r', encoding = "ISO-8859-1") def generate_random_string(seed=True):
reader = csv.reader(f, delimiter=',', quotechar='"') chars = string.ascii_uppercase + string.digits
matches = set() size = 10
proposed_matches = set() return ''.join(random.choice(chars) for x in range(size))
tp = set() def test_hash_generation():
fp = set() b = Bloom(5,10)
fn = set()
tn = set() try:
assert(len(b.hashes) == 10)
for row in reader: except:
matches.add((row[0],row[1])) print('[#1] Failure the number of generated hashes is wrong')
#print((row[0],row[1]))
try:
for m in your_matching:
proposed_matches.add(m) for h in b.hashes:
h(generate_random_string())
if m in matches:
tp.add(m) except:
else: print('[#2] The hashes are not properly represented as a lambda')
fp.add(m)
for m in matches: s = generate_random_string()
if m not in proposed_matches:
fn.add(m) try:
for h in b.hashes:
if len(your_matching) == 0: assert(h(s) == h(s))
prec = 1.0 except:
else: print('[#3] Hashes are not deterministic')
prec = len(tp)/(len(tp) + len(fp))
rec = len(tp)/(len(tp) + len(fn)) try:
b = Bloom(100,10)
return {'precision': prec, b1h = b.hashes[0](s)
'recall': rec, b = Bloom(100,10)
'accuracy': 2*(prec*rec)/(prec+rec) } b2h = b.hashes[0](s)
#prints out the accuracy assert(b1h == b2h)
now = datetime.datetime.now()
out = eval_matching(match()) except:
timing = (datetime.datetime.now()-now).total_seconds() print('[#4] Seeds are not properly set')
print("----Accuracy----")
print(out['accuracy'], out['precision'] ,out['recall'])
print("---- Timing ----") try:
print(timing,"seconds") b = Bloom(100,10)
for h in b.hashes:
for i in range(10):
assert( h(generate_random_string())< 100 )
except:
print('[#5] Hash exceeds range')
try:
b = Bloom(1000,2)
s = generate_random_string()
bh1 = b.hashes[0](s)
bh2 = b.hashes[1](s)
assert(bh1 != bh2)
except:
print('[#6] Hashes generated are not independent')
def test_put():
b = Bloom(100,10,seed=0)
b.put('the')
b.put('university')
b.put('of')
b.put('chicago')
try:
assert(sum(b.array) == 30)
except:
print('[#7] Unexpected Put() Result')
def test_put_get():
b = Bloom(100,5,seed=0)
b.put('the')
b.put('quick')
b.put('brown')
b.put('fox')
b.put('jumped')
b.put('over')
b.put('the')
b.put('lazy')
b.put('dog')
results = [b.contains('the'),\
b.contains('cow'), \
b.contains('jumped'), \
b.contains('over'),\
b.contains('the'), \
b.contains('moon')]
try:
assert(results == [True, False, True, True, True, False])
except:
print('[#8] Unexpected contains result')
test_hash_generation()
test_put()
test_put_get()
# Extract-Transform-Load # Extract-Transform-Load
*Due Friday 5/22/20 11:59 PM* *Extra Credit Assignment*
Extract, transform, load (ETL) is the general procedure of copying data from one or more sources into a destination system which represents the data differently from the source(s). In this project, you will write some of the core primitives in an ETL system. Extract, transform, load (ETL) is the general procedure of copying data from one or more sources into a destination system which represents the data differently from the source(s). In this project, you will write some of the core primitives in an ETL system.
......
# Out-of-Core Group By Aggregate # Out-of-Core Group By Aggregate
*Graduating Seniors: Due 6/5/20 11:59 PM* *Due Friday May 21, 11:59 pm*
*Everyone else: Due 6/8/20 11:59 PM*
In this assignment, you will implement an out-of-core In this assignment, you will implement an out-of-core
version of the group by aggregate (aggregation by key) version of the group by aggregate (aggregation by key)
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment