Open In Colab   Open in Kaggle

Intro#

Overview#

In the intro, you should introduce the topic of the day and the topic of each tutorial that the day covers.

Prerequisite knowledge#

Briefly list the the necessary prerequisite to follow the day

Install and import feedback gadget#

Hide code cell source
# @title Install and import feedback gadget

#1. Install necessary packages
!pip3 install vibecheck datatops --quiet

#2. define content_review() function:
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_cn",
            "user_key": "y1x3mpx5",
        },
    ).render()


# Replace 'weeknumber' and 'daynumber' with appropriate values, underscore followed by Title e.g., W1D1_Intro
feedback_prefix = "W1D1_Intro"

Video#

How to upload videos:

Slides#

If you want to download the slides: 'Link to the slides'

Submit your feedback#

Hide code cell source
# @title Submit your feedback

content_review(f"{feedback_prefix}_Intro_Video")