SU-CS238V MAR062025
Last edited: August 8, 2025Pathway to acceptance
- engineering development
- limitations of change request
- NN testing
- open loop testing
- sims
- track testing
- shadow mode
- real world testing
- wave1 user problems
- rollout metrics
why end to end system?
- human values is hard to codify
- the interfaces betteen observation and action isn’t wel defined
- can scale to handle long tail problems
- homogeneous compute + known latency
how to support data collection for corner cases?
- small NNs that trigger data collection for specific problems
- user intervention
- large change in state space
Two Problems with Alignment
- underspecification: specs are non-exhaustive
- overgeneralization: specs are non-restrictive
SU-CS238V PeerReviews
Last edited: August 8, 2025SU-CS239 JAN092023
Last edited: August 8, 2025Tips
SU-CS239 Midterm 1
Last edited: August 8, 2025Of course I’m not committing my midterm.
SU-CS242 DEC032024
Last edited: August 8, 2025array programing
“collection-oriented programming”—
- precise programs with bulk operations over the whole collection—the iteration structures/accesses are spelt out much more explicitly (i.e. not to use general structures like for loops as a crutch): iteration patterns are baked into the language
- performance: leaving the details of parallelism to your hardware
array programmings are easy to optimize
Lifting for loops is hard; but: \(\qty(\text{map } f) \cdot \qty(\text{map } g) = \text{map } \qty(f \cdot g)\). This is, notably, not true if your functions \(f\) and \(g\) are not pure (i.e. they have state or can throw exceptions); for instance, \(f\) crashes up front and \(g\) crashes in the end, then, the crashed error is different between the first and second method of evaluation.
