SU-CS229 SEP292025
Last edited: September 9, 2025Key Sequence
Review even more! Linear Regression, give some intuition, discuss logistic regression and give an optimization method for it.
Notation
Recall the notation:
- \(\qty(x^{(i)}, y^{(i)})\), ith example
- \(x^{(i)} \in \mathbb{R}^{m+1}\), where \(x_0^{(i)}, \forall i = 1\)
- \(y^{(i)} \in \mathbb{R}\)
\(n\) — number of examples; \(m\) — number of features
New Concepts
Important Results / Claims
Questions
Interesting Factoids
Scratch
SU-MED103 SEP252025
Last edited: September 9, 2025Homo Sapiens are animals that depend on ecosystems. Our social system depends on ecosystems.
Vector Calculus Primer
Last edited: September 9, 2025A primer on Vector Calculus.
trace
constituents
for square \(A \in \mathbb{R}^{m\times m}\), we write:
requirements
\(\text{tr}\qty(A) = \sum_{i}^{} A_{ii}\) is the sum of the diagonals
additional information
properties of traces
\begin{equation} \text{tr}\qty(AB) = \text{tr}\qty(BA) \end{equation}
\begin{equation} \text{tr}\qty(ABC) = \text{tr}\qty(CAB) \end{equation}
\begin{equation} \nabla_{A} \qty [\text{tr}\qty(AB)] = B^{T} \end{equation}
worst-case analysis
Last edited: September 9, 2025As a function of \(n\), what is the runtime of the “worst” input?
- pros: very strong guarantee
- cons: too strong of an upper bound, may have better algorithm for Beyond Worst-Case Analysis
