Diff of /README.md [000000] .. [450719]

Switch to unified view

a b/README.md
1
# Lung Cancer Analyzation Website
2
3
A website that predicts the probability of Patient's Lung Cancer Status according to given 15 Parameters.
4
```
5
'AGE','GENDER', 'ANXIETY','COUGHING', 'SMOKING', 'WHEEZING','YELLOW_FINGERS',
6
'PEER_PRESSURE', 'CHRONIC DISEASE', 'FATIGUE ',
7
'ALCOHOL CONSUMING', 'SHORTNESS OF BREATH','ALLERGY ',
8
'SWALLOWING DIFFICULTY', 'CHEST PAIN' .
9
```
10
Using these parameters output predicts the particular patient is disease or Not.
11
Instructions for Pycharm :
12
1) In project , add the forest html file in the templates folder
13
2) In the static folder add the css and js file for css js elements to work on webpage.Get it from here : https://materializecss.com/getting-started.html
14
15
## Prerequistis for run the System
16
```
17
1) Python 3.7.X >
18
2) Pycharm Community Edition (Optional but Having this Convenient)
19
```
20
## Implementing the System
21
22
1) Training the Lung Cancer notebook with given Csv File
23
```
24
Lung Cancer Prediction.ipynb
25
```
26
2) Create the Pickle file for the Prediction Analysis
27
```
28
Lung_Cancer.pkl
29
```
30
3) Installing Environment requirements
31
```
32
Using requirements.txt
33
```
34
35
## Deployment of the Application
36
1) Run this Command in your cmd for depolyment of flask
37
```
38
python app.py
39
```
40
## UI of the Application
41
![Initial GUI](https://github.com/Pandula1234/Lung-Cancer-Project/blob/main/static/Interface1.PNG)
42
43
## Final Result
44
![Final Result](https://github.com/Pandula1234/Lung-Cancer-Project/blob/main/static/Interface2.PNG)
45
46