CS6220 Assignment 1 Solved

30.00 $

Category: Tags: , ,

Description

5/5 - (1 vote)

1 Getting Started – 10 points 1.1 Using Docker

Different companies use different tools for development and different work environments. For future assignments, we won’t be prescriptive, but in this homework, we’re going to familiarize ourselves with some of the most useful and common delivery and development environment tools in industry today.

Docker http://www.Docker.com is a useful mechanism for delivering software or scaling it up. For example, say we want to run a multi-computer job, passing Docker containers to each of the nodes in the cluster is one way to have repetitive and predictable behavior when doing large scale compute.

There are two essential Docker units: a container and a container image.

  1. A container is a sandboxed process on your machine that is isolated from all other processes on the host machine. That isolation leverages kernel namespaces and cgroups, features that have been in Linux for a long time. Docker has worked to make these capabilities approachable and easy to use. To summarize, a container:
    1. a)  is a runnable instance of an image. You can create, start, stop, move, or delete a container using the DockerAPI or CLI.
    2. b)  can be run on local machines, virtual machines or deployed to the cloud.
    3. c)  is portable (can be run on any OS).
    4. d)  is isolated from other containers and runs its own software, binaries, and configura- tions.
  2. When running a container, it uses an isolated filesystem. This custom filesystem is pro- vided by a container image. Since the image contains the container’s filesystem, it

1

must contain everything needed to run an application – all dependencies, configurations, scripts, binaries, etc. The image also contains other configuration for the container, such as environment variables, a default command to run, and other metadata.

Go ahead and download and install Docker. The getting started guide on Docker has detailed instructions for setting up Docker on

• Mac https://docs.docker.com/desktop/install/mac-install/,
• Linux https://docs.docker.com/install/linux/docker-ce/ubuntu • Windows https://docs.docker.com/docker-for-windows/install.

1.2 Executing Your “Hello World”

For this assignment, we’ll start with creating a Dockerfile in your submission folder. Specify the operating system and version of Python in the Dockerfile. You will subsequently need to install Python and libraries that you anticipate importing. Do not add the data into the image; you will need to pass that into the container with the -v Docker option.

For example, here’s the most basic Dockerfile: FROM ubuntu:20.04

RUN apt update && apt install -y sbcl
WORKDIR /usr/src

For this assignment, you’ll set up your Docker environment and the appropriate versions of Python. Specifically,

  1. Download and install Docker
  2. Create your Dockerfile
  3. Compile your Docker image
  4. Screenshot a list of the Docker images available
  5. Screenshot a list of the running Docker containers that include one with the image you created
  6. Include both screenshots and the command you used in your write up

1.3 Github

Software version control at companies is essential for every software company in the industry. There are several types, including Subversion/SVN (which Google uses its in-house version branched from SVN). The most popular tool of choice is Github, which Microsoft recently bought.

At the end of this assignment, your submission will point to a repository, where the following files will be reviewed and subsequently graded:

• Dockerfile specifying what packages that you’ve used

2

• assignment1.tex file with your homework writeup
• assignment1.pdf file of the compiled version of your *.tex file • assignment1.py file of your working code

None of the other files in that repository will be reviewed. We’ve provided a LATEXtemplate that you can use for submission, provided here:

• https://github.com/kni-neu/homework-1/blob/main/assignment1_template. tex

Do NOT include data into your Git repository. If you need help with LATEX, the program that creates a PDF file from a coded text file (with extension *.tex), you may wish to use the online site overleaf.com. There is a helpful guide at this url: https://www.overleaf.com/learn

2 Identifying All Sets – 40 points

In subsequent lectures, you’ll learn about frequent item sets, where relationships between items are learned by observing how often they co-occur in a set of data. This information is useful for making recommendations in a rule based manner. Before looking at frequent item sets, it is worth understanding the space of all possible sets and get a sense for how quickly the number of sets with unique items grows.

Suppose that we’ve received only a hundred records of items bought by customers at a market. Each line in the file represents the items an individual customer bought, i.e. their basket. For example, consider the following rows.

ham, cheese, bread
dates, bananas
celery, chocolate bars

Customer 1 has a basket of ham, cheese, and bread. Customer 2 has a basket of dates and bananas. Customer 3 has a basket of celery and chocolate bars. Each of these records is the receipt of a given customer, identifying what they bought.

  1. What is the cardinality of the full set of unique items? Write a function called cardinality_items that takes a .csv text string file as input, where the format is as the above, and calculates
    the cardinality of the dataset.
  2. Taking any .csv file as a sample of a larger dataset, we’d occasionally like to understand the space of all possible subsets comprised of unique items. If there are N unique items (i.e., the cardinality of the entire dataset is N), how many sets with unique items can there possibly be? (Ignore the null set.)
  3. Write a module called all_itemsets() with the following input/output:
    a) Input: filename = the .csv text string file, where the format is as the above. b) Output: L = [S1,S2,···SN] = A list of all possible sets of size N

3

4. Let’s take the small sample .csv provided as reflective of the distribution of the receipts writ large. So, for example, if the set S = {bread, oatmeal} occurs twice in a dataset with 100 records, then the probability of item set {bread, oatmeal} occurring is 0.02. Write a module called prob_S with the following input/output:

a) Input:
S = the set in question
D = the entire Dataset (which if it’s in memory, Python will pass by reference)

b) Output: P(S) = the probability that S occurs 3 The Netflix Challenge – 50 points

One of the most famous challenges in data science and machine learning is Netflix’s Grand Prize Challenge, where Netflix held an open competition for the best algorithm to predict user ratings for films. The grand prize was $1,000,000 and was won by BellKor’s Pragmatic Chaos team. This is the dataset that was used in that competition.

• https://www.kaggle.com/datasets/netflix-inc/netflix-prize-data

In this exercise, we’re going to do a bit of exploring in the Netflix Data. Start by downloading the data. If all worked out well, you should have the files in Fig. 3.1. The Kaggle dataset is close to 700MB large, and may take a long time to download. Do not include this data in your Docker container, but rather, mount the folder with the data.

3.1 Data Verification

Data integrity tends to be a problem in large scale processing, especially if there is little to no support. Therefore, it’s important to verify the quality of the file download.

1. A large part of machine learning and data science is about getting data in the right format. Verify that the schema is the same as the Kaggle Dataset’s description. Add screenshots to your assignment.

3.2 Data Analysis

Let’s answer the following questions in your writeup:

  1. How many total records are there?
  2. Can you plot the distribution of star ratings over users and time? The granularity of the sliding window is at your discretion. Are there any trends?
  3. What percentage of the films have gotten more popular over time?
  4. How many films have been re-released? How do you know?
  5. What other information might we try to extract to better understand the data? For the questions that you may come up with (especially any time series data), make sure you back up your assertions with plots. Go ahead and play around with the data, and explore.
  6. What are some interesting problems that we might solve? (No need to actually solve them!)

4

Figure 3.1: If everything worked out well, you should have the above files available to browse and process.

  • Assign1-3hzh4c.zip