SlideShare a Scribd company logo
3
Most read
4
Most read
6
Most read
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
A Machine Learning Model for Average FuelConsumption in Heavy Vehicles
In this paper author is describing concept to predict average fuel consumption in
heavy vehicles using Machine Learning Algorithm such as ANN (Artificial
Neural Networks). To predict fuel consumption author has extracted 7 predictor
features from heavy vehicle dataset such as
num_stops, time_stopped, average_moving_speed,
characteristic_acceleration, aerodynamic_speed_squared, change_
in_kinetic_energy, change_in_potential_energy, class
Above seven features are recorded from each vehicle travel up to 100 kilo
meters like number of times vehicle stop, total stopped time taken etc. All this
values are collected from heavy vehicle and use as dataset to train ANN model.
Below are some value from above seven predictor features.
num_stops, time_stopped, average_moving_speed,
characteristic_acceleration, aerodynamic_speed_squared, change_
in_kinetic_energy, change_in_potential_energy, class
7.0,7.0,93.0,34,8.4,4,25.6,9
7.0,7.0,91.0,34,8.3,4,25.7,9
8.9,8.9,151.0,26,10.9,6,15.1,12
9.3,9.3,160.0,25,11.3,6,13.7,13
8.4,8.4,158.0,25,11.2,6,13.8,13
All bold names are the dataset column names and all double values are the
dataset values for each vehicle. Last column will be consider as class name
which represents fuel consumption for that vehicle. Entire dataset will be used
to train ANN model and whenever we give new record then ANN algorithm will
apply train model on that test record to predict it average fuel consumption.
Below are some test records
num_stops, time_stopped, average_moving_speed,
characteristic_acceleration, aerodynamic_speed_squared, change_
in_kinetic_energy, change_in_potential_energy
7.0,7.0,93.0,34,8.4,4,25.6
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
7.0,7.0,91.0,34,8.3,4,25.7
8.9,8.9,151.0,26,10.9,6,15.1
9.3,9.3,160.0,25,11.3,6,13.7
8.4,8.4,158.0,25,11.2,6,13.8
In above test data class value as fuel consumption is not there and when we
applied this test record on ANN model then ANN will predict fuel consumption
class value for that test record. Entire train and test data available inside
‘dataset’ folder.
The ANN model is developed by using duty cycle’sdataset collected from
asingle truck, with an approximate mass of 8, 700kg exposed to avariety of
transients including both urban and highway traffic inthe Indianapolis area.
Data was collected using the SAE J1939standard for serial control and
communications in heavy dutyvehicle networks.
Abstract
In this paper we used vehicle travel distance rather than the traditional time
period whendeveloping individualized machine learning models for fuel
consumption.This approach is used in conjunction with seven
predictorsderived from vehicle speed and road grade to produce a
highlypredictive neural network model for average fuel consumption inheavy
vehicles. The proposed model can easily be developed anddeployed for each
individual vehicle in a fleet in order to optimizefuel consumption over the
entire fleet. The predictors of the modelare aggregated over fixed window
sizes of distance travelled. Differentwindow sizes are evaluated and the results
show that a 1 kmwindowis able to predict fuel consumptionwith a 0.91
coefficient ofdetermination and mean absolute peak-to-peak percent error
lessthan 4% for routes that include both city and highway duty cyclesegments.
ANN Working Procedure
To demonstrate how to build anANN neural network based image classifier, we
shall build a 6 layer neural network that will identify and separate one image
from other. This network that we shall build is a very small network that we can
run on a CPU as well. Traditional neural networks that are very good at doing
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
image classification have many more parameters and take a lot of time if trained
on normal CPU. However, our objective is to show how to build a real-world
convolutional neural network using TENSORFLOW.
Neural Networks are essentially mathematical models to solve an optimization
problem. They are made of neurons, the basic computation unit of neural
networks. A neuron takes an input (say x), do some computation on it (say:
multiply it with a variable w and adds another variable b) to produce a value
(say; z= wx+b). This value is passed to a non-linear function called activation
function (f) to produce the final output(activation) of a neuron. There are many
kinds of activation functions. One of the popular activation function is Sigmoid.
The neuron which uses sigmoid function as an activation function will be called
sigmoid neuron. Depending on the activation functions, neurons are named and
there are many kinds of them like RELU, TanH.
If you stack neurons in a single line, it’s called a layer; which is the next
building block of neural networks. See below image with layers
To predict image class multiple layers operate on each other to get best match
layer and this process continues till no more improvement left.
Modules Information
This project consists of following modules
Upload Heavy Vehicles Fuel Dataset: Using this module we can upload train
dataset to application. Dataset contains comma separated values.
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
Read Dataset & Generate Model: Using this module we will parse comma
separated dataset and then generate train and test model for ANN from that
dataset values. Dataset will be divided into 80% and 20% format, 80% will be
used to train ANN model and 20% will be used to test ANN model.
Run ANN Algorithm: Using this model we can create ANN object and then
feed train and test data to build ANN model.
Predict Average Fuel Consumption: Using this module we will upload new test
data and then ANN will apply train model on that test data to predict average
fuel consumption for that test records.
Fuel Consumption Graph: Using this module we will plot fuel consumption
graph for each test record.
Screen shots
To run this project double click on ‘run.bat’ file to get below screen
In above screen click on ‘Upload Heavy Vehicles Fuel Dataset’ button to
upload train dataset
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
In above screen uploading ‘Fuel_Dataset.txt’ which can be used to train model.
After uploading dataset will get below screen
Now in above screen click on ‘Read Dataset & Generate Model’ button to read
uploaded dataset and to generate train and test data
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
In above screen we can see total number of records in dataset, number of
records used for training and number for records used for testing. Now click on
‘Run ANN Algorithm’ button to input train and test data to ANN to build ANN
model.
In above black console we can see all ANN processing details, After building
model will get below screen
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
In above screen we got ANN prediction accuracy upto 86%. Now click on
‘Predict Average Fuel Consumption’ button to upload test data and to predict
consumption for test data
After uploading test data will get fuel consumption prediction result in below
screen
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
In above screen we got average fuel consumption for each test record per 100
kilo meter. Now click on ‘Fuel Consumption Graph’ to view below graph
In above graph x-axis represents test record number as vehicle id and y-axis
represents fuel consumption for that record.
Venkat Java Projects
Mobile:+91 9966499110
Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com
Conclusion: Using this paper and ANN algorithm we are predicting fuel
consumption for test data

More Related Content

PPTX
AI in Autonomous Vehicles
PDF
Artificial Neural Network Paper Presentation
PDF
Automatic Train collision and Accident Avoidance system
PPTX
Object classification using CNN & VGG16 Model (Keras and Tensorflow)
PDF
Quantum Networks
PPTX
Development of wearable object detection system & blind stick for visuall...
PDF
Movie recommendation project
PPTX
Railway Industrial Training
AI in Autonomous Vehicles
Artificial Neural Network Paper Presentation
Automatic Train collision and Accident Avoidance system
Object classification using CNN & VGG16 Model (Keras and Tensorflow)
Quantum Networks
Development of wearable object detection system & blind stick for visuall...
Movie recommendation project
Railway Industrial Training

What's hot (20)

PPTX
Breast cancer diagnosis machine learning ppt
PPTX
Major project presentation
DOCX
Unit v
PPTX
Image classification using CNN
PPTX
Recurrent Neural Network (RNN) | RNN LSTM Tutorial | Deep Learning Course | S...
PPTX
Robocop final year project presentation by Abhimanyu Kumar
PPTX
fog computing ppt
PPTX
Image classification using convolutional neural network
PPTX
indian railways Presentation .
PDF
Driver Drowsiness Detection report
PDF
Project report on wireless based traffic control for emergency vehicle
PPTX
Railway Accident Avoiding System: A Safety Measure
PPTX
Seminar ppt fog comp
PPTX
Brain Tumour Detection.pptx
PPTX
Intelligent Traffic Light control using Embedded Systems
PPTX
Autonomous and electric vehicles
PDF
Women Safety Night Patrolling Robot Using IOT
PDF
Project report for railway security monotorin system
PPTX
Machine Learning Using Python
PPTX
human activity recognition using smartphones.pptx
Breast cancer diagnosis machine learning ppt
Major project presentation
Unit v
Image classification using CNN
Recurrent Neural Network (RNN) | RNN LSTM Tutorial | Deep Learning Course | S...
Robocop final year project presentation by Abhimanyu Kumar
fog computing ppt
Image classification using convolutional neural network
indian railways Presentation .
Driver Drowsiness Detection report
Project report on wireless based traffic control for emergency vehicle
Railway Accident Avoiding System: A Safety Measure
Seminar ppt fog comp
Brain Tumour Detection.pptx
Intelligent Traffic Light control using Embedded Systems
Autonomous and electric vehicles
Women Safety Night Patrolling Robot Using IOT
Project report for railway security monotorin system
Machine Learning Using Python
human activity recognition using smartphones.pptx
Ad

Similar to A machine learning model for average fuel consumption in heavy vehicles (20)

PDF
IRJET-Survey on Simulation of Self-Driving Cars using Supervised and Reinforc...
PDF
Neural Net: Machine Learning Web Application
DOCX
Dynamic autoselection and autotuning of machine learning models forcloud netw...
PDF
IRJET- Self-Driving Cars: Automation Testing using Udacity Simulator
PDF
IRJET- Portable Automated Test System for Automotive Industry
PDF
Intelligent Systems Project: Bike sharing service modeling
PDF
Data Mining Techniques using WEKA_Saurabh Singh_10BM60082
DOCX
Traffic sign detection and recognition
PDF
IRJET - Steering Wheel Angle Prediction for Self-Driving Cars
PDF
Application and evaluation of the neural network in gearbox
PDF
Performance Analysis of multithreaded applications based on Hardware Simulati...
PDF
Implementation of Automatic Upper Dipper in Car Dashboard using CANoe
PDF
Predicting Steering Angle for Self Driving Vehicles
PDF
IRJET- Machine Learning Techniques for Code Optimization
PDF
pio_present
PPTX
Post Graduate in AI PPT.pptx
PDF
Project_Overview_ecopy
PDF
Self Driving Car
PDF
ECU software abnormal behavior detection based on Mahalanobis taguchi technique
PDF
Improving_programming_skills_of_Mechanical_Enginee.pdf
IRJET-Survey on Simulation of Self-Driving Cars using Supervised and Reinforc...
Neural Net: Machine Learning Web Application
Dynamic autoselection and autotuning of machine learning models forcloud netw...
IRJET- Self-Driving Cars: Automation Testing using Udacity Simulator
IRJET- Portable Automated Test System for Automotive Industry
Intelligent Systems Project: Bike sharing service modeling
Data Mining Techniques using WEKA_Saurabh Singh_10BM60082
Traffic sign detection and recognition
IRJET - Steering Wheel Angle Prediction for Self-Driving Cars
Application and evaluation of the neural network in gearbox
Performance Analysis of multithreaded applications based on Hardware Simulati...
Implementation of Automatic Upper Dipper in Car Dashboard using CANoe
Predicting Steering Angle for Self Driving Vehicles
IRJET- Machine Learning Techniques for Code Optimization
pio_present
Post Graduate in AI PPT.pptx
Project_Overview_ecopy
Self Driving Car
ECU software abnormal behavior detection based on Mahalanobis taguchi technique
Improving_programming_skills_of_Mechanical_Enginee.pdf
Ad

More from Venkat Projects (20)

DOCX
1.AUTOMATIC DETECTION OF DIABETIC RETINOPATHY USING CNN.docx
DOCX
12.BLOCKCHAIN BASED MILK DELIVERY PLATFORM FOR STALLHOLDER DAIRY FARMERS IN K...
DOCX
10.ATTENDANCE CAPTURE SYSTEM USING FACE RECOGNITION.docx
DOCX
9.IMPLEMENTATION OF BLOCKCHAIN IN FINANCIAL SECTOR TO IMPROVE SCALABILITY.docx
DOCX
8.Geo Tracking Of Waste And Triggering Alerts And Mapping Areas With High Was...
DOCX
Image Forgery Detection Based on Fusion of Lightweight Deep Learning Models.docx
DOCX
6.A FOREST FIRE IDENTIFICATION METHOD FOR UNMANNED AERIAL VEHICLE MONITORING ...
DOCX
WATERMARKING IMAGES
DOCX
4.LOCAL DYNAMIC NEIGHBORHOOD BASED OUTLIER DETECTION APPROACH AND ITS FRAMEWO...
DOCX
Application and evaluation of a K-Medoidsbased shape clustering method for an...
DOCX
OPTIMISED STACKED ENSEMBLE TECHNIQUES IN THE PREDICTION OF CERVICAL CANCER US...
DOCX
1.AUTOMATIC DETECTION OF DIABETIC RETINOPATHY USING CNN.docx
DOCX
2022 PYTHON MAJOR PROJECTS LIST.docx
DOCX
2022 PYTHON PROJECTS LIST.docx
DOCX
2021 PYTHON PROJECTS LIST.docx
DOCX
2021 python projects list
DOCX
10.sentiment analysis of customer product reviews using machine learni
DOCX
9.data analysis for understanding the impact of covid–19 vaccinations on the ...
DOCX
6.iris recognition using machine learning technique
DOCX
5.local community detection algorithm based on minimal cluster
1.AUTOMATIC DETECTION OF DIABETIC RETINOPATHY USING CNN.docx
12.BLOCKCHAIN BASED MILK DELIVERY PLATFORM FOR STALLHOLDER DAIRY FARMERS IN K...
10.ATTENDANCE CAPTURE SYSTEM USING FACE RECOGNITION.docx
9.IMPLEMENTATION OF BLOCKCHAIN IN FINANCIAL SECTOR TO IMPROVE SCALABILITY.docx
8.Geo Tracking Of Waste And Triggering Alerts And Mapping Areas With High Was...
Image Forgery Detection Based on Fusion of Lightweight Deep Learning Models.docx
6.A FOREST FIRE IDENTIFICATION METHOD FOR UNMANNED AERIAL VEHICLE MONITORING ...
WATERMARKING IMAGES
4.LOCAL DYNAMIC NEIGHBORHOOD BASED OUTLIER DETECTION APPROACH AND ITS FRAMEWO...
Application and evaluation of a K-Medoidsbased shape clustering method for an...
OPTIMISED STACKED ENSEMBLE TECHNIQUES IN THE PREDICTION OF CERVICAL CANCER US...
1.AUTOMATIC DETECTION OF DIABETIC RETINOPATHY USING CNN.docx
2022 PYTHON MAJOR PROJECTS LIST.docx
2022 PYTHON PROJECTS LIST.docx
2021 PYTHON PROJECTS LIST.docx
2021 python projects list
10.sentiment analysis of customer product reviews using machine learni
9.data analysis for understanding the impact of covid–19 vaccinations on the ...
6.iris recognition using machine learning technique
5.local community detection algorithm based on minimal cluster

Recently uploaded (20)

PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PDF
Insiders guide to clinical Medicine.pdf
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Basic Mud Logging Guide for educational purpose
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PDF
Classroom Observation Tools for Teachers
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
master seminar digital applications in india
PDF
Complications of Minimal Access Surgery at WLH
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
STATICS OF THE RIGID BODIES Hibbelers.pdf
Microbial diseases, their pathogenesis and prophylaxis
O5-L3 Freight Transport Ops (International) V1.pdf
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Insiders guide to clinical Medicine.pdf
PPH.pptx obstetrics and gynecology in nursing
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Basic Mud Logging Guide for educational purpose
Renaissance Architecture: A Journey from Faith to Humanism
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
Classroom Observation Tools for Teachers
102 student loan defaulters named and shamed – Is someone you know on the list?
master seminar digital applications in india
Complications of Minimal Access Surgery at WLH
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Supply Chain Operations Speaking Notes -ICLT Program
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...

A machine learning model for average fuel consumption in heavy vehicles

  • 1. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com A Machine Learning Model for Average FuelConsumption in Heavy Vehicles In this paper author is describing concept to predict average fuel consumption in heavy vehicles using Machine Learning Algorithm such as ANN (Artificial Neural Networks). To predict fuel consumption author has extracted 7 predictor features from heavy vehicle dataset such as num_stops, time_stopped, average_moving_speed, characteristic_acceleration, aerodynamic_speed_squared, change_ in_kinetic_energy, change_in_potential_energy, class Above seven features are recorded from each vehicle travel up to 100 kilo meters like number of times vehicle stop, total stopped time taken etc. All this values are collected from heavy vehicle and use as dataset to train ANN model. Below are some value from above seven predictor features. num_stops, time_stopped, average_moving_speed, characteristic_acceleration, aerodynamic_speed_squared, change_ in_kinetic_energy, change_in_potential_energy, class 7.0,7.0,93.0,34,8.4,4,25.6,9 7.0,7.0,91.0,34,8.3,4,25.7,9 8.9,8.9,151.0,26,10.9,6,15.1,12 9.3,9.3,160.0,25,11.3,6,13.7,13 8.4,8.4,158.0,25,11.2,6,13.8,13 All bold names are the dataset column names and all double values are the dataset values for each vehicle. Last column will be consider as class name which represents fuel consumption for that vehicle. Entire dataset will be used to train ANN model and whenever we give new record then ANN algorithm will apply train model on that test record to predict it average fuel consumption. Below are some test records num_stops, time_stopped, average_moving_speed, characteristic_acceleration, aerodynamic_speed_squared, change_ in_kinetic_energy, change_in_potential_energy 7.0,7.0,93.0,34,8.4,4,25.6
  • 2. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com 7.0,7.0,91.0,34,8.3,4,25.7 8.9,8.9,151.0,26,10.9,6,15.1 9.3,9.3,160.0,25,11.3,6,13.7 8.4,8.4,158.0,25,11.2,6,13.8 In above test data class value as fuel consumption is not there and when we applied this test record on ANN model then ANN will predict fuel consumption class value for that test record. Entire train and test data available inside ‘dataset’ folder. The ANN model is developed by using duty cycle’sdataset collected from asingle truck, with an approximate mass of 8, 700kg exposed to avariety of transients including both urban and highway traffic inthe Indianapolis area. Data was collected using the SAE J1939standard for serial control and communications in heavy dutyvehicle networks. Abstract In this paper we used vehicle travel distance rather than the traditional time period whendeveloping individualized machine learning models for fuel consumption.This approach is used in conjunction with seven predictorsderived from vehicle speed and road grade to produce a highlypredictive neural network model for average fuel consumption inheavy vehicles. The proposed model can easily be developed anddeployed for each individual vehicle in a fleet in order to optimizefuel consumption over the entire fleet. The predictors of the modelare aggregated over fixed window sizes of distance travelled. Differentwindow sizes are evaluated and the results show that a 1 kmwindowis able to predict fuel consumptionwith a 0.91 coefficient ofdetermination and mean absolute peak-to-peak percent error lessthan 4% for routes that include both city and highway duty cyclesegments. ANN Working Procedure To demonstrate how to build anANN neural network based image classifier, we shall build a 6 layer neural network that will identify and separate one image from other. This network that we shall build is a very small network that we can run on a CPU as well. Traditional neural networks that are very good at doing
  • 3. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com image classification have many more parameters and take a lot of time if trained on normal CPU. However, our objective is to show how to build a real-world convolutional neural network using TENSORFLOW. Neural Networks are essentially mathematical models to solve an optimization problem. They are made of neurons, the basic computation unit of neural networks. A neuron takes an input (say x), do some computation on it (say: multiply it with a variable w and adds another variable b) to produce a value (say; z= wx+b). This value is passed to a non-linear function called activation function (f) to produce the final output(activation) of a neuron. There are many kinds of activation functions. One of the popular activation function is Sigmoid. The neuron which uses sigmoid function as an activation function will be called sigmoid neuron. Depending on the activation functions, neurons are named and there are many kinds of them like RELU, TanH. If you stack neurons in a single line, it’s called a layer; which is the next building block of neural networks. See below image with layers To predict image class multiple layers operate on each other to get best match layer and this process continues till no more improvement left. Modules Information This project consists of following modules Upload Heavy Vehicles Fuel Dataset: Using this module we can upload train dataset to application. Dataset contains comma separated values.
  • 4. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com Read Dataset & Generate Model: Using this module we will parse comma separated dataset and then generate train and test model for ANN from that dataset values. Dataset will be divided into 80% and 20% format, 80% will be used to train ANN model and 20% will be used to test ANN model. Run ANN Algorithm: Using this model we can create ANN object and then feed train and test data to build ANN model. Predict Average Fuel Consumption: Using this module we will upload new test data and then ANN will apply train model on that test data to predict average fuel consumption for that test records. Fuel Consumption Graph: Using this module we will plot fuel consumption graph for each test record. Screen shots To run this project double click on ‘run.bat’ file to get below screen In above screen click on ‘Upload Heavy Vehicles Fuel Dataset’ button to upload train dataset
  • 5. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com In above screen uploading ‘Fuel_Dataset.txt’ which can be used to train model. After uploading dataset will get below screen Now in above screen click on ‘Read Dataset & Generate Model’ button to read uploaded dataset and to generate train and test data
  • 6. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com In above screen we can see total number of records in dataset, number of records used for training and number for records used for testing. Now click on ‘Run ANN Algorithm’ button to input train and test data to ANN to build ANN model. In above black console we can see all ANN processing details, After building model will get below screen
  • 7. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com In above screen we got ANN prediction accuracy upto 86%. Now click on ‘Predict Average Fuel Consumption’ button to upload test data and to predict consumption for test data After uploading test data will get fuel consumption prediction result in below screen
  • 8. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com In above screen we got average fuel consumption for each test record per 100 kilo meter. Now click on ‘Fuel Consumption Graph’ to view below graph In above graph x-axis represents test record number as vehicle id and y-axis represents fuel consumption for that record.
  • 9. Venkat Java Projects Mobile:+91 9966499110 Visit:www.venkatjavaprojects.com Email:venkatjavaprojects@gmail.com Conclusion: Using this paper and ANN algorithm we are predicting fuel consumption for test data