Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 18, 2021 07:24 am GMT

Implementing Machine Learning steps using Regression Model.

From our previous article we looked at the machine learning steps. Lets now have a look at how to implement a machine learning model using Python.

The dataset used is collected from kaggle.

We will be able to predict the insurance amount for a person.

  • We start by importing necessary modules as shown:
import pandas as pdfrom sklearn.preprocessing import LabelEncoderfrom sklearn.model_selection import train_test_splitfrom sklearn.linear_model import LinearRegressionfrom sklearn.metrics import accuracy_score
  • Then import the data.
data=pd.read_csv('insurance.csv')data

Screenshot (37)

  • Clean the data by removing duplicate values and transform the columns into numerical values to make the easier to work with.
label=LabelEncoder()label.fit(data.sex.drop_duplicates())data.sex=label.transform(data.sex)label.fit(data.smoker.drop_duplicates())data.smoker=label.transform(data.smoker)label.fit(data.region.drop_duplicates())data.region=label.transform(data.region)data

The final dataset is as shown below;
Screenshot (38)

  • Using the cleaned dataset, now split it into training and test sets.
X=data.drop(['charges'], axis=1)y=data[['charges']]X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.33, random_state=42)
  • After splitting the model choose the suitable algorithm. In this case we will use Linear Regression since we need to predict a numerical value based on some parameters.
model=LinearRegression())model.fit(X_train,y_train)
  • Now predict the testing dataset and find how accurate your predictions are.

Screenshot (39)

  • Accuracy score is predicted as follows:

Screenshot (40)

  • parameter tuningLets find the hyperparameters which affect various variables in the dataset.

Screenshot (41)


Original Link: https://dev.to/phylis/implementing-machine-learning-steps-using-regression-model-4954

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To