CSE3CI - Computational Intelligence for Data Analytics

Assignment Help Python Programming
Reference no: EM132516293

CSE3CI - Computational Intelligence for Data Analytics Assignment - La Trobe University, Australia

Problem Description - Forecasting Electricity Prices

The problem is to forecast electricity price based on historical data. Let the temperature and total demand of electricity at time instant t be T(t) and D(t) respectively. The goal is to predict the recommended retail price (RRP) price by using some historical data as system inputs. The historical data set consists of the following variables: T(t-2), T(t-1), T(t), D(t-2), D(t-1), D(t). The output should be a prediction of the Recommended Retail Price (RRP) of electricity at the next time instant t+1, denoted by P(t+1).

You have been provided with real-world electricity pricing data from Queensland, Australia. There are two datasets: a training set, to be used for model development; and a test set, to be used to evaluate the performance of your models. Each dataset has the same structure. Rows correspond to successive time instants, and contain seven values: the predictor variables T(t-2), T(t-1), T(t), D(t-2), D(t-1), D(t), and the target variable P(t+1). The objective is to predict the value of P(t+1) on the basis of one or more of the six predictor variables.

There are five parts to the assignment, described below, with the approximate assessment weighting. Parts 1, 2 and 3 are based on content that has been covered up to then end of Week 5. Content for Part 4 will be covered in Week 6 and 7.

Part I - Data Preparation

The performance of many systems can be improved through careful preparation of the data. Visualising the electricity prices will reveal that there are potential outliers in the dataset; i.e., observations that lie an abnormal distance from other values in a random sample from a population.

Tasks -

Use an appropriate technique to identify and remove outliers of the output variable from the datasets (for both training and test sets).

Provide a plot showing the price data before and after the removal of outliers.

Part 2 - Linear Regression Models

Linear regression is often a good baseline against which to compare the performance of other models.

Tasks -

Apply linear regression to the prediction of electricity prices.

For both the training and test sets, provide the Average Relative Error.

For both training and test sets, produce a plot showing, for each data point, how the predicted price compares with the actual price.

Part 3 - Multilayer Perceptron Models

Multilayer perceptrons can sometimes yield better performance over linear models.

Tasks -

Experiment with the application of MLPs to predicting electricity prices. You should try varying MLPRegressor parameters such as the regularization coefficient, the number of training epochs, and the number of hidden units. Make sure that you record the training error and test error in each case. It is suggested that you use logistic units in the hidden layer, but you can use others if you wish.

Provide results for three different MLPRegressor parameter settings.

- one of these should be the result for the best performing MLP that you were able to train;

- one should clearly demonstrate underfitting;

- one should clearly demonstrate overfitting.

For each of these cases, provide the learning parameters that you have used, as well as the training error and the test error.

For the best-performing MLP, for both training data and test data, produce a plot showing, for each data point, how the predicted price compares with the actual price.

Part 4 - Fuzzy Forecasting System

For this part, you will develop a fuzzy forecasting system for predicting the electricity price.

Tasks -

Select appropriate values or fuzzy subsets for the linguistic variables that you will use in your fuzzy rules.

Apply statistical analysis (correlation coefficients) and heuristics to develop a set of fuzzy rules;

Implement your fuzzy system in Python, and produce clear plots of all membership functions involved in your system;

Evaluate the system performance in terms of the average relative error on both training and test sets.

You may use either Mamdani-type or Sugeno-type inference, but you should include some justification for your decision.

Part 5 - Report and Presentation

This is the assignment 'deliverable'; i.e., what you are required to submit. It should contain your results from Tasks 1 to 4, put together in a clear and coherent manner. It should also clearly describe how you conducted your investigation and any design choices you made (e.g., What parameters did you experiment with when applying the MLP?, What different membership functions did you experiment with in creating your fuzzy system?, Why did you opt for Mandami-type inference as opposed to Sugeno-type inference?, and so on). Basically, the more thorough and systematic your analysis, the better. A summary of your overall findings should also be provided in the report.

Attachment:- Computational Intelligence for Data Analytics Assignment File.rar

Reference no: EM132516293

Questions Cloud

Average return and standard deviation of return : Calculate the average return and standard deviation of return for a portfolio 50% invested in security A and 50% invested in security B. Comment on the result.
What incremental cost of produce each additional water pump : Assuming Fish Tracker wants to earn a pretax profit of $8,000 on this special order, what price must it charge Bass Master? What incremental cost of producing
Discuss the development of capital structure theory : Discuss the development of capital structure theory (e.g., MM theorem, Trade-off theory, Pecking Order theory).
Unsystematic and systematic risk : The risk premium, for a stock, required by investors, therefore depends on the total risk." Discuss to what extent you agree with this statement.
CSE3CI - Computational Intelligence for Data Analytics : CSE3CI - Computational Intelligence for Data Analytics Assignment Help and Solution - La Trobe University, Australia - Assessment Writing Service
What is the value of the bond when you purchased it : You purchased an annual interest coupon bond one year ago with six years remaining to maturity at the time of purchase. The coupon interest rate
What level of interest rates is the project? attractive : Investment opportunity with an initial investment of $160,000 today and receive $170,000 in one year. For what level of interest rates is project? attractive?
Firm cost of capital : A firm invested cash Rs.120 on a project. It is forecasted that following cash flow will generate by this project in coming 5 years. Firm cost of capital is 10%
BAF 301 Introduction to Financial Management Assignment : BAF 301 Introduction to Financial Management Assignment Help and Solution, Emirates College of Technology - Assessment Writing Service

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd