CS 5043 HW1: Training Shallow Models

Objectives

Assignment Notes


Data Set

The BMI (Brain Machine Interface) data set is stored in a single pickle file, available on the supercomputer at:
/home/fagg/datasets/bmi/bmi_dataset.pkl

This is a 200MB file - please do not make copies of the file on the supercomputer (you don't need to). You are welcome to copy the file to other machines, if you wish. Two requirements:

Within this file, there is one dictionary that contains all of the data. The keys are: 'MI', 'theta', 'dtheta', 'ddtheta', 'torque', and 'time'. Each of these objects are python lists with 20 numpy matrices; each matrix contains an independent fold of data, with rows representing different samples and columns representing different features. The samples are organized contiguously (one sample every 50ms), but there are gaps in the data.

The different fields are defined as follows:

The data are temporally partitioned into 20 folds for us. Each fold contains multiple blocks of contiguous-time samples. So, if one were to plot theta as a function of time, you would see the motion of the arm over time (with gaps). Across the folds, it is safe to assume that the data are independent of one-another.


Provided Code

We are providing the following code (tar):


Part 1: Network


Part 2: Multiple Runs

Hints


Expectations

Think about what the curve shapes should look like before you generate them.

Looking Forward

For the next homework, we will be experimenting with deeper networks and with varying hyper-parameter choices. As you write your code, think about how to structure it (and your results data structures) so that you can handle variations in other hyper-parameters.


What to Hand-In

A single zip file that contains:

Grading


andrewhfagg -- gmail.com

Last modified: Mon Feb 10 14:54:28 2025