Update medicine_recommendation_system.py
Browse files
medicine_recommendation_system.py
CHANGED
@@ -1,20 +1,3 @@
|
|
1 |
-
# -*- coding: utf-8 -*-
|
2 |
-
"""Medicine Recommendation System.ipynb
|
3 |
-
|
4 |
-
Automatically generated by Colab.
|
5 |
-
|
6 |
-
Original file is located at
|
7 |
-
https://colab.research.google.com/drive/14_xuicBiGfCSaq81L12iVQ2rMCUTxXHC
|
8 |
-
|
9 |
-
# Title: Personalized Medical Recommendation System with Machine Learning
|
10 |
-
|
11 |
-
# Description:
|
12 |
-
|
13 |
-
Welcome to our cutting-edge Personalized Medical Recommendation System, a powerful platform designed to assist users in understanding and managing their health. Leveraging the capabilities of machine learning, our system analyzes user-input symptoms to predict potential diseases accurately.
|
14 |
-
|
15 |
-
# load dataset & tools
|
16 |
-
"""
|
17 |
-
|
18 |
import pandas as pd
|
19 |
|
20 |
dataset = pd.read_csv('Training.csv')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import pandas as pd
|
2 |
|
3 |
dataset = pd.read_csv('Training.csv')
|