Assignment #3: COMP4434 Big Data Analytics Solved

$ 20.99
Category:

Description

Q1. Regularization

[15 points] We use polynomial regression for the prediction task of a dataset. The given dataset includes a train set (train.csv) and a test set (test.csv). To illustrate the effect of regularization, please first implement the following regression models using python language (third-party packages are allowed). Then, plot the data points of the train set and the regression lines of the trained models. Finally, compute the RMSE of the trained models using the test set and make a comparative discussion about underfitting and overfitting.
โ€ข Polynomial regression without regularization (polynomial to 5th power)
โ€ข L1 Regularized polynomial regression: ๐œ† = 1 and ๐œ† = 100 โ€ข L2 Regularized polynomial regression: ๐œ† = 1 and ๐œ† = 100

The given datasets can be downloaded at:
https://drive.google.com/drive/folders/1LSZNIEWf6XKnQtRw8L01tS6yAB67Aad2?usp=sharing
โ€ข The initial values for parameters ๐‘ฅ = [0.77 0.48 0.19 0.43 0.31] and ๐œƒ๐‘‡ = [0.68
0.44 0.51 0.18
0.36 0.62
0.78]
0.08
0.92

Q2. Recommender System

Build up a collaborative filtering-based recommender system to provide effective hotel recommendation. The training dataset as shown in the table below contains the ratings from 4 users to 3 hotels. The ratings range from 1 point to 5 points.

Hotel 1 Hotel 2 Hotel 3
User 1 5 1 ?
User 2 4 ? 3
User 3 ? 4 5
User 4 3 3 4

We use the gradient descent algorithm to solve cost minimization in the collaborative filtering model. Some settings are as follows.

โ€ข The constant learning rate ๐›ผ = 0.0002
โ€ข The regularization parameter ๐œ† = 0.02
โ€ข The dimension for user/item feature vectors ๐พ = 2

a) [5 points] If we finally obtain ๐‘ฅ(1) = [1.268 0.994]๐‘‡ and ๐œƒ(3) = [0.271 0.694]๐‘‡ after the training procedure, what is the rating of user 3 on hotel 1?
b) [10 points] Calculate the values of ๐‘ฅ1(1) (i.e., the first element in the item feature vector of hotel 1) and ๐œƒ1(2) (i.e., the first element in the user feature vector of user 2) after the first iteration.
c) [5 point] Implement the gradient descent algorithm to update the parameters ๐‘ฅ and ๐œƒ using python language. Please calculate the ratings of user 2 on hotel 2 after 50 rounds and upload the source code file.

ps. For a) and b), the detailed calculation process is required and the intermediate and final results should be rounded to 3 decimal places.

Q3. Neural Network

[10 points] Consider the following neural network:

Where ๐‘Ž๐‘– = โˆ‘๐‘— ๐‘ค๐‘—๐‘–๐‘ง๐‘— ๐‘ง๐‘– = ๐‘“๐‘–(๐‘Ž๐‘–) for ๐‘– = 1,2,3,4 ๐‘ง0 = ๐‘Ž0 (an input neuron) ๐‘“3(๐‘ฅ) = relu(๐‘ฅ) and ๐‘“1(๐‘ฅ) = ๐‘“2(๐‘ฅ) = ๐‘“4(๐‘ฅ) = sigmoid(๐‘ฅ). relu(๐‘ฅ) corresponds to a rectifier linear unit transfer function defined as: relu(๐‘ฅ) = max {0,๐‘ฅ}. The cost function is defined as ๐ฝ(๐‘ค) = 12 (๐‘ง4 โˆ’ ๐‘ฆ)2.

(a) Write a function ๐น to simulate the neural network.
๐œ•๐ฝ
(b) Assume that we are given a training data ๐‘ฅ = 1.0,๐‘ฆ = 0.1 what is the value of ๐œ•๐‘ค34?

Reviews

There are no reviews yet.

Be the first to review “Assignment #3: COMP4434 Big Data Analytics Solved”

Your email address will not be published. Required fields are marked *