Intro#
Install and import feedback gadget#
Show code cell source
# @title Install and import feedback gadget
!pip install vibecheck datatops --quiet
from vibecheck import DatatopsContentReviewContainer
def content_review(notebook_section: str):
return DatatopsContentReviewContainer(
"", # No text prompt
notebook_section,
{
"url": "https://pmyvdlilci.execute-api.us-east-1.amazonaws.com/klab",
"name": "neuromatch_neuroai",
"user_key": "wb2cxze8",
},
).render()
feedback_prefix = "W1D1_Intro"
Prerequisites#
We assume you have completed the equivalent of the computational neuroscience (CN) and DL courses:
We’ll extensively use transformers and attention in the first lesson and cover neural data analysis (in particular EMG) in the second tutorial.
Please review the precourse materials if necessary!
Video#
Intro Video#
Submit your feedback#
Show code cell source
# @title Submit your feedback
content_review(f"{feedback_prefix}_intro_video")