shwetashweta05 commited on
Commit
f3a00cd
·
verified ·
1 Parent(s): e840569

Update pages/Life Cycle Of Machine Learning.py

Browse files
pages/Life Cycle Of Machine Learning.py CHANGED
@@ -2,7 +2,19 @@ import streamlit as st
2
  import numpy as np
3
  import pandas as pd
4
 
5
- st.header(":red[**Life Cycle Oof Machine Learning Project**]")
6
  st.write(":blue[Click the button below to explore detailed steps involved in an ML project:]")
7
  if st.button("Problem Statement"):
8
- st.write("Problem Statement")
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  import numpy as np
3
  import pandas as pd
4
 
5
+ st.header(":red[**Life Cycle Of Machine Learning Project**]")
6
  st.write(":blue[Click the button below to explore detailed steps involved in an ML project:]")
7
  if st.button("Problem Statement"):
8
+ st.write("""A problem statement in machine learning defines the specific issue you want to solve using data and machine learning techniques. It should clearly explain:
9
+ - What the problem is
10
+ - Why solving it is important
11
+ - What data is available
12
+ - What the expected outcome will look like
13
+ """)
14
+ st.write("""Examples of ML Problem Statements:
15
+ **Predicting House Prices:**
16
+ - Problem: We want to predict the price of houses based on features like size, location, number of bedrooms, etc.
17
+ - Why: This helps buyers make informed decisions and real estate agents price houses correctly.
18
+ - Data: Historical data about house prices and their features.
19
+ - Expected Outcome: A model that predicts the price of a house given its features.
20
+ """)