Spaces:
Runtime error
Runtime error
Update pages/0_Problem-Statement_and_Aim.py
Browse files
pages/0_Problem-Statement_and_Aim.py
CHANGED
|
@@ -8,6 +8,15 @@ st.markdown("<h1 style='text-align:center; color:white;'>Problem Statement and A
|
|
| 8 |
# Centered header for the Streamlit app
|
| 9 |
st.markdown("<h2 style='text-align:center;'>Analyzing and classifying the consumer electronics sales.</h2>", unsafe_allow_html=True)
|
| 10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
# Problem statement section with center alignment
|
| 12 |
st.markdown("<h3>Problem Statement and Aim:</h3>", unsafe_allow_html=True)
|
| 13 |
|
|
@@ -19,7 +28,7 @@ st.markdown(
|
|
| 19 |
<p><b>Problem Statement:</b> Given a dataset of consumer electronics sales, which includes customer demographics, product details, and satisfaction metrics, can we develop a classification model that can accurately predict whether a customer intends to purchase a product or not?</p>
|
| 20 |
<p><b>Aim for this project:</b> The goal of this project is to build a robust end-to-end machine learning pipeline to classify customer purchase intent using the provided features. The steps will include data preprocessing, exploratory data analysis (EDA), feature engineering, model training, and evaluation. The final goal is to achieve the highest possible accuracy and generalization on unseen data.</p>
|
| 21 |
<p><b>Key Objectives:</b></p>
|
| 22 |
-
<ul style="list-style-position: inside;
|
| 23 |
<li>Data Preprocessing, Feature Engineering</li>
|
| 24 |
<li>Exploratory Data Analysis</li>
|
| 25 |
<li>Model Creation & Evaluation</li>
|
|
@@ -30,14 +39,7 @@ st.markdown(
|
|
| 30 |
)
|
| 31 |
|
| 32 |
# Center-aligned image
|
| 33 |
-
|
| 34 |
-
"""
|
| 35 |
-
<div style="text-align: center;">
|
| 36 |
-
<img src="https://cdn-uploads.huggingface.co/production/uploads/67441c51a784a9d15cb12871/o_hx-CUYhb2kbgFHZpd9l.jpeg" width="70%" />
|
| 37 |
-
</div>
|
| 38 |
-
""",
|
| 39 |
-
unsafe_allow_html=True
|
| 40 |
-
)
|
| 41 |
|
| 42 |
# Background image with semi-transparent overlay
|
| 43 |
background_image_url = "https://cdn-uploads.huggingface.co/production/uploads/67441c51a784a9d15cb12871/clljdAv7f_LGL8dH5vCZQ.jpeg"
|
|
|
|
| 8 |
# Centered header for the Streamlit app
|
| 9 |
st.markdown("<h2 style='text-align:center;'>Analyzing and classifying the consumer electronics sales.</h2>", unsafe_allow_html=True)
|
| 10 |
|
| 11 |
+
st.markdown(
|
| 12 |
+
"""
|
| 13 |
+
<div style="text-align: center;">
|
| 14 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/67441c51a784a9d15cb12871/o_hx-CUYhb2kbgFHZpd9l.jpeg" width="70%" />
|
| 15 |
+
</div>
|
| 16 |
+
""",
|
| 17 |
+
unsafe_allow_html=True
|
| 18 |
+
)
|
| 19 |
+
|
| 20 |
# Problem statement section with center alignment
|
| 21 |
st.markdown("<h3>Problem Statement and Aim:</h3>", unsafe_allow_html=True)
|
| 22 |
|
|
|
|
| 28 |
<p><b>Problem Statement:</b> Given a dataset of consumer electronics sales, which includes customer demographics, product details, and satisfaction metrics, can we develop a classification model that can accurately predict whether a customer intends to purchase a product or not?</p>
|
| 29 |
<p><b>Aim for this project:</b> The goal of this project is to build a robust end-to-end machine learning pipeline to classify customer purchase intent using the provided features. The steps will include data preprocessing, exploratory data analysis (EDA), feature engineering, model training, and evaluation. The final goal is to achieve the highest possible accuracy and generalization on unseen data.</p>
|
| 30 |
<p><b>Key Objectives:</b></p>
|
| 31 |
+
<ul style="list-style-position: inside;">
|
| 32 |
<li>Data Preprocessing, Feature Engineering</li>
|
| 33 |
<li>Exploratory Data Analysis</li>
|
| 34 |
<li>Model Creation & Evaluation</li>
|
|
|
|
| 39 |
)
|
| 40 |
|
| 41 |
# Center-aligned image
|
| 42 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
# Background image with semi-transparent overlay
|
| 45 |
background_image_url = "https://cdn-uploads.huggingface.co/production/uploads/67441c51a784a9d15cb12871/clljdAv7f_LGL8dH5vCZQ.jpeg"
|