๐ -> 05/06/25: ECS189G-L6
๐ค Vocab
โ Unit and Larger Context
This class has 5 stages:
- DL Background
- DL Prelims
- DL for Image
- DL for Test
- DL for graph
โ๏ธ -> Scratch Notes
Project Code Architecture
- Data Loading (from files or DB)
- Method Running (based on loaded data)
- Result Evaluation (based on output from methods)
- Result Saving (output from Method/Evaluation)
- Experiment Setting (data input route, method type, evaluation metric, output route, data flow, parameter setting, train/test partition, etc.)

Writing Code
Classes
- dataset (base class) -> DatasetLoader (concrete class for loading data)
- method (base class) -> MethodSVM (concrete class for running SVM model)
- result (base class) -> Result (concrete class for result saving)
- evaluate (base class) -> EvaluationAccuracy (concrete class for Accuracy metric)
- setting (base class) -> SettingCV (concrete class for k-fold Cross Validation)
Read the examples he provides
He goes over how to inherit, properly link classes together, and pass data
๐งช -> Refresh the Info
Did you generally find the overall content understandable or compelling or relevant or not, and why, or which aspects of the reading were most novel or challenging for you and which aspects were most familiar or straightforward?)
Did a specific aspect of the reading raise questions for you or relate to other ideas and findings youโve encountered, or are there other related issues you wish had been covered?)
๐ -> Links
Resources
- Put useful links here
Connections
- Link all related words