You are on page 1of 9

OPEN SOURCE SOFTWARE LAB

PROJECT REPORT

TOPIC:CALORIE BURNT PREDICTION

Submitted By: Submitted to:

Rachit 21103089
Mohit Yadav(21103091 Dr.Alka Singhal
Introduction:

Calorie burnt prediction is a machine learning task that aims to estimate the number of
calories a person has burnt during a workout based on some biological and physical
measures. Some of the common features used for this task are age, height, weight,
duration, heart rate, and body temperature.

There are different machine learning algorithms that can be used for this task, such as
XGBoost. These algorithms can be implemented in Python using libraries such as
pandas, numpy, sklearn, and xgboost.

Software Used:

- Programming Language: Python


- Libraries :scikit-learn, pandas, numpy, matplotlib, seaborn
- IDE: Jupyter Notebook

Libraries included

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn.model_selection import train_test_split
from xgboost import XGBRegressor
from sklearn import metrics
Code:
References:

● https://www.geeksforgeeks.org/
● https://www.kaggle.com/
● https://www.tutorialspoint.com/index.htm
● https://chat.openai.com/auth/login

You might also like