#the hyperparameter matrix stores the MSE values for all the combination of gamma and C parameters
#IMPORTANT: here the dataset used for the solution combination techniques is selected
#In order to use the same training samples as the classical model the same dataset used for training is also used for the solutions combination techniques
#this is done by setting the variable same_validation to True
#To use a different dataset for the solutions combinations techniques same_validation should be set to False and the dataset should be initialized in the desired way
#For the scope of this work the same dataset used for training has been used for the solutions combination techniques in order to keep the same number of samples for both classical and quantum implementations
ifsame_validation==True:
X_comb=X_train
Y_comb=Y_train
#%%
#Here the SVR is initialized using the hyperparameters determined in the previous validation