Git Product home page Git Product logo

basic-nn-model's Introduction

Developing a Neural Network Regression Model

AIM

To develop a neural network regression model for the given dataset.

THEORY

Neural networks consist of simple input/output units called neurons. In this article, we will see how neural networks can be applied to regression problems.

Regression helps in establishing a relationship between a dependent variable and one or more independent variables. Although neural networks are complex and computationally expensive, they are flexible and can dynamically pick the best type of regression, and if that is not enough, hidden layers can be added to improve prediction.

Build your training and test set from the dataset, here we are making the neural network two hidden layer with activation layer as relu and with their nodes in them. Now we will fit our dataset and then predict the value.

Neural Network Model

image

DESIGN STEPS

STEP 1:

Loading the dataset

STEP 2:

Split the dataset into training and testing

STEP 3:

Create MinMaxScalar object, fit the model and transform the data.

STEP 4:

Build the Neural Network Model and compile the model.

STEP 5:

Train the model with the training data.

STEP 6:

Plot the performance plot

STEP 7:

Evaluate the model with the testing data.

PROGRAM

# Name            : Venkatesh E
# Register Number : 212221230119
### Importing Modules
from google.colab import auth
import gspread
from google.auth import default

import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import MinMaxScaler
import matplotlib.pyplot as plt

from tensorflow.keras.models import Sequential as Seq
from tensorflow.keras.layers import Dense as Den
from tensorflow.keras.metrics import RootMeanSquaredError as rmse

### Authenticate &  Create Dataframe using Data in Sheets
auth.authenticate_user()
creds, _ = default()
gc = gspread.authorize(creds)

sheet = gc.open('Dataset 1.0').sheet1 
rows = sheet.get_all_values()

df = pd.DataFrame(rows[1:], columns=rows[0])
df = df.astype({'Input':'float'})
df = df.astype({'Output':'float'})
df.head()

### Assign X and Y values
x=df[['Input']].values
y=df[['Output']].values

x
y

### Normalize the values & Split the 
x_train,x_test,y_train,y_test = train_test_split(x_n,y,test_size = 0.3,random_state = 1)

scaler=MinMaxScaler()
scaler.fit(xtrain)

xtrain1=scaler.transform(xtrain)

### Create a Neural Network & Train it
model_1_0=Sequential([
    Dense(8,activation='relu'),
    Dense(15,activation='relu'),
    Dense(1)
])

ai.compile(optimizer = 'rmsprop',loss = 'mse')

model_1_0.fit(xtrain1,ytrain,epochs=3000)

### Plot the Loss
loss=pd.DataFrame(model_1_0.history.history)
loss.plot()

### Evaluate the model
xtest1=scaler.transform(xtest)
model_1_0.evaluate(xtest1,ytest)

### Predict for some value
xn1=[[4]]
xn1_1=scaler.transform(xn1)
model_1_0.predict(xn1_1)

Dataset Information

image

OUTPUT

Training Loss Vs Iteration Plot

image

Test Data Root Mean Squared Error

image

New Sample Data Prediction

image

RESULT

Thus a neural network regression model for the given dataset is written and executed successfully

basic-nn-model's People

Contributors

venkatigi avatar joeljebitto avatar obedotto avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.