-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
30375ae
commit d1f92b0
Showing
22 changed files
with
6,256 additions
and
0 deletions.
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
Machine_Learning/Personalised Workout Recommendation System/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Personalized Workout Recommendation system | ||
|
||
## Table of Contents | ||
|
||
- [Introduction](#introduction) | ||
|
||
- [Features](#features) | ||
- [Getting Started](#getting-started) | ||
- [Prerequisites](#prerequisites) | ||
- [Installation](#installation) | ||
- [Technologies Used](#technologies-used) | ||
|
||
## Features | ||
|
||
- **Personalized Workout Plans**: Create customized workout plans tailored to individual fitness goals, preferences, and available time. | ||
|
||
- **AI-Generated Recommendations**: Utilize AI-powered algorithms to receive workout recommendations that adapt and evolve as you progress. | ||
|
||
- **Responsive Design**: Enjoy a seamless experience across devices, including desktops, tablets, and mobile phones. | ||
|
||
- **Integration with OpenAI**: Access the OpenAI API to enhance workout recommendations and guidance. | ||
|
||
## Getting Started | ||
|
||
Follow these steps to set up and run the AI-Powered Workout Application locally. | ||
|
||
### Prerequisites | ||
|
||
Ensure you have the following prerequisites installed on your system: | ||
|
||
- [Node.js](https://nodejs.org/) | ||
- [npm](https://www.npmjs.com/) or [Yarn](https://yarnpkg.com/) | ||
|
||
### Installation | ||
|
||
1. Clone the repository: | ||
|
||
```bash | ||
git clone https://github.com/manishtmtmt/ai-powered-workout-plan.git | ||
``` | ||
|
||
2. Navigate to the project directory: | ||
|
||
```bash | ||
cd ai-powered-workout-plan | ||
``` | ||
|
||
3. Install dependencies: | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
4. Start the server: | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
## Technologies Used | ||
|
||
The AI-Powered Workout Application is built with the following technologies: | ||
|
||
- React | ||
- Redux Toolkit | ||
- React Router DOM | ||
- OpenAI API | ||
- Material UI |
13 changes: 13 additions & 0 deletions
13
Machine_Learning/Personalised Workout Recommendation System/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Personalised Workout Recommendation System </title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.