In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
SVR()
"
+ ]
+ },
+ "metadata": {},
+ "execution_count": 8
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "4YOj1wVjerek"
+ },
+ "source": [
+ "### *Prediction for all test data for validation*\n",
+ "### *SSres is the sum of squares of the residual errors.*\n",
+ "### *SStot is the total sum of the errors.*\n",
+ "# "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "mt_Z7EDqWhdB",
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "outputId": "869e495f-65a3-43e1-c195-e201aad9217f"
+ },
+ "source": [
+ "ypred = model.predict(x_test)\n",
+ "\n",
+ "from sklearn.metrics import r2_score,mean_squared_error\n",
+ "mse = mean_squared_error(y_test,ypred)\n",
+ "rmse=np.sqrt(mse)\n",
+ "print(\"Root Mean Square Error:\",rmse)\n",
+ "r2score = r2_score(y_test,ypred)\n",
+ "print(\"R2Score\",r2score*100)"
+ ],
+ "execution_count": 9,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "name": "stdout",
+ "text": [
+ "Root Mean Square Error: 2.3594718844452056\n",
+ "R2Score 86.64242653738367\n"
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file