from sklearn.model_selection import cross_validate,cross_val_predict
from sklearn import linear_model
from sklearn.tree import DecisionTreeRegressor
from sklearn.ensemble import RandomForestRegressor
from xgboost import XGBRegressor
trainingCols=train_set.drop(columns=‘cnt’,axis=1)
trainingLabels=train_set[‘cnt’]
Error “cross_val_score not imported”