Machine Learning Strategy Notes
Machine Learning Strategy Notes Notes on the coursera course Structuring Machiene Learning Projects I recently started. Intro Orthogonalisation - varying one hyper parameter affect exactly one metric. Examples of orthogonal hyperparameters: Metric Hyperparameter Fit on training set network size, optimisation algorithm Fit on validation set regularisation, bigger training set Fit on test set bigger validation set Early stopping is not very orthogonal because it affect both training and validation fit. Defining a goal Evaluation metric It is a good practice to have a single number evaluation metric because it makes it easier to compare different models. This might mean combining several evaluation metrics using an average/harmonic mean or other approach. Satisficing evaluation metric Evaluation metric which needs to be only below within a certain interval. As long as the metric is within the specified interval there is no...