Update app.py
Browse files
app.py
CHANGED
|
@@ -1,27 +1,43 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
st.set_page_config(
|
| 4 |
-
page_title="
|
| 5 |
-
page_icon="
|
| 6 |
)
|
| 7 |
|
| 8 |
-
st.title("
|
| 9 |
-
st.write("
|
| 10 |
-
st.write("
|
|
|
|
| 11 |
|
| 12 |
st.header("How does this app work?")
|
| 13 |
st.write("""
|
|
|
|
|
|
|
|
|
|
| 14 |
""")
|
| 15 |
|
| 16 |
st.subheader("How to use this app?")
|
| 17 |
st.markdown("""
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
""")
|
| 19 |
|
| 20 |
st.sidebar.info("Please select a page above 👆")
|
| 21 |
|
| 22 |
st.sidebar.write("""
|
| 23 |
### Background
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
### The Problem
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
| 27 |
""")
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
st.set_page_config(
|
| 4 |
+
page_title="U-Net Architecture Prototype",
|
| 5 |
+
page_icon="👋",
|
| 6 |
)
|
| 7 |
|
| 8 |
+
st.title("Enhancing the Performance of SVM and CNN Models in Detection and Classification of Cervical Cells in Pap Smear Images Using U-Net Architecture for Image Segmentation")
|
| 9 |
+
st.write("A prototype for our U-Net Architecture for Image Segmentation of Cervical Cancer Cells, and SVM and CNN for Classification of Cervical Cancer Cells")
|
| 10 |
+
st.write("Thesis Project by Group DJY of Mapua University")
|
| 11 |
+
|
| 12 |
|
| 13 |
st.header("How does this app work?")
|
| 14 |
st.write("""
|
| 15 |
+
Once you upload an image of cervical cancer cells using any of our models,
|
| 16 |
+
they analyze the cell structure and classify the type of cancer present.
|
| 17 |
+
The system will then predict the type of cancer cells based on the analysis.
|
| 18 |
""")
|
| 19 |
|
| 20 |
st.subheader("How to use this app?")
|
| 21 |
st.markdown("""
|
| 22 |
+
1. Select any one model from the sidebar
|
| 23 |
+
2. Upload the image of your cervical cancer cells & wait for a few seconds
|
| 24 |
+
3. The model will analyze and classify the type of cancer present.
|
| 25 |
+
4. The model will output the predicted the type of cancer cells based on the analysis
|
| 26 |
""")
|
| 27 |
|
| 28 |
st.sidebar.info("Please select a page above 👆")
|
| 29 |
|
| 30 |
st.sidebar.write("""
|
| 31 |
### Background
|
| 32 |
+
Cervical cancer is a significant health issue that profoundly impacts women's lives, making awareness and education crucial.
|
| 33 |
+
It is a leading cause of cancer-related morbidity and mortality among women globally.
|
| 34 |
+
Understanding the importance of regular screenings and vaccinations can empower individuals to take proactive steps in prevention.
|
| 35 |
+
Additionally, raising awareness about the signs and symptoms of cervical cancer fosters early detection, which is vital for effective treatment.
|
| 36 |
+
Through community support and education, we can work together to reduce the burden of this disease and promote healthier futures for women everywhere.
|
| 37 |
|
| 38 |
### The Problem
|
| 39 |
+
Cervical cancer poses a significant risk to women's health, emphasizing the urgent need for early detection to prevent its progression.
|
| 40 |
+
Current methods like the Pap smear test can be slow and labor-intensive, prompting researchers to develop classification models to assist medical professionals.
|
| 41 |
+
However, many of these models face challenges with image segmentation, particularly in cases of overlapping cells.
|
| 42 |
+
This prototype seeks to improve upon existing machine learning models by incorporating the U-Net architecture, designed for precise image segmentation, to enhance the identification of cancerous cells in cervical samples, ultimately facilitating faster and more accurate diagnoses.
|
| 43 |
""")
|