Open In Colab   Open in Kaggle

Intro#

Install and import feedback gadget#

Hide 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 = "W2D2_Intro"

Prerequisites#

The additional notions you should be comfortable with while exploring today’s tutorials are Fourier Transform and Convolution. We strongly recommend you look at the following video resources by Three Blue One Brown (3b1b) on these concepts if you don’t feel confident about them (Fourier Transform, Convolution). Familiarizing with them will benefit your intuition behind the proposed materials here.

Video#

Intro Video#

Submit your feedback#

Hide code cell source
# @title Submit your feedback
content_review(f"{feedback_prefix}_intro_video")

Slides#