VS265: Homework assignments: Difference between revisions

From RedwoodCenter
Jump to navigationJump to search
 
(7 intermediate revisions by 4 users not shown)
Line 20: Line 20:
* [http://redwood.berkeley.edu/vs265/lab1.pdf lab1.pdf]  
* [http://redwood.berkeley.edu/vs265/lab1.pdf lab1.pdf]  
* [http://redwood.berkeley.edu/vs265/data.mat data.mat]
* [http://redwood.berkeley.edu/vs265/data.mat data.mat]
<!--[http://redwood.berkeley.edu/w/images/e/ef/Hw1_soln_bilenko.pdf Solution.pdf] -->
Solutions
*[https://www.dropbox.com/s/9mxhlpgbhdgas0d/vs265_hw1.pdf?dl=0 Writeup]


==== Lab #2, due Tuesday, September 23 at beginning of class ====
==== Lab #2, due Tuesday, September 23 at beginning of class ====
Line 40: Line 35:
   In [3]: d.keys()
   In [3]: d.keys()
   Out[3]: ['oranges2', 'apples2', 'apples', 'oranges']
   Out[3]: ['oranges2', 'apples2', 'apples', 'oranges']
Solutions
*[https://www.dropbox.com/sh/7pio7vne8ear0ss/AABd_iS4z5enZc_oxHbR1cdya?dl=0 Writeup+scripts]


==== Lab #3, due Tuesday, October 21 at beginning of class ====
==== Lab #3, due Tuesday, October 21 at beginning of class ====
Line 59: Line 50:
* [http://redwood.berkeley.edu/vs265/lab3/hebb.txt hebb.py]
* [http://redwood.berkeley.edu/vs265/lab3/hebb.txt hebb.py]
* [http://redwood.berkeley.edu/vs265/lab3/eigmovie.txt eigmovie.py]
* [http://redwood.berkeley.edu/vs265/lab3/eigmovie.txt eigmovie.py]
* [https://www.dropbox.com/sh/wgf88ivp3j6h7ux/AABFrJDhgbwVCwGp3Xa1sCr-a?dl=0  Solution]  This is a dropbox folder that we have setup. It has both a pdf write up and scripts. Please feel free to explore them


==== Lab #4, due October 9th at beginning fo class ====
==== Lab #4, due October 9th at beginning fo class ====
Line 82: Line 71:
     # line above converts Fortran to C ordering
     # line above converts Fortran to C ordering


Solutions
* [https://www.dropbox.com/sh/zeyrdy96tqccck9/AABHJdksGP7TOoujplLirD_Ua?dl=0 Solutions]
==== Lab #5, due Thursday, Oct 30 at beginning of class ====
==== Lab #5, due Thursday, Oct 30 at beginning of class ====
* [http://redwood.berkeley.edu/vs265/lab5.pdf lab5]
* [http://redwood.berkeley.edu/vs265/lab5.pdf lab5]
Line 90: Line 76:
* [http://redwood.berkeley.edu/vs265/sparsenet_class_scripts.zip sparsenet scripts (zip)]
* [http://redwood.berkeley.edu/vs265/sparsenet_class_scripts.zip sparsenet scripts (zip)]
* You will also need the following set of whitened natural movie images: [https://redwood.berkeley.edu/bruno/sparsenet/IMAGES.mat IMAGES.mat]
* You will also need the following set of whitened natural movie images: [https://redwood.berkeley.edu/bruno/sparsenet/IMAGES.mat IMAGES.mat]
Solutions
* [https://www.dropbox.com/sh/p1qzy0edov231j1/AAA1b3aTIKFVAtDIEdkstNMFa?dl=0 Writeup with Scripts]


==== Lab #6, due Thursday, Nov. 6 at beginning of class ====
==== Lab #6, due Thursday, Nov. 6 at beginning of class ====
Line 103: Line 86:
* [http://redwood.berkeley.edu/vs265/lab6/showrfs.txt showrfs.py]
* [http://redwood.berkeley.edu/vs265/lab6/showrfs.txt showrfs.py]


Solution
==== Lab #7, due Tuesday, Nov. 25 at beginning of class ====
* [https://www.dropbox.com/sh/4j2hza8x504qciu/AAB7nyrsl0Z63Fy5SgtmNwyya?dl=0 Solutions]
* [http://redwood.berkeley.edu/vs265/lab7.pdf lab7]
* [http://redwood.berkeley.edu/vs265/lab7_scripts.zip lab7_scripts.zip]
 
==== Lab #8, due Thursday, Dec. 4 at beginning of class ====
* [http://redwood.berkeley.edu/vs265/lab8.pdf lab8.pdf]
* [http://redwood.berkeley.edu/vs265/boltz/boltz.m boltz.m]
* [http://redwood.berkeley.edu/vs265/boltz/get_batch.m get_batch.m]
* [http://redwood.berkeley.edu/vs265/boltz/sample.m sample.m]
* [http://redwood.berkeley.edu/vs265/boltz/draw.m draw.m]
* [http://redwood.berkeley.edu/vs265/boltz/sigmoid.m sigmoid.m]
* [http://redwood.berkeley.edu/vs265/boltz/scribble.mat scribble.mat]
* [http://redwood.berkeley.edu/vs265/boltz/scribble_v6.mat scribble_v6.mat] (version 6)
* [http://redwood.berkeley.edu/vs265/boltz/extract_patches.m extract_patches.m]
* [http://redwood.berkeley.edu/vs265/boltz/prob.m prob.m]
* [http://redwood.berkeley.edu/vs265/boltz/show_patches.m show_patches.m]

Latest revision as of 21:25, 23 August 2016

Students are encouraged to work in groups, but turn in assignments individually, listing the group members they worked with.

Submission instructions: Only paper copies of the homework will be accepted. Solutions are due at the start of the class. Please place them on the speaker's desk at the front of the class.

Resources

Matlab

Student version of Matlab ($50) may be obtained here.

There is an excellent guide to Matlab by Kevin Murphy on the web: http://code.google.com/p/yagtom/

Python

Fernando Perez at the Brain Imaging Center has an excellent set of resources on Python for scientific computing. You will likely find the "Starter Kit" particularly useful.

Also, a great starting point for all scientific python is using Anaconda [1]

Assignments

Lab #1, due Tuesday, September 16 at beginning of class

Lab #2, due Tuesday, September 23 at beginning of class

For Python you can use apples-oranges.npz

  In [1]: import numpy as np
  In [2]: d = np.load('apples-oranges.npz')
  In [3]: d.keys()
  Out[3]: ['oranges2', 'apples2', 'apples', 'oranges']

Lab #3, due Tuesday, October 21 at beginning of class

Matlab code are as separate files below.

Data

For Python you can use

Lab #4, due October 9th at beginning fo class

Matlab code and data for homework

Python code:

  • hopnet.py - python version of the above code as one file (with run, genpat, and corrupt methods)
  • patterns.npz
   p = np.load('patterns.npz')
   face,hi,X = p['face'], p['hi'], p['X']
   # if you load patterns.mat, use:
   p = scipy.io.loadmat("patterns.mat")
   face,hi,X = [p[k].reshape(10,10).T.reshape(100,1) for k in 'face','hi','X']
   # line above converts Fortran to C ordering

Lab #5, due Thursday, Oct 30 at beginning of class

Lab #6, due Thursday, Nov. 6 at beginning of class

Python code:

Lab #7, due Tuesday, Nov. 25 at beginning of class

Lab #8, due Thursday, Dec. 4 at beginning of class