利用sklearn中的支持向量机回归模型(linear,poly,rbf三种核)对boston房价进行预测并作出评估
fromsklearn.datasetsimportload_bostonboston=load_boston()print(boston.DESCR)importnumpyaspdx=boston.datay=boston.targetfromsklearn.model_selectionimporttrain_test_splitx_train,x_test,y_train,y_test=tr