Advertisement
Guest User

Untitled

a guest
Mar 1st, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. CS84 Today
  2.  
  3. 0. Discuss Papers that you liked (if any)
  4.  
  5. 1. Reviewing Regression:
  6.  
  7. http://arachnoid.com/polysolve/
  8.  
  9. 2. Discussing the theory of Back-Propagation:
  10.  
  11. http://karpathy.github.io/neuralnets/
  12.  
  13. 3. Discussing Features, layers, and the effects of hyperparameters:
  14.  
  15. first hidden node:
  16. tanh(x1 * w1 + x2 * w2);
  17.  
  18. http://playground.tensorflow.org/
  19.  
  20. 4. Writing a binary classifier in Keras (DEMO)
  21.  
  22. 5. If we have time, discussing train vs test and crossvalidation. If we don't have time, this will go into next week.
  23.  
  24. Homework due 2/28:
  25.  
  26. 1a. Pick a novel binary math function, e.g. f(x1,x2,x3,x4) -> boolean, generate data, and train a network to classify this data
  27.  
  28. 1b. Shrink the size of your neural network until it no longer predicts 90+% accuracy -- by removing layers or removing nodes per layer.
  29.  
  30. 1c. Save two versions of your model. One which accurately predicts, and one which doesn't accurately predict.
  31.  
  32. 2a. Find an interesting data set online in csv format.
  33.  
  34. 2b. Train a network to classify a feature on the dataset
  35.  
  36. 2c. Write 1-3 sentences about the performance of your algorithm and what it implies
  37.  
  38. 3a. Do this 3-5 times (please take this part of the assignment seriously... spend at least a couple hours on this!): Find some information on the internet that could be converted into a dataset (but has not currently been formatted as a csv)
  39.  
  40. 3b. Write what the columns (features) might be in your dataset
  41.  
  42. 3c. What are some things you might be able to classify (predict) that are already labeled? What are things you could predict that aren't labeled but could be labeled by hand? What are things that you could predict that would require other data to be labeled (and where could you find that data)?
  43.  
  44. 3d. Be prepared to come to next class to discuss ideas on how you might parse your data set into a csv.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement