CISC 484/684 – Introduction to Machine Learning
June 10, 2025
Upon successful completion of this course, you should be able to:
Component | Count | Weight | Notes |
---|---|---|---|
Homework | 4 | 48% | 12% each. Late policy applies. |
Knowledge Checks | 6 | 12% | 2% each. In-class. |
Midterm Exam | 1 | 20% | Covers first half. |
Final Exam | 1 | 20% | Covers second half. |
Total | 100% |
Why study “Introduction to Machine Learning”, especially in the era of LLMs? Please answer in one sentence.
Because an intro ML course grounds you in core ideas—data representations, training objectives, optimization, generalization—that demystify LLMs and give you the conceptual tools to critique, adapt, and push such advanced models further instead of treating them as black-box magic.
learning from data (experience)
Data is complex.
Input (X) | Function f() | Output (Y) |
---|---|---|
![]() |
Image Classifier | "cat" |
Play Audio | Speech to Text | "We will make America great again!" |
A girl playing with a dog in a grassy field | Generative Model | ![]() |
High dimensional vectors
A learning example is a vector of length d
Examples drawn from an underlying distribution \[ x_i\in\mathbb{R}^d \]
Each dimension represents a feature
A collection of N examples \[ D=\{x_i\}_{i=1}^N \]
Suppose you’re building a spam email classifier:
These features help the model distinguish between spam and legitimate messages.
What are you most excited about?