Advertisement
Guest User

Untitled

a guest
May 28th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. ## ToDo
  2. ### Report
  3. * write **Kaggle Competition: Diabetic Retinopathy Detection** section in your own words
  4. * include stats of the data set provided in terms of the number of examples per class
  5. * some of the **DL Frameworks** review parts are direct copy/paste - make sure it is all written in your own words.
  6.  
  7. ### Pre-training second layer
  8. * make sure pre-training values are between 0.1 and 0.9 (actually look into existing datasets used for the pretraining and see what min and max values do they use)
  9.  
  10. train first layer with unsupervised training
  11.  
  12. * convolve input data with learned filters
  13. * replace inputs with feature maps (1 -> 64)
  14. * create 200k samples of 64x13x13 tensors use them to pre-train second layer filters (2048 -> 512). Should I keep the connection table with me (would not hurt I guess).
  15.  
  16.  
  17.  
  18. ## Notes
  19. * Use Photoshop to mark symptom features for supervised learning. Save PSD files, where one layer is the original image and second layer is features marked with different color for each.
  20. * Extracting filenames in labels.csv:
  21. ```
  22. cat trainLabels.csv | grep ",1" | head -n20 | awk -F "," '{print "processed/train/"$1".jpeg"}' | xargs open
  23. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement