This example creates x training and test points, but loads y training results
x_train = np.linspace(0.03,0.5,num = 20)
x_test = np.linspace(0.03,0.5,num = 200)
y_train = np.loadtxt("Data/honda_y_train.txt")
Note that the files Data/honda_x_train.txt and Data/honda_x_test.txt do exist. Should the notebook load the x values from those files? Review use of Data/2d_*_test.txt files at the same time?
This example creates
xtraining and test points, but loadsytraining resultsNote that the files
Data/honda_x_train.txtandData/honda_x_test.txtdo exist. Should the notebook load the x values from those files? Review use ofData/2d_*_test.txtfiles at the same time?