CS 5043: HW2

Assignment notes:

Multilayer Network

This week we took our first steps into sequential, multi-layer networks in Keras. In this assignment, we will apply these skills to our brain-machine interface data set.

Here, we will predict the zeroth column of the theta matrix, which corresponds to shoulder angle in radians. As with HW 1, use the first four segments of data for training. Furthermore, use fold 18 for our validation data set. Note that the validation data set, like the training set, was extracted in the example brain-machine interface code that I distributed before HW 1 (this corresponds to variables ins_val and outs_val).

Part 1: Linear Network

  1. In Keras, create a linear network with no hidden layers.

    When training a network, one can include the validation set in the fit() call. After every training epoch, the validation set is used to evaluate the model and the performance is reported:

    model.fit(x=ins_training, y=outs_training,
              validation_data = (ins_val, outs_val),
              epochs=epochs)
    
    

  2. Train the model for as many epochs that are necessary to reach optimum performance (after this point, the performance may begin to worsen).

  3. Query the network: extract the predictions and the mse for both the training and validation data sets. The former can be obtained by calling model.predict(); the latter by calling model.evaluate(). For this latter case, set the batch_size to be the length of the data set being evaluated.

  4. In a single figure, plot the first 1000 samples for both the ground truth and the prediction for the training set. Make sure to label your axes and provide a legend.

  5. Do the same for the validation set.

  6. Using the MSE, compute and print the FVAF for both the training and validation data sets

Part 2: Multi-Layer Network

  1. Create a multi-layer, nonlinear network. The output unit should still be linear, however.

  2. Train the network, plot the results and report the FVAF, as you did for part 1.


Submission


Hints


andrewhfagg -- gmail.com

Last modified: Sat Feb 9 01:19:14 2019