Harika22 commited on
Commit
5cb05e2
·
verified ·
1 Parent(s): 4826f98

Update pages/7_Unstructured_data.py

Browse files
Files changed (1) hide show
  1. pages/7_Unstructured_data.py +12 -0
pages/7_Unstructured_data.py CHANGED
@@ -399,6 +399,18 @@ if file_type == "IMAGE":
399
 
400
  elif data_type1 == "Image Augumentation":
401
  st.header('**Image Augumentation**')
 
 
 
 
 
 
 
 
 
 
 
 
402
 
403
 
404
 
 
399
 
400
  elif data_type1 == "Image Augumentation":
401
  st.header('**Image Augumentation**')
402
+ st.markdown('''
403
+ - Image Augumentation is a technique of creating new data **(augumented image)** from your existing data
404
+ - It is used to tranform imbalanced data to balanced data
405
+ - When we're using image augumentation imbalanced data is converted into balanced data and lots of new information is added
406
+ - **Image Augumentation is on original image when tranformations are applied it changes to transformd image**
407
+ - Here transformations are of 2 types:
408
+ <ul class="icon-bullet">
409
+ <li>Affine Transformations</li>
410
+ <li>Non-affine Transformations </li>
411
+ </ul>
412
+ ''', unsafe_allow_html=True)
413
+
414
 
415
 
416