Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Implement the function grid _ search, which takes in a training set xTr , yTr , a validation set xVal, yVal and a list of
Implement the function gridsearch, which takes in a training set xTr yTr a validation set xVal, yVal and a list of tree depth candidates depths. Your job here is to fit a regression tree for each depth candidate on the training set xTr yTr evaluate the fitted tree on the validation set xVal, yVal, and then pick the candidate that yields the lowest loss for the validation set.
Implementation Notes:
Use the squareloss function to calculate the training and validation loss for corresponding predictions against true labels yTr and yVal respectively.
In the event of a tie, return the depth that appears first in depths list npargmin on the list of validation losses will give you the first index in case of a tie
def gridsearchxTr yTr xVal, yVal, depths:
Calculates the training and validation loss for trees trained on xTr and validated on yTr with a number of depths.
Input:
xTr: nxd training data matrix
yTr: ndimensional vector of training labels
xVal: mxd validation data matrix
yVal: mdimensional vector of validation labels
depths: a list of len k of depths
Output:
bestdepth, traininglosses, validationlosses
bestdepth: the depth that yields that lowest validation loss
traininglosses: a list of len k the ith entry corresponds to the the training loss of the tree of depthdepthsi
validationlosses: a list of len k the ith entry corresponds to the the validation loss of the tree of depthdepthsi
traininglosses
validationlosses
bestdepth None
# YOUR CODE HERE
raise NotImplementedError
return bestdepth, traininglosses, validationlosses
We need to replace # YOUR CODE HERE
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started