Skip to article frontmatterSkip to article content

Examples of embodied activities from our courses.

This document shows some examples of embodied activities from our courses.

RNN Activity

source

RNN is like your brain reading a sentence word by word.

Two rows of students:

  1. At time step 0:

    • Front-row student x0x_0 gets a word

    • They pass it to the back-row student behind them (h0h_0).

    • h0h_0 is initialized with an image if you want to make it interesting

  2. At time step 1 (and beyond):

    • The front-row student (e.g., x1x_1) gets a new word

    • The back-row student (e.g., h1h_1) receives:

      • The current input from the front-row student (e.g., x1x_1)

      • Whatever “memory” is passed from the previous hidden state (e.g., h0h_0)

      • h1h_1 combines this (e.g., by writing a summary phrase or combining keywords).

  3. Repeat until time step 3 or 4.

  4. Final time step: h3h_3 summarizes what they remember (e.g., predicts next word, gives the “mood” of the sentence, etc.)

Markov Models of Language Activity

Source

Each of you will receive a sticky note with a word on it. Here’s what you’ll do:

Whichever row generates the most captivating sentence will get XXX.

Here are some example sentences generated by students.