Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Breast Cancer Prediction #129

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0b06a48
Chnages updated in new repository
murtaza-sadri-19 Oct 5, 2024
f71a3d4
Merge branch 'yashasvini121:master' into master
murtaza-sadri-19 Oct 5, 2024
e432a1c
App changes added
murtaza-sadri-19 Oct 6, 2024
35e2769
Merge branch 'yashasvini121:master' into master
murtaza-sadri-19 Oct 6, 2024
1d3624c
App.py Updated for Breast Cancer
murtaza-sadri-19 Oct 6, 2024
e4fb37a
Merge branch 'yashasvini121:master' into master
murtaza-sadri-19 Oct 8, 2024
a34433a
Updates pages.json
murtaza-sadri-19 Oct 8, 2024
c01d30e
Changes added
murtaza-sadri-19 Oct 8, 2024
edf0ed1
model_details Added
murtaza-sadri-19 Oct 8, 2024
07ef8d7
Correct form name in pages.json
yashasvini121 Oct 10, 2024
be33e91
Update page_icon in pages.json
yashasvini121 Oct 10, 2024
fe97af0
Fix units in breast_cancer_detection.json
yashasvini121 Oct 10, 2024
a3df141
Update model pickle path in model.py
yashasvini121 Oct 10, 2024
cd5580f
Update form name in Breast_cancer_Detector.py
yashasvini121 Oct 10, 2024
39a9ec2
Updates pages and adopted regular terminology
murtaza-sadri-19 Oct 12, 2024
5327159
Resolved Conflict
murtaza-sadri-19 Oct 12, 2024
11cda4f
Commit Backtrack
murtaza-sadri-19 Oct 12, 2024
17d5580
Merge branch 'yashasvini121:master' into master
murtaza-sadri-19 Oct 12, 2024
852f364
Fix merge issues
yashasvini121 Oct 15, 2024
621ab53
Merge branch 'master' into master
yashasvini121 Oct 15, 2024
7c31fa2
Remove model_details function
yashasvini121 Oct 15, 2024
7be5003
Update saved_model path
yashasvini121 Oct 15, 2024
fd0e2a4
Update pages.json with problem & description
yashasvini121 Oct 15, 2024
5b9abae
-F
murtaza-sadri-19 Oct 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions App.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,28 @@
"""
)

# Breast Cancer Detector Section
with st.expander("Breast Cancer Detector - More Information"):
st.subheader("Introduction")
st.write(
"""
Breast cancer is one of the leading causes of cancer-related deaths in women. Early detection and diagnosis are crucial for effective treatment and survival.
"""
)

# Dataset section
st.subheader("Wisconsin Breast Cancer Dataset (UCI ML Repository)")
st.write(
"""
The dataset contains clinical and histological features from 569 breast cancer tumors, including 357 benign and 212 malignant cases.
"""
)

# Input features section
st.subheader("Additional Variable Information")
st.write(
"""
- **Clump Thickness**: Uniformity of cell size and cell shape.
- **Uniformity of Cell Size**: Uniformity of cell
"""
)
124 changes: 124 additions & 0 deletions form_configs/Breast_cancer_detection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
{
"Breast Cancer Detector Form": {
"Mean Radius": {
"field_name": "mean_radius",
"type": "number"
},
"Mean Texture": {
"field_name": "mean_texture",
"type": "number"
},
"Mean Perimeter": {
"field_name": "mean_perimeter",
"type": "number"
},
"Mean Area": {
"field_name": "mean_area",
"type": "number"
},
"Mean Smoothness": {
"field_name": "mean_smoothness",
"type": "number"
},
"Mean Compactness": {
"field_name": "mean_compactness",
"type": "number"
},
"Mean Concavity": {
"field_name": "mean_concavity",
"type": "number"
},
"Mean Concave Points": {
"field_name": "mean_concave_points",
"type": "number"
},
"Mean Symmetry": {
"field_name": "mean_symmetry",
"type": "number"
},
"Mean Fractal Dimension": {
"field_name": "mean_fractal_dimension",
"type": "number"
},
"Radius Error": {
"field_name": "radius_error",
"type": "number"
},
"Texture Error": {
"field_name": "texture_error",
"type": "number"
},
"Perimeter Error": {
"field_name": "perimeter_error",
"type": "number"
},
"Area Error": {
"field_name": "area_error",
"type": "number"
},
"Smoothness Error": {
"field_name": "smoothness_error",
"type": "number"
},
"Compactness Error": {
"field_name": "compactness_error",
"type": "number"
},
"Concavity Error": {
"field_name": "concavity_error",
"type": "number"
},
"Concave Points Error": {
"field_name": "concave_points_error",
"type": "number"
},
"Symmetry Error": {
"field_name": "symmetry_error",
"type": "number"
},
"Fractal Dimension Error": {
"field_name": "fractal_dimension_error",
"type": "number"
},
"Worst Radius": {
"field_name": "worst_radius",
"type": "number"
},
"Worst Texture": {
"field_name": "worst_texture",
"type": "number"
},
"Worst Perimeter": {
"field_name": "worst_perimeter",
"type": "number"
},
"Worst Area": {
"field_name": "worst_area",
"type": "number"
},
"Worst Smoothness": {
"field_name": "worst_smoothness",
"type": "number"
},
"Worst Compactness": {
"field_name": "worst_compactness",
"type": "number"
},
"Worst Concavity": {
"field_name": "worst_concavity",
"type": "number"
},
"Worst Concave Points": {
"field_name": "worst_concave_points",
"type": "number"
},
"Worst Symmetry": {
"field_name": "worst_symmetry",
"type": "number"
},
"Worst Fractal Dimension": {
"field_name": "worst_fractal_dimension",
"type": "number"
}
}
}
570 changes: 570 additions & 0 deletions models/Breast_Cancer_Detector/data/Breast_cancer_dataset.csv

Large diffs are not rendered by default.

427 changes: 427 additions & 0 deletions models/Breast_Cancer_Detector/data/Processed.csv

Large diffs are not rendered by default.

Loading