flowchart LR
A1[("Training Data (X and y)")] --> B{{fit}}
A2[Model Object] --> B
B --> FM[Fitted Model]
FM --> C{{Predict}}
B2[(New data X)] --> C
C --> D[("predicted y's")]
In this class we’re studying how Tuneable Machines can play Optimization Games.
In Lab 1:
output = model(input)
Think about that for a moment.
flowchart LR
A1[("Training Data (X and y)")] --> B{{fit}}
A2[Model Object] --> B
B --> FM[Fitted Model]
FM --> C{{Predict}}
B2[(New data X)] --> C
C --> D[("predicted y's")]
Labels are continuous numbers. Measure error by averaging the differences

Labels are discrete categories (so outputs are probabilities). Measure error by accuracy or partial credit

No explicit labels
A type of unsupervised learning
“I trained a neural net classifier from scratch.”