Python代写 | Course Project Instructions and Assessment Criteria: Machine Learning (2110)

本次作业分为4个部分,要求学员使用Google Cloud创建APP Engine云主机,并且在云主机上部署Python、PHP应用程序、实现大数据运算统计等。本次作业题材非常新颖,我们可以看到现在教授布置assignment的趋势已经有一些变化,以前更多是一些data structure模拟case的作业,虽然是case但是更多的运用校园传授的知识。现在更加强调掌握工作中可能会使用到的实战技能和经验。

Assignment 1

 (from Lab 2) – Google App Engine Python

 

Task-1

 Make necessary modifications in the code of Lab 2 so that your Guestbook application the Greeting data structure also contain a Subject attribute (type String). Your webpage also should contain a new textbox for providing subject which should be stored in DataStore along with author and content.

Rubric

  1. Adding subject to html view 1 mark
  2. Adding and storing subject in DataStore 1 mark
  3. A fully functional working code 1 mark

 

(from Lab 3) – Google App Engine PHP

Task-2

 Create a Google app using your knowledge in Google app engine for PHP in Lab 3 which will have following features:

In first step you application will load a page with 1 textbox as follows. In the textbox user can input any number between 5 to 25. Let, we call this number as “n”.

Once user click the submit button it will create a file named “fibonacci_n.txt” in your Google bucket that prints first n numbers of Fibonacci series in that file. (e.g. if user inputs 10 then it will create first a file named “fibonacci_10.txt” in your google bucket with will have first 10 Fibonacci numbers in the format: 1,1,2,3,5,8,13,21,34,55).

You can build Fibonacci numbers using the algorithm described here: https://www.tutorialspoint.com/data_structures_algorithms/fibonacci_series.htm) . After clicking the submit button, the application will also display a web page with three text-field and a submit button (as follows). Let’s the text fields are labeled as A, B and C. A, B and C will take numerical values (validation check is not required).

After providing input numerical values in A, B, C and clicking submit button it will first calculate the sum of A and B (say this is S). The result of this sum (S) will need to be multiplied by C (say the result is M). Now you need to print the total sum which will be equal to M+all values generated (i.e. first n number of Fibonacci series) in “fibonacci_n.txt” in the same webpage. While calculating the sum,

you must read the values from “fibonacci_n.txt” file. Moreover, it will also create a file named “result.txt” in your Google bucket which will contain the average of (A, B, C + all values in “fibonacci_n.txt”) file.

Example

In your “fibonacci_10.txt” you have values: 1,1,2,3,5,8,13,21,34,55. And you provided the following input values in your webpage

So, after clicking submit button the webpage should look like this:

Total Sum: 263

Average: 12.77

Rubric

  1. Writing code for generating Fibonacci series 1 mark
  2. Creation of “Fibonacci_n.txt” with Fibonacci series 1 mark
  3. Showing the webpages according to the 0.5 mark
  4. Taking N, A,B,C input: 5 mark
  5. Calculating and showing the result 1 mark
  6. Creation of “result.txt” file and calculating average 1 mark
  7. A fully working application, understanding and code explanation: 2 marks

 

(from Lab 3) – Google BigQuery

Task-3

 

This task is based on Google Big Query that we covered in Lab 3.

Using the baby_names dataset you created in Lab 3 write some queries (using BigQuery browser tool) to identify the following information (Each correct query 1 mark)

  1. Find a list of all female babies born after 2008 with frequency count between 7000 and
  2. Find total number of male babies born before 2011 with name starts with ‘T’.
  3. Find top 20 baby names based on frequency after year

Think and Answer

Task-4

Assignment 2 will ask you to work on cloud computing related individual projects. In view to get you started with thinking of what could possibly be done, please, reply to the following questions.

Please, reply to these questions with a short (2 or 3 lines) answer:

  • Give a couple of examples of principles/applications which are possible/especially efficient because using cloud-based services?
  • What kind of application you would like to work on for the Assignment-1? Provide a short description.

 

Deadline and Criteria

You must demonstrate your code and work to your tutor during your lab session time (the lab normally you attend). Otherwise you will get 0 in this lab test. You have time to demo your working application and code to your tutor during your lab session between Week 3-6 (or by 24th August). You are encouraged to finish it early, so you can show it early and can focus on your Assignment 2. You will get 0 if you do not demo it before mid-semester break.

 

Plagiarism

Please do it by your own. Don’t copy from others. If we can identify that you copied from others you will get 0.

 

Submission

Create a .txt file and name it [your_student_number].txt (e.g. s3369312.txt). This .txt file will contain items in following order

  1. Your Name and student number
  2. Code of task 1
  3. Code of task-2
  4. Queries of task-3
  5. Answers of “Think and answer”

Make a .zip of your text file and submit in the Canvas anytime before August 26th, 2018 (end of week 6). You will be marked during your demo time. This submission is only for keeping the records. However, you will not able to view your mark in Blackboard until you submit your file.