Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -661,9 +661,6 @@ def affine_transformation_matrix():
|
|
| 661 |
Using homogeneous coordinates \\((x, y, 1)\\) allows us to unify translation with linear transformations in a single matrix operation. This simplifies the combination and chaining of multiple transformations.
|
| 662 |
""")
|
| 663 |
|
| 664 |
-
# Navigation Button
|
| 665 |
-
if st.button("Back to Data Collection"):
|
| 666 |
-
st.session_state.page = "data_collection"
|
| 667 |
|
| 668 |
|
| 669 |
|
|
@@ -671,12 +668,13 @@ def affine_transformation_matrix():
|
|
| 671 |
st.session_state.page = "data_collection"
|
| 672 |
|
| 673 |
# ----------------- Semi-Structured Data Page -----------------
|
| 674 |
-
elif st.session_state.page == "semi_structured_data":
|
| 675 |
st.title(":blue[Semi-Structured Data]")
|
| 676 |
st.markdown("""
|
| 677 |
Semi-structured data does not have a rigid structure but contains tags and markers to separate different data elements, like XML or JSON.
|
| 678 |
""")
|
| 679 |
|
|
|
|
| 680 |
if st.button(":blue[XML Data]"):
|
| 681 |
st.session_state.page = "xml"
|
| 682 |
|
|
|
|
| 661 |
Using homogeneous coordinates \\((x, y, 1)\\) allows us to unify translation with linear transformations in a single matrix operation. This simplifies the combination and chaining of multiple transformations.
|
| 662 |
""")
|
| 663 |
|
|
|
|
|
|
|
|
|
|
| 664 |
|
| 665 |
|
| 666 |
|
|
|
|
| 668 |
st.session_state.page = "data_collection"
|
| 669 |
|
| 670 |
# ----------------- Semi-Structured Data Page -----------------
|
| 671 |
+
elif st.session_state.page == "semi_structured_data":
|
| 672 |
st.title(":blue[Semi-Structured Data]")
|
| 673 |
st.markdown("""
|
| 674 |
Semi-structured data does not have a rigid structure but contains tags and markers to separate different data elements, like XML or JSON.
|
| 675 |
""")
|
| 676 |
|
| 677 |
+
|
| 678 |
if st.button(":blue[XML Data]"):
|
| 679 |
st.session_state.page = "xml"
|
| 680 |
|