https://github.com/hossein-rahmati/fuel-efficiency
This project focused on predicting vehicle fuel efficiency using machine learning techniques. It utilizes the classic Auto MPG dataset, which includes various vehicle attributes such as engine size, horsepower, weight, and miles per gallon (MPG).
https://github.com/hossein-rahmati/fuel-efficiency
deep-learning neural-network python tensorflow
Last synced: about 2 months ago
JSON representation
This project focused on predicting vehicle fuel efficiency using machine learning techniques. It utilizes the classic Auto MPG dataset, which includes various vehicle attributes such as engine size, horsepower, weight, and miles per gallon (MPG).
- Host: GitHub
- URL: https://github.com/hossein-rahmati/fuel-efficiency
- Owner: hossein-rahmati
- License: mit
- Created: 2025-05-21T09:29:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-21T09:40:10.000Z (about 1 year ago)
- Last Synced: 2025-10-04T20:14:00.497Z (9 months ago)
- Topics: deep-learning, neural-network, python, tensorflow
- Language: Jupyter Notebook
- Homepage:
- Size: 108 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fuel Efficiency Prediction
This repository contains a machine learning project focused on predicting vehicle fuel efficiency (measured in miles per gallon, MPG) using the classic Auto MPG dataset. The project walks through the entire data science workflow and trains a Deep learning Model, including data preprocessing, exploratory data analysis, model training, and evaluation.
## Dataset
The dataset used is the [Auto MPG dataset](https://archive.ics.uci.edu/ml/datasets/auto+mpg) from the UCI Machine Learning Repository. It includes the following features:
- `mpg`: Miles per gallon (target variable)
- `cylinders`: Number of cylinders
- `displacement`: Engine displacement
- `horsepower`: Engine horsepower
- `weight`: Vehicle weight
- `acceleration`: Time to accelerate from 0 to 60 mph
- `model year`: Year of manufacture
- `origin`: Region of origin
- `car name`: Vehicle name (string, often excluded in modeling)
This open-source project is available under the [MIT License](https://github.com/hossein-rahmati/Fuel-Fuel-Efficiency/blob/main/LICENSE).