├── README.md
├── Week-0
└── README.md
├── Week-1
├── Programming-Quizzes
│ ├── MATLAB
│ │ ├── README.md
│ │ ├── solution-1.md
│ │ ├── solution-10.md
│ │ ├── solution-11.md
│ │ ├── solution-12.md
│ │ ├── solution-13.md
│ │ ├── solution-14.md
│ │ ├── solution-2.md
│ │ ├── solution-3.md
│ │ ├── solution-4.md
│ │ ├── solution-5.md
│ │ ├── solution-6.md
│ │ ├── solution-7.md
│ │ ├── solution-8.md
│ │ └── solution-9.md
│ ├── Python
│ │ ├── README.md
│ │ └── Solutions
│ │ │ ├── 1.md
│ │ │ ├── 10.md
│ │ │ ├── 11.md
│ │ │ ├── 12.md
│ │ │ ├── 13.md
│ │ │ ├── 14.md
│ │ │ ├── 2.md
│ │ │ ├── 3.md
│ │ │ ├── 4.md
│ │ │ ├── 5.md
│ │ │ ├── 6.md
│ │ │ ├── 7.md
│ │ │ ├── 8.md
│ │ │ └── 9.md
│ └── README.md
├── notes
│ ├── 1- overview.md
│ ├── 2 - Computational NeuroScience: Descriptive Models.md
│ ├── 3 - Computational NeuroScience: Mechanistic and Interpretive Models.md
│ └── 4-NeuroBiology-101
│ │ ├── 4-1-Neurons.md
│ │ ├── 4-2-Synapses.md
│ │ ├── 4-3-Nervous System and Brain regions.md
│ │ ├── 4-4-Conclusion.md
│ │ └── README.md
└── shared
│ ├── acronyms.md
│ └── lecture.md
├── Week-2
├── Quiz
│ ├── Programming
│ │ ├── questions
│ │ │ ├── 1.md
│ │ │ ├── 2.md
│ │ │ ├── 3.md
│ │ │ └── 4.md
│ │ ├── resources
│ │ │ └── references.md
│ │ ├── shared_codes
│ │ │ ├── Python
│ │ │ │ ├── compute_sta.py
│ │ │ │ └── quiz2.py
│ │ │ ├── README.md
│ │ │ └── matlab
│ │ │ │ ├── README.md
│ │ │ │ ├── compute_sta.m
│ │ │ │ └── quiz2.m
│ │ └── solutions
│ │ │ ├── README.md
│ │ │ └── mathlab
│ │ │ ├── compute_sta.m
│ │ │ ├── output.md
│ │ │ └── quiz2.m
│ ├── README.md
│ └── Theory
│ │ ├── 1.md
│ │ ├── 2.md
│ │ ├── 3.md
│ │ ├── 4.md
│ │ └── 5.md
├── notes
│ ├── 1 - Overview.md
│ ├── 2- What is the Neural code?.md
│ ├── 3-Neural Coding : Simple Models.md
│ ├── 4 - Neural coding : Feature Selection.md
│ └── 5 - Neural Coding : Variability.md
└── shared
│ └── resources.md
├── Week-3
├── notes
│ ├── notes
│ │ ├── 1 - Neural Decoding and Signal Detection Theory.md
│ │ ├── 2 - Population Coding and Bayesian Estimation.md
│ │ ├── 3 - Reading minds : Stimulus Reconstruction.md
│ │ └── guest-lecture.md
│ └── shared
│ │ └── resources.md
└── requirements.txt
├── Week-4
├── Quiz
│ ├── Programming
│ │ ├── 1.md
│ │ ├── 2.md
│ │ ├── 3.md
│ │ ├── MATLAB
│ │ │ └── README.md
│ │ ├── Python
│ │ │ └── README.md
│ │ └── plotting
│ │ │ ├── README.md
│ │ │ └── output.md
│ ├── README.md
│ └── Theory
│ │ ├── 1.md
│ │ ├── 10.md
│ │ ├── 2.md
│ │ ├── 3.md
│ │ ├── 4.md
│ │ ├── 5.md
│ │ ├── 6.md
│ │ ├── 7.md
│ │ ├── 8.md
│ │ └── 9.md
└── notes
│ ├── notes
│ ├── 1 - Information and Entropy.md
│ ├── 2 - Calculating Information in Spike Trains.md
│ └── 3 - Coding Principles.md
│ └── shared
│ └── resources.md
├── Week-5
├── notes
│ ├── notes
│ │ ├── 1 - Modeling Neurons.md
│ │ ├── 2 - Spikes.md
│ │ ├── 3---Simplified-Modeled-Neurons
│ │ │ ├── 1 - overview.md
│ │ │ ├── 2 - introduction.md
│ │ │ ├── 3 - Capturing the basic dynamics of neurons.md
│ │ │ ├── 4 - Two-dimensional models.md
│ │ │ └── 5 - The Simple Model.md
│ │ ├── 4 - A forest of dendrites.md
│ │ └── README.md
│ └── shared
│ │ └── resources.md
└── quiz
│ └── README.md
├── Week-6
├── README.md
└── notes
│ ├── notes
│ ├── 1 - Modelling connections between neurons.md
│ ├── 2 - Introduction to network models.md
│ └── 3 - The World of Recurrent networks.md
│ └── shared
│ └── resources.md
├── Week-7
├── notes
│ ├── notes
│ │ ├── 1 - LTP and LTD.md
│ │ ├── 2 - Hebb's rule.md
│ │ ├── 3 - Covariance rule.md
│ │ ├── 4 - Analyzing learning rules.md
│ │ ├── 5 - Oja's Rule.md
│ │ ├── 6 - Summary of Hebbian Learning.md
│ │ ├── 7 - Statistical Learning.md
│ │ ├── 8 - Introduction to unsupervised learning.md
│ │ ├── 9 - Sparse coding and Predictive coding.md
│ │ └── README.md
│ └── shared
│ │ └── resources.md
└── quizzes
│ ├── README.md
│ └── programming
│ ├── alpha_neuron.m
│ └── alpha_neuron.py
├── Week-8
├── notes
│ ├── notes
│ │ ├── 1 - Neurons as Classifiers and Supervised Learning.md
│ │ ├── 2 - Reinforcement learning: Predicting rewards.md
│ │ └── 3 - Reinforcement Learning: Time actions.md
│ └── shared
│ │ └── resources.md
└── quiz
│ └── README.md
└── stuffs
├── installation.md
├── my-background.txt
├── shared-resources.md
└── stacking
├── matlab.md
└── other-notes.md
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/README.md
--------------------------------------------------------------------------------
/Week-0/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-0/README.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/README.md:
--------------------------------------------------------------------------------
1 | Score: 14/14
2 |
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-1.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-10.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-10.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-11.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-11.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-12.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-12.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-13.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-13.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-14.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-14.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-2.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-3.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-4.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-4.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-5.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-5.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-6.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-6.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-7.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-7.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-8.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-8.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/MATLAB/solution-9.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/MATLAB/solution-9.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/README.md:
--------------------------------------------------------------------------------
1 | Score: 14/14
2 |
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/1.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/10.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/10.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/11.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/11.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/12.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/12.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/13.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/13.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/14.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/14.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/2.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/3.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/4.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/4.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/5.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/5.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/6.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/6.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/7.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/7.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/8.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/8.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/Python/Solutions/9.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/Python/Solutions/9.md
--------------------------------------------------------------------------------
/Week-1/Programming-Quizzes/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/Programming-Quizzes/README.md
--------------------------------------------------------------------------------
/Week-1/notes/1- overview.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/notes/1- overview.md
--------------------------------------------------------------------------------
/Week-1/notes/2 - Computational NeuroScience: Descriptive Models.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/notes/2 - Computational NeuroScience: Descriptive Models.md
--------------------------------------------------------------------------------
/Week-1/notes/3 - Computational NeuroScience: Mechanistic and Interpretive Models.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/notes/3 - Computational NeuroScience: Mechanistic and Interpretive Models.md
--------------------------------------------------------------------------------
/Week-1/notes/4-NeuroBiology-101/4-1-Neurons.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/notes/4-NeuroBiology-101/4-1-Neurons.md
--------------------------------------------------------------------------------
/Week-1/notes/4-NeuroBiology-101/4-2-Synapses.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/notes/4-NeuroBiology-101/4-2-Synapses.md
--------------------------------------------------------------------------------
/Week-1/notes/4-NeuroBiology-101/4-3-Nervous System and Brain regions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/notes/4-NeuroBiology-101/4-3-Nervous System and Brain regions.md
--------------------------------------------------------------------------------
/Week-1/notes/4-NeuroBiology-101/4-4-Conclusion.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/notes/4-NeuroBiology-101/4-4-Conclusion.md
--------------------------------------------------------------------------------
/Week-1/notes/4-NeuroBiology-101/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/notes/4-NeuroBiology-101/README.md
--------------------------------------------------------------------------------
/Week-1/shared/acronyms.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/shared/acronyms.md
--------------------------------------------------------------------------------
/Week-1/shared/lecture.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-1/shared/lecture.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/questions/1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/questions/1.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/questions/2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/questions/2.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/questions/3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/questions/3.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/questions/4.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/questions/4.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/resources/references.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/resources/references.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/shared_codes/Python/compute_sta.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/shared_codes/Python/compute_sta.py
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/shared_codes/Python/quiz2.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/shared_codes/Python/quiz2.py
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/shared_codes/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/shared_codes/README.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/shared_codes/matlab/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/shared_codes/matlab/README.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/shared_codes/matlab/compute_sta.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/shared_codes/matlab/compute_sta.m
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/shared_codes/matlab/quiz2.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/shared_codes/matlab/quiz2.m
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/solutions/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/solutions/README.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/solutions/mathlab/compute_sta.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/solutions/mathlab/compute_sta.m
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/solutions/mathlab/output.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/solutions/mathlab/output.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Programming/solutions/mathlab/quiz2.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Programming/solutions/mathlab/quiz2.m
--------------------------------------------------------------------------------
/Week-2/Quiz/README.md:
--------------------------------------------------------------------------------
1 | No. of Attempts: 1/10
2 | Score: 9/9
3 |
--------------------------------------------------------------------------------
/Week-2/Quiz/Theory/1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Theory/1.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Theory/2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Theory/2.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Theory/3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Theory/3.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Theory/4.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Theory/4.md
--------------------------------------------------------------------------------
/Week-2/Quiz/Theory/5.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/Quiz/Theory/5.md
--------------------------------------------------------------------------------
/Week-2/notes/1 - Overview.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/notes/1 - Overview.md
--------------------------------------------------------------------------------
/Week-2/notes/2- What is the Neural code?.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/notes/2- What is the Neural code?.md
--------------------------------------------------------------------------------
/Week-2/notes/3-Neural Coding : Simple Models.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/notes/3-Neural Coding : Simple Models.md
--------------------------------------------------------------------------------
/Week-2/notes/4 - Neural coding : Feature Selection.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/notes/4 - Neural coding : Feature Selection.md
--------------------------------------------------------------------------------
/Week-2/notes/5 - Neural Coding : Variability.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/notes/5 - Neural Coding : Variability.md
--------------------------------------------------------------------------------
/Week-2/shared/resources.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-2/shared/resources.md
--------------------------------------------------------------------------------
/Week-3/notes/notes/1 - Neural Decoding and Signal Detection Theory.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-3/notes/notes/1 - Neural Decoding and Signal Detection Theory.md
--------------------------------------------------------------------------------
/Week-3/notes/notes/2 - Population Coding and Bayesian Estimation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-3/notes/notes/2 - Population Coding and Bayesian Estimation.md
--------------------------------------------------------------------------------
/Week-3/notes/notes/3 - Reading minds : Stimulus Reconstruction.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-3/notes/notes/3 - Reading minds : Stimulus Reconstruction.md
--------------------------------------------------------------------------------
/Week-3/notes/notes/guest-lecture.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-3/notes/notes/guest-lecture.md
--------------------------------------------------------------------------------
/Week-3/notes/shared/resources.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-3/notes/shared/resources.md
--------------------------------------------------------------------------------
/Week-3/requirements.txt:
--------------------------------------------------------------------------------
1 | additional background of calculus required
2 |
--------------------------------------------------------------------------------
/Week-4/Quiz/Programming/1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Programming/1.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Programming/2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Programming/2.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Programming/3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Programming/3.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Programming/MATLAB/README.md:
--------------------------------------------------------------------------------
1 | // TODO -- Add
2 |
--------------------------------------------------------------------------------
/Week-4/Quiz/Programming/Python/README.md:
--------------------------------------------------------------------------------
1 | // TODO -- Add
2 |
--------------------------------------------------------------------------------
/Week-4/Quiz/Programming/plotting/README.md:
--------------------------------------------------------------------------------
1 | Used MATLAB for plotting :)
2 |
--------------------------------------------------------------------------------
/Week-4/Quiz/Programming/plotting/output.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Programming/plotting/output.md
--------------------------------------------------------------------------------
/Week-4/Quiz/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/README.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/1.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/10.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/10.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/2.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/3.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/4.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/4.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/5.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/5.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/6.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/6.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/7.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/7.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/8.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/8.md
--------------------------------------------------------------------------------
/Week-4/Quiz/Theory/9.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/Quiz/Theory/9.md
--------------------------------------------------------------------------------
/Week-4/notes/notes/1 - Information and Entropy.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/notes/notes/1 - Information and Entropy.md
--------------------------------------------------------------------------------
/Week-4/notes/notes/2 - Calculating Information in Spike Trains.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/notes/notes/2 - Calculating Information in Spike Trains.md
--------------------------------------------------------------------------------
/Week-4/notes/notes/3 - Coding Principles.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/notes/notes/3 - Coding Principles.md
--------------------------------------------------------------------------------
/Week-4/notes/shared/resources.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-4/notes/shared/resources.md
--------------------------------------------------------------------------------
/Week-5/notes/notes/1 - Modeling Neurons.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/notes/notes/1 - Modeling Neurons.md
--------------------------------------------------------------------------------
/Week-5/notes/notes/2 - Spikes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/notes/notes/2 - Spikes.md
--------------------------------------------------------------------------------
/Week-5/notes/notes/3---Simplified-Modeled-Neurons/1 - overview.md:
--------------------------------------------------------------------------------
1 | 
2 |
--------------------------------------------------------------------------------
/Week-5/notes/notes/3---Simplified-Modeled-Neurons/2 - introduction.md:
--------------------------------------------------------------------------------
1 | 
2 |
--------------------------------------------------------------------------------
/Week-5/notes/notes/3---Simplified-Modeled-Neurons/3 - Capturing the basic dynamics of neurons.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/notes/notes/3---Simplified-Modeled-Neurons/3 - Capturing the basic dynamics of neurons.md
--------------------------------------------------------------------------------
/Week-5/notes/notes/3---Simplified-Modeled-Neurons/4 - Two-dimensional models.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/notes/notes/3---Simplified-Modeled-Neurons/4 - Two-dimensional models.md
--------------------------------------------------------------------------------
/Week-5/notes/notes/3---Simplified-Modeled-Neurons/5 - The Simple Model.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/notes/notes/3---Simplified-Modeled-Neurons/5 - The Simple Model.md
--------------------------------------------------------------------------------
/Week-5/notes/notes/4 - A forest of dendrites.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/notes/notes/4 - A forest of dendrites.md
--------------------------------------------------------------------------------
/Week-5/notes/notes/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/notes/notes/README.md
--------------------------------------------------------------------------------
/Week-5/notes/shared/resources.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/notes/shared/resources.md
--------------------------------------------------------------------------------
/Week-5/quiz/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-5/quiz/README.md
--------------------------------------------------------------------------------
/Week-6/README.md:
--------------------------------------------------------------------------------
1 | no quiz this week (^_^)
2 |
--------------------------------------------------------------------------------
/Week-6/notes/notes/1 - Modelling connections between neurons.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-6/notes/notes/1 - Modelling connections between neurons.md
--------------------------------------------------------------------------------
/Week-6/notes/notes/2 - Introduction to network models.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-6/notes/notes/2 - Introduction to network models.md
--------------------------------------------------------------------------------
/Week-6/notes/notes/3 - The World of Recurrent networks.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-6/notes/notes/3 - The World of Recurrent networks.md
--------------------------------------------------------------------------------
/Week-6/notes/shared/resources.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-6/notes/shared/resources.md
--------------------------------------------------------------------------------
/Week-7/notes/notes/1 - LTP and LTD.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/notes/1 - LTP and LTD.md
--------------------------------------------------------------------------------
/Week-7/notes/notes/2 - Hebb's rule.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/notes/2 - Hebb's rule.md
--------------------------------------------------------------------------------
/Week-7/notes/notes/3 - Covariance rule.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/notes/3 - Covariance rule.md
--------------------------------------------------------------------------------
/Week-7/notes/notes/4 - Analyzing learning rules.md:
--------------------------------------------------------------------------------
1 | 
2 |
--------------------------------------------------------------------------------
/Week-7/notes/notes/5 - Oja's Rule.md:
--------------------------------------------------------------------------------
1 | 
2 |
--------------------------------------------------------------------------------
/Week-7/notes/notes/6 - Summary of Hebbian Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/notes/6 - Summary of Hebbian Learning.md
--------------------------------------------------------------------------------
/Week-7/notes/notes/7 - Statistical Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/notes/7 - Statistical Learning.md
--------------------------------------------------------------------------------
/Week-7/notes/notes/8 - Introduction to unsupervised learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/notes/8 - Introduction to unsupervised learning.md
--------------------------------------------------------------------------------
/Week-7/notes/notes/9 - Sparse coding and Predictive coding.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/notes/9 - Sparse coding and Predictive coding.md
--------------------------------------------------------------------------------
/Week-7/notes/notes/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/notes/README.md
--------------------------------------------------------------------------------
/Week-7/notes/shared/resources.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/notes/shared/resources.md
--------------------------------------------------------------------------------
/Week-7/quizzes/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/quizzes/README.md
--------------------------------------------------------------------------------
/Week-7/quizzes/programming/alpha_neuron.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/quizzes/programming/alpha_neuron.m
--------------------------------------------------------------------------------
/Week-7/quizzes/programming/alpha_neuron.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-7/quizzes/programming/alpha_neuron.py
--------------------------------------------------------------------------------
/Week-8/notes/notes/1 - Neurons as Classifiers and Supervised Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-8/notes/notes/1 - Neurons as Classifiers and Supervised Learning.md
--------------------------------------------------------------------------------
/Week-8/notes/notes/2 - Reinforcement learning: Predicting rewards.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-8/notes/notes/2 - Reinforcement learning: Predicting rewards.md
--------------------------------------------------------------------------------
/Week-8/notes/notes/3 - Reinforcement Learning: Time actions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-8/notes/notes/3 - Reinforcement Learning: Time actions.md
--------------------------------------------------------------------------------
/Week-8/notes/shared/resources.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-8/notes/shared/resources.md
--------------------------------------------------------------------------------
/Week-8/quiz/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/Week-8/quiz/README.md
--------------------------------------------------------------------------------
/stuffs/installation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/stuffs/installation.md
--------------------------------------------------------------------------------
/stuffs/my-background.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/stuffs/my-background.txt
--------------------------------------------------------------------------------
/stuffs/shared-resources.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/stuffs/shared-resources.md
--------------------------------------------------------------------------------
/stuffs/stacking/matlab.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/stuffs/stacking/matlab.md
--------------------------------------------------------------------------------
/stuffs/stacking/other-notes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ashumeow/Computational-NeuroScience/HEAD/stuffs/stacking/other-notes.md
--------------------------------------------------------------------------------