sree4411 commited on
Commit
1341b03
Β·
verified Β·
1 Parent(s): bd9309b

Update pages/3_Life Cycle Of ML Project.py

Browse files
pages/3_Life Cycle Of ML Project.py CHANGED
@@ -40,16 +40,17 @@ elif st.session_state.page == "data_collection":
40
  In the context of Machine Learning (ML), data plays an even more pivotal role. It serves as the input for algorithms, enabling them to learn, predict, and classify based on patterns found in the data. Without data, there is nothing for the ML model to learn from, and consequently, the model cannot make any predictions or inferences.
41
  """)
42
  st.markdown(""":blue[Types of Data]:
43
- \nData is divided into Three Types.
44
  \nStructured
45
  \nUnstructured
46
  \nSemi-Structured""")
47
 
48
  # Button for Structured Data
49
  if st.button(":blue[🌟 Structured Data]"):
 
50
  st.markdown("### Structured Data\nStructured data is highly organized and typically stored in tables like spreadsheets or databases. It is easy to search and analyze.")
51
  st.markdown("Examples: Excel files, CSV files")
52
- # Add specific content related to Structured Data (e.g., file handling, processing, etc.)
53
 
54
  # Button for Unstructured Data
55
  if st.button(":blue[🌟 Unstructured Data]"):
 
40
  In the context of Machine Learning (ML), data plays an even more pivotal role. It serves as the input for algorithms, enabling them to learn, predict, and classify based on patterns found in the data. Without data, there is nothing for the ML model to learn from, and consequently, the model cannot make any predictions or inferences.
41
  """)
42
  st.markdown(""":blue[Types of Data]:
43
+ Data is divided into Three Types.
44
  \nStructured
45
  \nUnstructured
46
  \nSemi-Structured""")
47
 
48
  # Button for Structured Data
49
  if st.button(":blue[🌟 Structured Data]"):
50
+ st.session_state.page = "Structured Data"
51
  st.markdown("### Structured Data\nStructured data is highly organized and typically stored in tables like spreadsheets or databases. It is easy to search and analyze.")
52
  st.markdown("Examples: Excel files, CSV files")
53
+
54
 
55
  # Button for Unstructured Data
56
  if st.button(":blue[🌟 Unstructured Data]"):