Open In Colab   Open in Kaggle

Tutorial 4: Model Discussions#

Week 1, Day 1: Model Types

By Neuromatch Academy

Content creators: Matt Laporte, Byron Galbraith, Konrad Kording

Post-production team: Gagana B, Spiros Chavlis


Tutorial Objectives#

Estimated timing of tutorial: 45 minutes

In this tutorial, you will reflect on what/how/why models in a group discussion and discuss your preferences and thoughts on modeling.


Setup#

Install and import feedback gadget#

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

!pip3 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_cn",
            "user_key": "y1x3mpx5",
        },
    ).render()


feedback_prefix = "W1D1_T4"

Section 1: Model discussions#

Think! 1: Model discussions#

Please spend the next 45 minutes or so discussing the following questions.

  • What is your favorite model ever

    • Every student contributes one. Can not reuse the same

  • Which models when?

    • For which questions do you prefer what models?

    • How models?

    • Why models?

  • Which model kinds do you like best?

    • Why?

    • Would you be missing something if the other models did not exist?

Submit your feedback#

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