Harika22 commited on
Commit
f694a2c
·
verified ·
1 Parent(s): 40cc5af

Update pages/7_Unstructured_data.py

Browse files
Files changed (1) hide show
  1. pages/7_Unstructured_data.py +4 -8
pages/7_Unstructured_data.py CHANGED
@@ -106,18 +106,14 @@ if file_type == "IMAGE":
106
  - 2D grid like structure which is divided by horizontal and vertical lines
107
  - Every grid is pixel
108
  - Every pixel is a feature and the information can be shapes, patterns, color
109
- - Height * weight = pixels
110
  ''')
111
  st.markdown('''
112
  - As no.of rows , columns or height and width increases --> pixel increases
113
  - As pixel increases there is more information --> gives higher clarity
114
  - As resolution increases --> clarity of pixels increases
 
 
115
  ''')
116
- st.markdown('''
117
- <ul class="icon-bullet">
118
- <li>Every single image is considered as a data point and each grid or pixel is a feature</li>
119
- <li>Tabular structure and grid like structure has similar structure but different in interpretation</li>
120
- </ul>
121
- ''', unsafe_allow_html=True)
122
-
123
 
 
106
  - 2D grid like structure which is divided by horizontal and vertical lines
107
  - Every grid is pixel
108
  - Every pixel is a feature and the information can be shapes, patterns, color
109
+ - Height * width = pixels
110
  ''')
111
  st.markdown('''
112
  - As no.of rows , columns or height and width increases --> pixel increases
113
  - As pixel increases there is more information --> gives higher clarity
114
  - As resolution increases --> clarity of pixels increases
115
+ - Every single image is considered as a data point and each grid or pixel is a feature
116
+ - Tabular structure and grid like structure has similar structure but different in interpretation
117
  ''')
118
+
 
 
 
 
 
 
119